Loading...
Loading...
Use this skill when orchestrating multiple review types. Use when general review needed without knowing which specific skill applies, full multi-domain review desired, integrated reporting needed. Do not use when specific review type known - use bug-review, test-review, etc. DO NOT use when: architecture-only focus - use architecture-review.
npx skill4agent add athola/claude-night-market unified-review# Auto-detect and run appropriate reviews
/full-review
# Focus on specific areas
/full-review api # API surface review
/full-review architecture # Architecture review
/full-review bugs # Bug hunting
/full-review tests # Test suite review
/full-review all # Run all applicable skillspytest -v| Codebase Pattern | Review Skills | Triggers |
|---|---|---|
Rust files ( | rust-review, bug-review, api-review | Rust project detected |
API changes ( | api-review, architecture-review | Public API surfaces |
Test files ( | test-review, bug-review | Test infrastructure |
| Makefile/build system | makefile-review, architecture-review | Build complexity |
| Mathematical algorithms | math-review, bug-review | Numerical computation |
| Architecture docs/ADRs | architecture-review, api-review | System design |
| General code quality | bug-review, test-review | Default review |
# Detection logic
if has_rust_files():
schedule_skill("rust-review")
if has_api_changes():
schedule_skill("api-review")
if has_test_files():
schedule_skill("test-review")
if has_makefiles():
schedule_skill("makefile-review")
if has_math_code():
schedule_skill("math-review")
if has_architecture_changes():
schedule_skill("architecture-review")
# Default
schedule_skill("bug-review")pytest -v/full-review api/full-review architecture/full-review bugs/full-review tests/full-review allpensive:sharedmodules/imbue:evidence-loggingimbue:diff-analysis/modules/risk-assessment-framework/full-review rust/full-reviewTodoWrite