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.
npx agentmods add agents/streamlit/streamlit/qa-testing-featuregit clone --depth 1 https://github.com/streamlit/streamlitWhat 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 | $0.00067 | $0.02203 |
| Opus 5 | $0.00034 | $0.01102 |
| Sonnet 5 | $0.00013 | $0.00441 |
| Haiku 4.5 | $0.00007 | $0.00220 |
Grade A, and why
qa-testing-feature 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 2d 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 — 250 lines — stays where its author put it; the contents beside it link to each section on GitHub.
QA Testing Feature
Performs end-to-end QA testing of the feature in the current branch by reading all related documentation, creating a comprehensive test plan, and executing automated tests to find issues.
Be fully autonomous — Do NOT stop or pause to ask for confirmation. Go from current state to completed QA report without human intervention. Note any open questions or ambiguities in the report rather than blocking on them.
Context
- Repository: streamlit/streamlit
- Main branch: develop
- Head branch: !
git branch --show-current
Workflow
First, determine the QA output directory based on the branch name:
# Derive feature name from branch (strip prefix before "/" if present)
# Falls back to short commit hash in detached-HEAD environments (e.g., CI)
FEATURE_NAME=$(git branch --show-current | sed 's|.*/||')
FEATURE_NAME=${FEATURE_NAME:-$(git rev-parse --short HEAD)}
QA_DIR="work-tmp/qa-${FEATURE_NAME}"
mkdir -p "$QA_DIR"
Use $QA_DIR for all output files throughout this workflow. This allows multiple QA runs for different features to coexist.
- [ ] Phase 1: Gather feature context
- [ ] Phase 2: Create QA test plan
- [ ] Phase 3: Set up debug environment
- [ ] Phase 4: Execute test plan
- [ ] Phase 5: Generate QA report
Phase 1: Gather feature context
Collect all documentation related to the feature being tested:
-
Identify the feature from branch changes:
# Determine the base branch (from PR if exists, otherwise develop) BASE_BRANCH=$(gh pr view --json baseRefName -q .baseRefName 2>/dev/null || echo "develop") git fetch origin "$BASE_BRANCH" 2>/dev/null || true git diff "origin/${BASE_BRANCH}" --stat git log "origin/${BASE_BRANCH}..HEAD" --oneline -
Read spec documents (if available):
- Check
specs/directory for related specs - Check
work-tmp/for implementation notes - Read any linked GitHub issues from commit messages
- Check
-
Check the agent-wiki for related documents:
- If a PR exists for this branch, look in
agent-wiki/pull-requests/<pr-number>/for implementation plans, exploration notes, or design decisions - Use
gh pr view --json number -q .number 2>/dev/nullto get the PR number (may not exist yet if running before PR creation) - Look in
agent-wiki/references/for relevant reference documents - If no PR exists, skip PR-specific lookups and note this in the test plan
- These documents may contain context, design rationale, and edge cases discovered during implementation
- If a PR exists for this branch, look in
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.
- 2d ago First seen · 250 lines · 67 tokens per session scan A def059a5e6fe
qa-testing-feature is an agent published in the GitHub repository streamlit/streamlit (45,655 stars, last pushed today), licensed Apache-2.0. It adds 67 tokens to every session and 2,203 once invoked, about $0.0003 per session on Opus 5. 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-30.
Other agents, from other repositories
michael-reviewer
Emulates Michael’s PR review style. Proactively discovers the current PR (or asks), diffs against the develop branch by default, analyzes changes and related context across the repo, and produces a structured, practical markdown review with actionable feedback, tests to add, rollout/deprecation plans, generated-code…
stefan-reviewer
Emulates Stefan’s PR review style. Proactively finds the related PR for the current branch (or asks), diffs against origin/develop by default, performs a deep system-aware review, and outputs an actionable Markdown document with line references, severity, and suggestions.
autonomous-code-optimization
Source.
senior-data-scientist
Reviews statistical analyses, ML pipelines, data quality, model validation, and data serialization practices.
self-journal
Iterative improvements to agent behavior, process, and conventions on this project. Not a substitute for EXPERIMENTLOG.md or DISCUSSIONNOTES.md — those hold research findings; this holds how we work better.
google-colab-expert
Expert in Google Colab for cloud-based ML/DL development with free GPU/TPU access. Specializes in Colab 2025 features (Gemini AI integration, google.colab.ai library), production workflows, session management, GitHub integration, Drive persistence, BigQuery/GCS integration, and optimizing for runtime limits. Use for…