一键导入
deep-quick
Fast mode for small tasks (<30 lines, single file). Use when user asks for 'quick fix', 'fast fix', 'simple change'. Skips planning, 3-iteration limit.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Fast mode for small tasks (<30 lines, single file). Use when user asks for 'quick fix', 'fast fix', 'simple change'. Skips planning, 3-iteration limit.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | deep-quick |
| description | Fast mode for small tasks (<30 lines, single file). Use when user asks for 'quick fix', 'fast fix', 'simple change'. Skips planning, 3-iteration limit. |
| version | 11.0.0 |
| argument-hint | ["quick fix description"] |
| allowed-tools | Read, Write, Edit, Bash, Grep, Glob |
Skip planning ceremony for quick tasks. Straight to BUILD with 3-iteration limit.
| Use Quick Mode | Use Full /deep |
|---|---|
| Single file fix | Multi-file feature |
| Obvious bug | Architectural decisions |
| <30 lines change | >50 lines |
| "Fix typo in X" | "Implement feature Y" |
TRIAGE (auto) -> BUILD -> VERIFY -> COMMIT
No PLAN phase. No exploration. Just execute.
Create .deep-{session8}/ with minimal state:
{
"mode": "quick",
"active": true,
"sessionId": "{session8}",
"iteration": 0,
"maxIterations": 3,
"startedAt": "2025-01-22T10:00:00Z",
"task": "Brief task description"
}
Write task to .deep-{session8}/task.md.
No plan.md needed for quick mode.
Execute the task directly:
git add -A
git commit -m "$(cat <<'EOF'
[quick] <description>
Co-Authored-By: Claude <noreply@anthropic.com>
EOF
)"
If validation fails:
Run quick verification:
# If tests exist
npm test --passWithNoTests 2>/dev/null || true
# Type check if TS project
npm run typecheck 2>/dev/null || tsc --noEmit 2>/dev/null || true
# Lint
npm run lint 2>/dev/null || true
For quick mode: Warnings are acceptable. Only block on errors.
Only invoke if:
Otherwise skip for speed.
If needed, use Task tool:
subagent_type: "general-purpose"
description: "Quick: simplify"
prompt: "Review the last commit. Remove unnecessary complexity. Keep changes minimal."
Update state:
{
"mode": "quick",
"active": false,
"complete": true,
"iteration": 1,
"result": "success"
}
Output: <promise>QUICK_COMPLETE</promise>
| Iteration | Action |
|---|---|
| 1 | Execute task |
| 2 | Fix validation errors |
| 3 | Final attempt or escalate |
Hard limit: 3 iterations. If not complete, ask user for guidance.
.deep-{session8}/state.json with "mode": "quick"
The stop hook recognizes quick mode and:
<promise>QUICK_COMPLETE</promise>User: /deep quick fix typo in README.md
1. Read README.md
2. Find and fix typo
3. Commit: [quick] fix typo in README
4. <promise>QUICK_COMPLETE</promise>
User: /deep quick export Button from components/index.ts
1. Read components/index.ts
2. Add: export { Button } from './Button'
3. Validate: tsc --noEmit
4. Commit: [quick] export Button from index
5. <promise>QUICK_COMPLETE</promise>
User: /deep quick null check in validateUser
1. Find validateUser function (Grep)
2. Read file
3. Add null check
4. Run tests
5. Commit: [quick] add null check to validateUser
6. <promise>QUICK_COMPLETE</promise>
| Error | Action |
|---|---|
| Can't find file | Ask user for path |
| Validation fails (iter 1-2) | Fix and retry |
| Validation fails (iter 3) | Escalate to user |
| Task too complex | Suggest /deep instead |
Complexity detection triggers:
On complexity trigger:
This task seems complex. Want me to use full /deep mode instead?
.deep-{session8}/state.json with mode: "quick")<promise>QUICK_COMPLETE</promise>Check deep loop progress and session state. Use when user asks 'what status', 'where are we', 'deep status'. Shows phase, tasks, and iteration count.
Cancel active deep loop session. Use when user asks to 'stop deep', 'cancel deep', 'abort loop'. Cleans up state files.
Stop ralph mode PRD processing. Use when user asks to 'cancel ralph', 'stop autonomous mode'. Halts background execution.
Add tasks to deep loop queue (.deep/tasks.md). Use when user asks to 'add task', 'queue this', 'deep add'. Interactively gathers task details.
Clean up stale deep loop files. Use when user asks to 'clean up', 'remove .deep directories'. Removes old session artifacts.
Process queued tasks from .deep/tasks.md. Use when user asks to 'execute queue', 'process tasks', 'run queued work'. Supports multi-session claim-based coordination with git conflict handling.