npx claudepluginhub zate/cc-plugins --plugin devloopThis skill is limited to using the following tools:
Create actionable plan from topic. **Do the work directly.**
Creates detailed implementation plans for features, refactoring, or tasks via interactive collaboration, spawning agents for codebase analysis, file reading, and context research.
Creates detailed, phased implementation plans with sprints and atomic tasks for bugs, features, or tasks. Triggers on planning requests like 'make a plan' or /planner command.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
Create actionable plan from topic. Do the work directly.
Bash hygiene: prefer quiet flags to minimize output (npm install --silent, git status -sb, pipe long output through | tail -n 20).
Extract topic from $ARGUMENTS. If missing, show usage: /devloop:plan <topic> [--deep|--quick|--from-issue N].
If --from-issue N: Fetch with gh issue view $N --json number,title,body,url. Use title as topic, body as context.
If .devloop/plan.md exists:
done=$(grep -cE "^\s*- \[x\]" .devloop/plan.md 2>/dev/null || echo 0)
total=$(grep -cE "^\s*- \[[ x~!-]\]" .devloop/plan.md 2>/dev/null || echo 0)
done == total and total > 0: auto-archive silently:
"${CLAUDE_PLUGIN_ROOT}/scripts/archive-plan.sh" .devloop/plan.md --force
done < total): prompt to archive (force) or cancel.total == 0: continue to Step 3.--quick: Fast PathUse for bug fixes with known cause or small additions.
--quick.--deep: Comprehensive ExplorationUse for unclear requirements or architectural changes.
.devloop/spikes/{topic}.md.Run check-devloop-state.sh. Detect tech stack and patterns from CLAUDE.md.
Create .devloop/plan.md with: Overview, Approach, Considerations, and Phased Tasks.
Tasks: Phased, specific, actionable, testable. (XS: 2-3 tasks, XL: 8-12 tasks).
Annotate each task with a model hint based on complexity:
[model:haiku] — Simple/mechanical: writing tests from existing patterns, documentation, formatting, linting, config changes, file renames[model:sonnet] — Complex reasoning: architecture, debugging, multi-file refactoring, security, performance optimizationIdentify tasks that can execute concurrently and assign [parallel:X] groups:
[depends:N.M] for tasks that require prior task outputDisplay Summary: Complexity, Task/Phase count, Key files, and Approach. AskUserQuestion:
/devloop:run.Now: Parse input and begin.