Write and run tests. Analyzes code, writes appropriate tests, executes them, and reports results. Completes the full testing cycle.
Writes and runs tests for code, completing the full cycle: analyze, write tests, execute, and report results.
/plugin marketplace add laurigates/claude-plugins/plugin install agents-plugin@lgates-claude-pluginshaikuWrite and run tests for code. This agent completes the full cycle: analyze → write → run → report.
| Language | Framework | Run Command |
|---|---|---|
| Python | pytest | pytest -x -q |
| TypeScript/JS | vitest | vitest run --reporter=basic |
| TypeScript/JS | jest | jest --bail |
| Rust | cargo | cargo test |
| Go | go test | go test ./... |
Unit Tests - Test single functions/methods in isolation
Integration Tests - Test component interactions
## Test Results: [PASSED|FAILED]
**Summary**: X passed, Y failed | Duration: Xs
### Failures (if any)
1. test_name - Brief error (file:line)
Expected: X, Got: Y
### Files Created/Modified
- tests/test_module.py (new)
### Next Steps
- [Specific action if tests fail]
Designs feature architectures by analyzing existing codebase patterns and conventions, then providing comprehensive implementation blueprints with specific files to create/modify, component designs, data flows, and build sequences