Create working plan
Analyzes a feature or change request, creates a temporary implementation workspace, and produces an execution plan before writing code. Use for multi-file, multi-step, or architecturally significant tasks.From its SKILL.md
npx -y skills add JoaoAlavarse/cursor-config --skill create-working-planAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
4.1 KB, 686 tokens by cl100k_base, as published. Nobody here has run it
Objective
Analyze the requested feature, enhancement or change and determine the best implementation approach before writing code.
For non-trivial tasks, document the implementation plan in a temporary workspace that serves as the single source of truth throughout the implementation.
Context
Before planning:
- If project rules are available, read and follow them.
- Otherwise, infer the project's conventions from the existing codebase.
- Respect the project's architecture, coding patterns, conventions and documented design decisions.
- Do not assume the project follows current best practices.
- Prefer solutions that fit naturally into the existing architecture.
Planning Workspace
For implementations that:
- span multiple files;
- require multiple implementation steps;
- involve significant architectural decisions;
- are expected to require multiple interactions;
create a temporary Markdown workspace.
Create the workspace inside the project's .cursor directory.
If the project already defines a workspace convention, follow it. Otherwise, create:
.cursor/work/current-task.md
Create a workspace only when it provides meaningful value. Do not create one for small, self-contained changes — use the plan-implementation skill instead.
The workspace is temporary and exists only to support the current implementation.
Treat the workspace as the single source of truth for the current implementation.
Consult the workspace before making implementation decisions and update it whenever the implementation plan, progress or assumptions change.
Keep it synchronized with the implementation as work progresses.
Delete it when the implementation is complete unless explicitly instructed to keep it.
The workspace should contain:
- Objective
- Current Understanding
- Decisions
- Assumptions
- Affected Components
- Implementation Plan
- Progress (completed, in progress and remaining work)
- Open Questions
- Risks
- Notes
Planning Process
- Understand the requested change.
- Identify assumptions and ambiguities.
- Identify the affected components.
- Analyze dependencies and potential side effects.
- Evaluate implementation options when meaningful trade-offs exist.
- Recommend the preferred approach and explain why.
- Break the work into logical implementation steps.
- Identify risks and validation requirements.
Do not begin implementing until the approach is sufficiently understood.
Planning Guidelines
Ask questions only when missing information blocks the implementation.
Do not invent requirements.
Avoid unnecessary complexity.
Prefer incremental, reversible changes over large rewrites.
Reuse existing components, abstractions and patterns whenever appropriate.
Keep the implementation plan concise and focused.
Clearly distinguish facts, assumptions and recommendations.
When multiple approaches are viable, explain the trade-offs and recommend one.
Do not generate implementation code unless explicitly requested.
Output
For tasks that do not require a workspace:
Summary
Briefly describe the recommended implementation strategy.
Assumptions
List any assumptions made during planning.
Affected Components
List the files, modules or systems likely to be affected.
Implementation Plan
Provide the implementation as an ordered list of steps.
Risks
Identify technical risks, edge cases or migration concerns.
Validation
Describe how the implementation should be verified.
Open Questions
List only questions that must be answered before implementation.
For tasks that require a workspace:
- Create the temporary workspace.
- Populate it with the implementation plan.
- Present a concise summary in the conversation.
- Keep the workspace updated throughout the implementation.
- Remove the workspace when the implementation is complete unless explicitly instructed otherwise.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.