원클릭으로
help
Learn how to use devloop - interactive guide to commands, workflow, and best practices
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Learn how to use devloop - interactive guide to commands, workflow, and best practices
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create or update the project security baseline, profile, suppressions file, and gitignore entries for security scans
Fix or guide remediation for a specific security finding from the latest scan report
Run a security assessment using deterministic static analysis tools with LLM-powered triage
Inspect and optionally install security scanning tools for the security plugin
Query ctx memory and inject results into context
Show ctx memory status (node counts, types, tiers, tokens)
| name | help |
| description | Learn how to use devloop - interactive guide to commands, workflow, and best practices |
| argument-hint | Optional topic (commands, loop, skills, troubleshooting) |
| allowed-tools | ["Read","AskUserQuestion"] |
Interactive guide to devloop.
If $ARGUMENTS specifies a topic, skip to that section. Otherwise:
AskUserQuestion:
questions:
- question: "What would you like to learn about?"
header: "Topic"
multiSelect: false
options:
- label: "Getting Started"
description: "New to devloop? Start here"
- label: "Commands"
description: "What each command does"
- label: "The Loop"
description: "The plan -> run -> fresh cycle"
- label: "Skills & Agents"
description: "On-demand knowledge and parallel work"
- label: "Superpowers"
description: "How devloop works with superpowers plugin"
Development workflow where Claude does the work directly. No routine agents. Just you, Claude, and the code.
/devloop:plan "How should we implement feature X?" # Plan (or --deep for exploration)
/devloop:run # Execute tasks
/devloop:fresh && /clear # Save state, clear context (every fresh_threshold tasks (default 10, configurable in .devloop/local.md))
/devloop:run # Continue execution
/devloop:plan [task] (or --deep for detailed exploration)/devloop:run to implement/devloop:fresh then /clear then /devloop:run/devloop:shipStarting new work?
|-- Unclear requirements -> /devloop:plan --deep
|-- Small, clear task -> /devloop:plan --quick
|-- Normal feature -> /devloop:plan
|-- Have a plan -> /devloop:run
Mid-workflow?
|-- Context heavy -> /devloop:fresh -> /clear -> /devloop:run
|-- Ready to commit -> /devloop:ship
|-- Want review -> /devloop:review
Returning?
|-- /devloop:run
| Command | Purpose |
|---|---|
/devloop | Start new workflow (smart entry point) |
/devloop:plan | Autonomous planning (default mode) |
/devloop:plan --deep | Comprehensive exploration with spike report |
/devloop:plan --quick | Fast path for small, clear tasks |
/devloop:plan --from-issue N | Start from GitHub issue #N |
/devloop:run | Autonomous execution |
/devloop:run --interactive | With checkpoints |
/devloop:run --next-issue | Full issue-to-ship pipeline |
/devloop:run-swarm | Swarm for 10+ tasks |
/devloop:fresh | Save state for clear |
/devloop:review | Code review |
/devloop:ship | Commit & PR |
/devloop:archive | Archive completed plan |
/devloop:new | Create GitHub issue |
/devloop:issues | List GitHub issues |
/devloop:statusline | Configure statusline |
/devloop:help | This guide |
| Old Command | New Command |
|---|---|
/devloop:spike | /devloop:plan --deep |
/devloop:quick | /devloop:plan --quick |
/devloop:from-issue N | /devloop:plan --from-issue N |
/devloop:continue | /devloop:run --interactive |
/devloop:ralph | /devloop:run |
/devloop:plan [topic] -> Creates plan
|
/devloop:run -> Implements tasks
|
After fresh_threshold tasks (default 10, configurable in .devloop/local.md)?
|-- Yes -> /devloop:fresh -> /clear -> /devloop:run
|-- No -> Continue
| File | Purpose |
|---|---|
.devloop/plan.md | Current plan (persists) |
.devloop/next-action.json | Fresh state (consumed) |
.devloop/worklog.md | Work history |
Load when needed: Skill: skill-name
| Skill | Purpose |
|---|---|
plan-management | Working with plan.md |
local-config | Project settings via .devloop/local.md |
pr-feedback | Integrate PR review comments |
devloop-audit | Audit devloop against Claude Code updates |
Don't preload. Claude loads automatically when needed.
Use for: parallel implementations, security scans, large exploration (50+ files) Don't use for: writing code, tests, git ops, single files, docs
| Agent | Purpose |
|---|---|
devloop:engineer | Exploration, architecture, code review |
devloop:qa-engineer | Test generation |
devloop:security-scanner | OWASP, secrets |
devloop:doc-generator | READMEs, API docs |
devloop:swarm-worker | Parallel task execution |
Plan corrupted: rm .devloop/plan.md && /devloop
Session ended: /devloop:run
Abandon plan: /devloop:archive && /devloop
Context heavy: /devloop:fresh && /clear && /devloop:run
Skill not loading: Check exact name in skills/INDEX.md
Progress not saving: Use [x] not [X]
Statusline missing: /devloop:statusline, restart Claude Code
LSP tools in agents: engineer, qa-engineer, and security-scanner agents use LSP for symbol navigation (goToDefinition, findReferences, documentSymbol). Gracefully falls back to Grep/Glob if no LSP server is configured.
Monitor for long commands: run, run-epic, and run-swarm use Monitor (not Bash) for test suites, builds, and full-codebase linting to stream output in real-time. Falls back to Bash if Monitor is unavailable.
Worktree isolation: run-swarm --worktrees runs each worker in an isolated git worktree. Enable via flag or git.worktree_isolation: true in .devloop/local.md. Off by default.
Token budget: tokens.token_budget in .devloop/local.md caps how many tokens gather-task-context.sh collects per task (default: 4000). Lower for leaner context; raise for large codebases.
Cache-friendly context: tokens.cache_friendly_context: true (default) reorders agent spawn prompts to maximize prompt cache hits, reducing API costs on repeated runs.
rm -rf .devloop/ && /devloop
/devloop:run # Up to 50 iterations
/devloop:run --max-iterations 100 # Custom limit
/devloop:run --interactive # With checkpoints
/devloop:run creates ralph-loop state[x]<promise>ALL PLAN TASKS COMPLETE</promise>Auto-exits at 70% context usage. Configure in .devloop/local.md:
context_threshold: 80
/cancel-ralphDevloop and superpowers are complementary plugins with distinct lanes:
Devloop works fully standalone. Superpowers is optional.
| Task | Use |
|---|---|
| Plan and implement a feature | /devloop:plan -> /devloop:run |
| Write tests first, then code | superpowers:test-driven-development |
| Debug a failing test | superpowers:systematic-debugging |
| Quick review of changes | /devloop:review |
| Thorough code review | superpowers:requesting-code-review |
| Commit and PR | /devloop:ship |
/devloop:plan creates workflow plans (task breakdown, phased execution)superpowers:writing-plans creates implementation plans (architecture, design decisions)Both can coexist. Use devloop for the workflow, superpowers for quality gates within tasks.
AskUserQuestion:
questions:
- question: "Learn about another topic?"
header: "More"
multiSelect: false
options:
- label: "Yes, show topics"
description: "Return to topic menu"
- label: "No, I'm good"
description: "Exit help"
If yes, return to Step 1. If no:
Ready to start? Try
/devloop:plan [task]or/devloop:runif you have a plan.