testinglisted
Install: claude install-skill Smart-AI-Memory/attune-ai
# testing
Test runner, generation, and coverage analysis.
**Default mode:** Module-level testing for daily development.
Full suite reserved for release verification and deep audits.
## Routes
| Subcommand | Action |
| ---------- | ------ |
| `run` | Run tests (changed modules by default) |
| `quick` | Run tests for recently changed files |
| `coverage` | Coverage analysis (module or full) |
| `gen` | Generate tests |
| `generate` | Generate tests |
| `audit` | Deep coverage audit (TestAuditWorkflow) |
| `benchmark` | Run benchmarks |
| `generate --batch` | Batch test generation |
## Usage
```bash
/testing # Ask what to do
/testing run # Run tests for changed modules
/testing run --all # Run full test suite
/testing quick # Run tests for changed files
/testing coverage # Module-level coverage
/testing coverage --full # Full codebase coverage
/testing audit # Deep coverage audit workflow
/testing gen # Generate tests
```
## Fast-Path Detection
When explicit args satisfy scoping, skip questions:
- `/testing run --all` → full suite immediately
- `/testing gen src/auth` → generate for that module
- `/testing coverage --full` → full codebase coverage
- `/testing run` → ask which tests
- `/testing` → ask what to do
**Rule:** If input contains BOTH an action AND a
target (or `--all`/`--full` flag), proceed to
execution. If either is missing, use
`AskUserQuestion`.
## Behavior
### run
Default behavior: dete