dev
Developer tools (commits, reviews, refactoring)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Developer tools (commits, reviews, refactoring)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Outcome-first fix with a guided intake form — pick scope and probes from derived candidates, preview the contract, run with a verified receipt. Triggers on: attune fix, scoped fix, fix with receipt, outcome fix, fix intake.
Outcome-first fix with a guided intake form — pick scope and probes from derived candidates, preview the contract, run with a verified receipt. Triggers on: attune fix, scoped fix, fix with receipt, outcome fix, fix intake.
Spec-driven development — brainstorm, plan, review, and execute with quality gates. Triggers on: spec, brainstorm and build, plan and execute, idea to code, build from scratch.
Spec-driven development — brainstorm, plan, review, and execute with quality gates. Triggers on: spec, brainstorm and build, plan and execute, idea to code, build from scratch.
Developer workflow hub — routes to the right skill based on what you need. Triggers on: attune, what can attune do, what can you do, capabilities, where do I start, get started.
Outcome-first fix with a guided intake form — pick scope and probes from derived candidates, preview the contract, run with a verified receipt. Triggers on: attune fix, scoped fix, fix with receipt, outcome fix, fix intake.
| name | dev |
| description | Developer tools (commits, reviews, refactoring) |
Developer tools for daily coding workflows.
| 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 |
/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
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 doRule: If input contains BOTH an action AND a
target (or --auto flag), proceed to execution.
If either is missing, use AskUserQuestion.
Before starting scoping questions for any route,
check for saved plans from /plan:
Glob to check .claude/plans/{route}-*.md
for the current route (e.g., refactor-*.md
for /dev refactor)Read to check
their Status field (skip completed plans)AskUserQuestion with these options:in-progress. Use
the plan's Scope and Approach sections
to drive execution. Do NOT re-ask scoping
questions.AskUserQuestion scoping flow below.Example prompt:
question: "I found a saved plan:
{plan-title} ({date}). Pick up where you
left off?"
header: "Plan"
options:
- label: "Yes, use this plan"
description: "Skip scoping — execute based
on the saved plan"
- label: "No, start fresh"
description: "Ignore the plan and scope
from scratch"
Use AskUserQuestion to scope:
Then run:
uv run attune workflow run code-review --path <target>
Use AskUserQuestion to understand:
Then investigate using Read, Grep, and Bash tools.
Use AskUserQuestion to scope:
Then use EnterPlanMode to plan the refactoring.
Use AskUserQuestion to confirm:
Then use git to stage and commit with a conventional commit message.
Use AskUserQuestion to confirm:
Then use gh pr create to create the PR.
Use AskUserQuestion to scope:
Then run:
uv run attune workflow run perf-audit --path <target>
Use AskUserQuestion to scope:
Then run:
uv run attune workflow run bug-predict --path <target>