agent-browser
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking…
Use when the user wants to know if something works — the answer requires running code, not analyzing it. Output is a verdict backed by evidence: passed, failed, or broken. Primary triggers: 'run the tests', 'does X still work after my change?', 'did the merge break anything?',
$ npx -y skills add avibebuilder/claude-prime --skill test --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/testContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when the user wants to know if something works — the answer requires running code, not analyzing it. Output is a verdict backed by evidence: passed, failed, or broken. Primary triggers: 'run the tests', 'does X still work after my change?', 'did the merge break anything?',
name: test description: "Use when the user wants to know if something works — the answer requires running code, not analyzing it. Output is a verdict backed by evidence: passed, failed, or broken. Primary triggers: 'run the tests', 'does X still work after my change?', 'did the merge break anything?', 'verify the fix worked', 'check if the endpoint returns X', 'confirm nothing regressed', 'run tests/unit/test_foo.py', 'let me know the results', 'make sure my changes didn't break anything'. Hard stops — do NOT use for: reviewing test code for quality/coverage gaps, debugging why test infrastructure/databases/seed scripts are misbehaving, writing or fixing tests, diagnosing root causes of unexpected behavior. The deciding question: is the user asking for the result of executing something, or asking for help understanding/analyzing/improving something? If it's the latter, use diagnose or review-code instead." argument-hint: what-to-test-and-outcome
| Situation | Steps | | --- | --- | | `run tests` or a specific test path | 3 → 5 → 6 | | The verification claim is already clear from the request or recent context | 4 → 5 → 6 | | Behavioral claim but no tests exist | 1 → 4 manual path → 5 → 6 | | Vague claim or broad change | Full flow |
Skip steps whose answers are already known from the conversation.
Figure out what must be true before running anything.
Possible sources:
Good claim: `expired tokens return 401`. Bad claim: `the app works`.
If the claim is mushy, sharpen it before you touch the tools. Weak claims create noisy verification.
Skip if the claim is already scoped.
Use the change set to identify:
For shared code, config, auth, schema, or similar cross-cutting changes, read `references/regression-strategy.md` before deciding how wide to test.
Check in this order: 1. `CLAUDE.md` 2. `package.json`, `Makefile`, `justfile`, `Taskfile` 3. CI config 4. test framework config 5. existing test layout
Prefer project-defined commands over raw framework commands.
Match the claim to the execution lane.
| Claim type | Lane | | --- | --- | | logic, transforms, business rules | direct tests | | API behavior or contracts | backend verification | | UI behavior or rendering | frontend verification | | visual UI criteria | frontend visual verification | | DB persistence | backend verification | | CLI behavior | direct command verification | | type or schema correctness | direct static verification | | compile/build correctness | direct static/build verification |
Once you've picked a lane, read the relevant reference before executing. Let the reference own the execution details.
The right method is the one that can disprove the claim fastest without pretending to offer more confidence than it really does.
If no relevant tests exist, use a manual path instead of calling the result inconclusive. Follow the selected lane's reference rather than rebuilding the checklist inline.
For command-line claims, run the command and inspect output directly.
Keep these guardrails in mind:
Only use **INCONCLUSIVE** when neither an automated path nor a manual path is feasible.
Before running verification, confirm required infra is already available. If a server, DB, queue worker, mock service, or migration is needed and not running, stop and tell the user the exact command to start it. Do **not** start it yourself.
When you run verification, capture evidence:
Start with the most direct proof. Expand into broader regression only when the blast radius justifies it.
Use this structure:
## Verification Report
**Claim**: {what was tested}
**Verdict**: CONFIRMED | REFUTED | PARTIAL | INCONCLUSIVE
### Evidence
- {command}: exit {code} — proves or refutes {deliverable}
### Failures
- {test or command}: {error snippet} — {what it means}
### Gaps
- {deliverable or regression area still unverified}
### Suite Stats
Total: X | Passed: X | Failed: X | Skipped: X | Duration: Xs
Coverage: Lines X% | Branches X% (if available)Use these verdicts consistently:
Prove the original failure no longer reproduces and check one regression ring around the changed area.
Prove the stated acceptance criteria and include type-check evidence when that meaningfully covers changed contracts.
Take the claim from the argument or, if needed, infer it from recent changes.
Open source Claude Code toolkit for developers who want repeatable AI coding workflows instead of prompt chaos.
Repo: avibebuilder/claude-prime
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking…
Answer questions about code, architecture, and technical decisions — no implementation. Trigger on questions asking 'why', 'what does this do', 'what is the…
Implement, build, create, or add any feature, endpoint, page, component, or functionality. Use this skill whenever the user asks you to write new code or make…
Use when the user wants to save knowledge as a file so others don't have to rediscover it — \"turn this into a doc\", \"write this up\", \"document how X…
Investigate unexpected behavior and mysterious bugs. Use when the cause of a problem is unknown and the user needs to understand WHY something is happening —…
Brainstorms and debates approaches, then drives toward an actionable decision. Use whenever someone needs a thinking partner for a decision they're facing:…