Marketplace plan
Guidelines for iteratively planning tasks and changes before implementation. Use this when the user requests a non-trivial task or when you need to align on a complex implementation strategy.
install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/0xmsc/plan" ~/.claude/skills/aiskillstore-marketplace-plan && rm -rf "$T"
manifest:
skills/0xmsc/plan/SKILL.mdsource content
Task Planning
Workflow
- Gather Information: Explore codebase and list dependencies.
- Draft Plan:
- Objective: Goal of the task.
- Approach: High-level strategy.
- Steps: Sequential actions.
- Verification: How to prove it works.
- Clarify: Include at least 3 clarifying questions with proposed answers.
- Approve: Wait for user "go ahead" (empty response = approval).
- Implement: Execute only after approval.
Principles
- Zero-Impact: Do not modify files during planning.
- Iterative: Refine based on feedback.
- Concise: Keep plans readable and progress tracked via TODOs.