planner
Executes complex, multi-step development workflows through structured planning and execution modes.
Install
mkdir -p .claude/skills/planner && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/3584" && unzip -o skill.zip -d .claude/skills/planner && rm skill.zipInstalls to .claude/skills/planner
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Interactive planning and execution for complex tasks. IMMEDIATELY invoke when user asks to use planner.Key capabilities
- →Decompose complex tasks into actionable steps
- →Execute multi-stage migration or implementation plans
- →Switch between planning and execution modes
How it works
The skill uses separate modes for planning and execution, invoking specific scripts to manage the workflow of complex tasks.
Inputs & outputs
When to use planner
- →Decomposing a large feature into actionable tickets
- →Architecting a new system component
- →Running a multi-stage migration script
About this skill
Activation
When this skill activates, IMMEDIATELY invoke the corresponding script. The script IS the workflow.
| Mode | Intent | Command |
|---|---|---|
| planning | "plan", "design", "architect" | <invoke working-dir=".claude/skills/scripts" cmd="python3 -m skills.planner.orchestrator.planner --step 1" /> |
| execution | "execute", "implement", "run plan" | <invoke working-dir=".claude/skills/scripts" cmd="python3 -m skills.planner.orchestrator.executor --step 1" /> |
When not to use it
- →Simple, single-step tasks that do not require decomposition
Limitations
- →Requires explicit invocation for planning or execution modes
How it compares
It provides a structured, interactive environment for decomposing and executing tasks rather than performing them in a single unstructured pass.
Compared to similar skills
planner side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| planner (this skill) | 1 | 6mo | No flags | Intermediate |
| autonomous-agents | 10 | 6mo | No flags | Advanced |
| agent-goal-planner | 2 | 6mo | No flags | Advanced |
| hierarchical-coordinator | 1 | 6mo | No flags | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by solatis
View all by solatis →You might also like
autonomous-agents
davila7
Autonomous agents are AI systems that can independently decompose goals, plan actions, execute tools, and self-correct without constant human guidance. The challenge isn't making them capable - it's making them reliable. Every extra decision multiplies failure probability. This skill covers agent loops (ReAct, Plan-Execute), goal decomposition, reflection patterns, and production reliability. Key insight: compounding error rates kill autonomous agents. A 95% success rate per step drops to 60% b
agent-goal-planner
ruvnet
Agent skill for goal-planner - invoke with $agent-goal-planner
hierarchical-coordinator
MadAppGang
Prevent goal drift in long-running multi-agent workflows using a coordinator agent that validates outputs against original objectives at checkpoints. Use when orchestrating 3+ agents, multi-phase features, complex implementations, or any workflow where agents may lose sight of original requirements. Trigger keywords - "hierarchical", "coordinator", "anti-drift", "checkpoint", "validation", "goal-alignment", "decomposition", "phase-gate", "shared-state", "drift detection".
workflow-router
parcadei
Goal-based workflow orchestration - routes tasks to specialist agents based on user goals
loki-mode
davila7
Multi-agent autonomous startup system for Claude Code. Triggers on "Loki Mode". Orchestrates 100+ specialized agents across engineering, QA, DevOps, security, data/ML, business operations, marketing, HR, and customer success. Takes PRD to fully deployed, revenue-generating product with zero human intervention. Features Task tool for subagent dispatch, parallel code review with 3 specialized reviewers, severity-based issue triage, distributed task queue with dead letter handling, automatic deployment to cloud providers, A/B testing, customer feedback loops, incident response, circuit breakers, and self-healing. Handles rate limits via distributed state checkpoints and auto-resume with exponential backoff. Requires --dangerously-skip-permissions flag.
distributed-task-orchestrator
shuyu-labs
Decompose complex tasks into parallel sub-agents. Use for multi-step operations, batch processing, or when user mentions "parallel", "agents", or "orchestrate".