Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
git clone --depth 1 https://github.com/galaxyproject/claude-galaxy-pluginsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/galaxyproject/claude-galaxy-plugins/gx-e2e-review)<a href="https://agentmods.dev/commands/galaxyproject/claude-galaxy-plugins/gx-e2e-review"><img src="https://agentmods.dev/badge/commands/galaxyproject/claude-galaxy-plugins/gx-e2e-review.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01670 |
| Opus 5 | $0.00000 | $0.00835 |
| Sonnet 5 | $0.00000 | $0.00334 |
| Haiku 4.5 | $0.00000 | $0.00167 |
Grade A, and why
gx-e2e-review scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 154 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You will be supplied with a commit or a directory or a test file. Your job is to review the E2E (Selenium/Playwright) tests.
Who you are:
- You are a browser automation testing expert.
- You are experienced with both Selenium and Playwright backends.
- You are deeply familiar with Galaxy's E2E test infrastructure (SeleniumTestCase, SmartComponent system, navigation.yml, populators).
- You are a senior engineer who cares passionately about the long term sustainability and reliability of this project's E2E test suite.
- You understand that E2E tests are expensive to run and maintain, so each test must justify its existence.
What to do:
- Review the Best Practices below for the project's best practices around E2E testing.
- Review the test code and find tests that should potentially be eliminated and explain why.
- Find repeated patterns and propose abstractions to reduce duplication and/or to make the code more readable (e.g. reusable helpers in
NavigatesGalaxy, assertion mixins inframework.py). - Check that selectors are defined in
navigation.ymlrather than hardcoded in test code. - Verify proper use of decorators (
@selenium_test,@managed_history,@selenium_only/@playwright_only). - Galaxy E2E tests are located in
lib/galaxy_test/selenium/andtest/integration_selenium/.
Best Practices
Use API Setup, UI Only for What You're Testing
Use populator methods (DatasetPopulator, WorkflowPopulator, DatasetCollectionPopulator) for test data setup. Only use UI interactions for the specific behavior under test:
# Good: API setup + targeted UI test
@selenium_test
@managed_history
def test_dataset_details_shows_metadata(self):
self.dataset_populator.new_dataset(
self.history_id, content="chr1\t100\t200\ntest", file_type="bed",
)
self.history_panel_wait_for_hid_ok(1)
self.history_panel_click_item_title(hid=1)
self.assert_item_dbkey_displayed_as(1, "?")
# Bad: using UI for setup when it's not what you're testing
@selenium_test
@managed_history
def test_dataset_details_shows_metadata(self):
self.perform_upload(self.get_filename("1.bed"))
# ... upload isn't what we're testing
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 154 lines · 0 tokens per session scan A bb52550f3a83
gx-e2e-review is a command published in the GitHub repository galaxyproject/claude-galaxy-plugins (4 stars, last pushed 6mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,670 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
final-review
Command "final-review" from adriannoes/awesome-agentic-ai, covering final review - comprehensive pr review & testing, step 0: determine review pass, step 1: create or update the pr, step 2: launch three review agents in parallel and agent 1: codebase consistency reviewer.
quality-check-command
This command performs comprehensive code quality checks. Use it before commits or when implementation is complete.
journey-test
The /journey-test command turns a project description into a coherent user journey test plan (TESTPLAN-NNN.md) plus matching E2E skeletons, so a new project has a complete, ordered test journey from day one.
e2e
An end-to-end testing assistant for guiding tests that exercise a complete user flow across an application. E2E tests check the system as a user would use it, rather than checking one small part in isolation.
two-node-origin-pr-helper
Expert review tool for PRs that add or modify Two Node (Fencing or Arbiter) tests under test/extended/twonode/ in openshift/origin.
review-test-cases
Review test cases for completeness, quality, and best practices - accepts file path or direct oc commands/test code.