← ClaudeAtlas

devlisted

Developer tools (commits, reviews, refactoring)
Smart-AI-Memory/attune-ai · ★ 10 · AI & Automation · score 71
Install: claude install-skill Smart-AI-Memory/attune-ai
# dev Developer tools for daily coding workflows. ## Routes | Subcommand | Action | | ---------- | ------ | | `review` | Code review workflow | | `debug` | Debugging session | | `refactor` | Refactoring session | | `commit` | Stage and commit changes | | `pr` | Create a pull request | | `quality` | Code quality check | | `perf-audit` | Performance audit | ## Usage ```bash /dev # Ask what to do /dev review # Code review /dev commit # Stage and commit /dev debug # Debug session /dev refactor # Refactoring /dev pr # Create PR ``` ## Fast-Path Detection When explicit args satisfy scoping, skip questions: - `/dev commit --auto` → stage all + commit - `/dev review ./src/auth` → review that path - `/dev commit` → ask what to stage - `/dev` → ask what to do **Rule:** If input contains BOTH an action AND a target (or `--auto` flag), proceed to execution. If either is missing, use `AskUserQuestion`. ## Behavior ### Plan Detection (all routes) Before starting scoping questions for any route, check for saved plans from `/plan`: 1. Use `Glob` to check `.claude/plans/{route}-*.md` for the current route (e.g., `refactor-*.md` for `/dev refactor`) 2. If matching plans exist, use `Read` to check their **Status** field (skip `completed` plans) 3. If no pending plans match, proceed normally with the scoping flow below 4. If multiple pending plans match, show a list and let the user choo