From workflow
Phase 2 of the development workflow. Create an implementation plan based on exploration. Lists exact files, changes, risks, and verification method. Use after /explore.
How this skill is triggered — by the user, by Claude, or both
Slash command
/workflow:planThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Phase 2 of the Explore → Plan → Implement → Verify workflow.
Phase 2 of the Explore → Plan → Implement → Verify workflow. From Anthropic: "Planning is most useful for uncertain approach, changes across many files, or unfamiliar code."
Based on the exploration (or direct knowledge), create a plan:
Write the plan to .claude/plans/{task-name}.md:
# Plan: {task-name}
## Problem
{one sentence}
## Approach
{2-3 sentences}
## Changes
1. `path/to/file.ext` — {what changes}
2. `path/to/other.ext` — {what changes}
## Risks
- {risk 1}
- {risk 2}
## Verification
{how to verify — specific command or check}
After writing the plan:
Skip planning for tasks where you can describe the diff in one sentence.
npx claudepluginhub artmin96/forge-studio --plugin workflowReplicates Claude Code plan mode in read-only fashion: explores codebase, designs changes, gets user approval, then writes plan to .claude/plans/<slug>.md without executing. Triggers on 'plan only' phrases.
Generates detailed, step-by-step implementation plans from specs or requirements, with bite-sized tasks, file paths, and test-first guidance.