Six developer workflow commands for Claude Code: code review, security audit, test generation, test fixing, bug prediction, and documentation generation. No dependencies required.
Step 1: Add the marketplace:
claude plugin marketplace add Smart-AI-Memory/attune-liteStep 2: Install the plugin:
claude plugin install attune-liteVerify it loaded:
/plugins| Command | What it does |
|---|---|
/code-review <path> |
Multi-pass code review (security, quality, performance, architecture) |
/security-audit <path> |
OWASP-aligned vulnerability scan with remediation plan |
/smart-test <path> |
Find test gaps and generate tests for uncovered code |
/fix-test --lf |
Auto-diagnose and fix failing tests with retry loop (up to 3 attempts) |
/bug-predict <path> |
Predict likely bug locations from patterns and complexity |
/doc-gen <path> |
Generate documentation from source code |
All commands default to the current working directory if no path is provided.
Each command triggers a structured, multi-pass analysis skill.
For example, /code-review runs four passes (security,
quality, performance, architecture) and synthesizes findings
into a single report with scores, file references, and
prioritized fixes.
Skills are prompt-based -- they guide Claude through a systematic analysis process. No external tools, APIs, or package installations are needed.
/code-review src/
Produces a report like:
## Summary
Score: 82/100 | Files reviewed: 24 | Issues: 11
## Security
| Severity | File | Line | Issue | Fix |
|----------|------------|------|--------------------|---------------|
| HIGH | auth.py | 45 | Missing input validation | Add schema check |
| MEDIUM | config.py | 12 | Hardcoded secret | Use env var |
## Top Priorities
1. Add input validation to auth.py:45
2. Move secrets to environment variables
3. Add error handling to db.py:88
- Before opening a PR -- run
/code-reviewto catch issues early - During security reviews -- run
/security-auditfor a structured vulnerability assessment - When adding features -- run
/smart-testto generate tests for new code - When tests fail -- run
/fix-test --lfto auto-diagnose and fix failures instead of manually reading each traceback - Before releases -- run
/bug-predictto find high-risk areas - When onboarding -- run
/doc-gento generate documentation for unfamiliar code
Command not recognized: Make sure the plugin is installed.
Run /plugins to verify attune-lite appears in the list.
Review seems incomplete: For large codebases, specify a
narrower path (e.g., /code-review src/auth/ instead of
/code-review .).
Attune Lite surfaces the best workflow patterns from attune-ai as native Claude Code skills. For the full framework with 15 workflows, CLI integration, and multi-agent orchestration:
pip install 'attune-ai[developer]'Apache-2.0