From claude-dev-team
Verify a finished feature works end-to-end before declaring done. Use after implementation and unit tests pass, when you need a pass/fail verdict on whether the feature actually works from a user's or caller's perspective — not just that tests are green. Works across browser apps, CLI tools, HTTP APIs, and agent/skill bundles at stage-appropriate depth (prototype / MVP / beta / GA). Produces a verdict with evidence (screenshots, transcripts, request logs). Do not use for writing tests (use test-driven-development), code review (use code-review-and-quality), or security audits (use security-and-hardening).
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-dev-team:acceptance-explorationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run the finished feature end-to-end and return a stage-appropriate pass/fail verdict with evidence. Tests verify code; acceptance exploration verifies the *feature*.
Run the finished feature end-to-end and return a stage-appropriate pass/fail verdict with evidence. Tests verify code; acceptance exploration verifies the feature.
Invoked primarily by the negev agent (~/.claude/agents/acceptance-explorer.md). Follow directly when no persona is needed.
Every exploration needs both:
prototype / MVP / beta / GAbrowser / cli / http-api / agent-skill / otherStop and ask if either is missing. Stage is semantic (what to check). Surface is mechanical (how to check).
Also confirm: the spec (what the feature should do) and launch instructions (how to start it).
Deeper stages include everything from lighter stages. Checklists are semantic — apply them across all surfaces.
All prototype checks, plus:
All MVP checks, plus:
All beta checks, plus:
Pick the matching reference file and load only that one:
references/surface-browser.mdreferences/surface-cli.mdreferences/surface-http-api.mdreferences/surface-agent-skill.mdEach reference covers: probing tool, how to drive the surface, evidence to capture, and surface-specific hardening items per stage.
If a feature spans multiple surfaces (e.g., CLI + API), run acceptance against each separately and consolidate in the verdict.
./acceptance-evidence/<YYYY-MM-DD-HHMM>/<flow-name>/ if running in a project directory.## Acceptance Report — <feature>, stage: <stage>, surface: <surface>
**Verdict:** PASS | FAIL | PARTIAL
**Overview:** <1-2 sentences>
### Flows verified
- [PASS] <flow name> — <what was verified>
- [FAIL] <flow name> — <what broke + evidence path + reproduction steps>
- [BLOCKED] <flow name> — <what prevented verification>
### Evidence
- <surface-appropriate paths>
### Observations beyond scope
- <things noticed but outside the stage checklist — optional>
### Blockers
- <what prevented full coverage, and what's needed to unblock — include only if PARTIAL>
npx claudepluginhub jasonjgarcia24/claude-dev-team --plugin claude-dev-teamGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.