Review implementation against plan
reviewcommandsetup L1★2
okamyuji/devpulse ↗What it does
Review current implementation against documented plan
Best for
Verifying that coded changes match the documented implementation plan before committing
Inputs
- · docs/implementation-plan.md with completed tasks
- · Current codebase in src/
Outputs
- · Test results (cargo test output)
- · Linting results (cargo clippy warnings)
- · Formatting check results (cargo fmt)
- · Task completion summary (done vs pending)
Requires
- · Bash (cargo test, cargo clippy, cargo fmt, cargo build)
Preconditions
- · docs/implementation-plan.md file exists
- · Rust project with Cargo.toml
- · cargo installed and in PATH
Failure modes
- · Implementation plan not found
- · cargo not available
- · Tests or clippy checks fail with errors
Trust signals
- · Runs full test suite (not just linting)
- · Enforces clippy warnings (high bar for code quality)
- · Compares plan tasks against actual src/ code
- · Reports deviations from plan explicitly