From agent-skills
Runs a TDD workflow: write failing tests, implement code, and verify. For bug fixes, uses the Prove-It pattern to reproduce, fix, and confirm.
How this command is triggered — by the user, by Claude, or both
Slash command
/agent-skills:testcommands/The summary Claude sees in its command listing — used to decide when to auto-load this command
Invoke the agent-skills:test-driven-development skill. For new features: 1. Write tests that describe the expected behavior (they should FAIL) 2. Implement the code to make them pass 3. Refactor while keeping tests green For bug fixes (Prove-It pattern): 1. Write a test that reproduces the bug (must FAIL) 2. Confirm the test fails 3. Implement the fix 4. Confirm the test passes 5. Run the full test suite for regressions For browser-related issues, also invoke agent-skills:browser-testing-with-devtools to verify with Chrome DevTools MCP.
Invoke the agent-skills:test-driven-development skill.
For new features:
For bug fixes (Prove-It pattern):
For browser-related issues, also invoke agent-skills:browser-testing-with-devtools to verify with Chrome DevTools MCP.
npx claudepluginhub az9713/addyosmani-agent-skills/testRuns a TDD workflow: write failing tests, implement code, and verify. For bug fixes, uses the Prove-It pattern to reproduce, fix, and confirm.
/TDD-debugDebugs specified bug using TDD: creates failing test reproducing issue via multi-agent proposals, implements with user approval, fixes collaboratively, verifies test passes.
/fec-tddGuides Claude through a front-end TDD cycle: write failing test, implement minimal code, then refactor. Supports component/hook testing and E2E testing via subcommands.
/tdd-cycleOrchestrates a strict red-green-refactor TDD workflow with phases for test specification, implementation, and refactoring. Supports --incremental, --suite, and --coverage flags.
/testRuns pytest tests for CLI harness on local path or GitHub repo, verifies CLI resolution, and updates TEST.md with results if all pass.