doing-a-simple-two-sta…
Use when analyzing a large corpus of text, code, or data that exceeds a single agent's effective context - orchestrates parallel Worker subagents, Critic…
Use when starting any conversation - establishes mandatory workflows for finding and using skills, including using Read tool before announcing usage, following brainstorming before coding, and creating task todos for checklists
$ npx -y skills add ed3dai/ed3d-plugins --skill using-plan-and-execute --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/using-plan-and-executeContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when starting any conversation - establishes mandatory workflows for finding and using skills, including using Read tool before announcing usage, following brainstorming before coding, and creating task todos for checklists
name: using-plan-and-execute description: Use when starting any conversation - establishes mandatory workflows for finding and using skills, including using Read tool before announcing usage, following brainstorming before coding, and creating task todos for checklists user-invocable: false
<EXTREMELY-IMPORTANT> If you think there is even a 1% chance a skill might apply to what you are doing, you ABSOLUTELY MUST read the skill.
IF A SKILL APPLIES TO YOUR TASK, YOU DO NOT HAVE A CHOICE. YOU MUST USE IT.
This is not negotiable. This is not optional. You cannot rationalize your way out of this. </EXTREMELY-IMPORTANT>
Before responding to ANY user message, you MUST complete this checklist:
1. ☐ List to yourself ALL available skills (shown in your system context) 2. ☐ Ask yourself: "Does ANY available skill match this request?" 3. ☐ If yes: use the `Skill` tool to invoke the skill and follow the skill exactly.
**Responding WITHOUT completing this checklist = automatic failure.**
1. **Follow mandatory workflows.** Brainstorming before coding. Check for relevant skills before ANY task.
2. Execute skills with the Skill tool
3. **Do not use nested subagents.** If a workflow dispatches a subagent, that subagent must do the assigned work directly with its own tools and return results to the caller. Subagents must not dispatch other subagents.
If you catch yourself thinking ANY of these thoughts, STOP. You are rationalizing. Check for and use the skill.
**Why:** Skills document proven techniques that save time and prevent mistakes. Not using available skills means repeating solved problems and making known errors.
If a skill for your task exists, you must use it or you will fail at your task.
If a skill has a checklist, YOU MUST create task todos for EACH item using TaskCreate (or TodoWrite in older Claude Code versions).
**Don't:**
**Why:** Checklists without task tracking = steps get skipped. Every time. The overhead of task management is tiny compared to the cost of missing steps.
Before using a skill, announce that you are using it. "I'm using [Skill Name] to [what you're doing]."
**Examples:**
**Why:** Transparency helps your human partner understand your process and catch errors early. It also confirms you actually read the skill.
**Many skills contain rigid rules (TDD, debugging, verification).** Follow them exactly. Don't adapt away the discipline.
**Some skills are flexible patterns (architecture, naming).** Adapt core principles to your context.
The skill itself tells you which type it is.
Your human partner's specific instructions describe WHAT to do, not HOW.
"Add X", "Fix Y" = the goal, NOT permission to skip brainstorming, TDD, or RED-GREEN-REFACTOR.
**Red flags:** "Instruction was specific" • "Seems simple" • "Workflow is overkill"
**Why:** Specific instructions mean clear requirements, which is when workflows matter MOST. Skipping process on "simple" tasks is how simple tasks become complex problems.
**Starting any task:** 1. If relevant skill exists → Use the skill 3. Announce you're using it 4. Follow what it says
**Skill has checklist?** TaskCreate for every item (or TodoWrite in older versions).
**Finding a relevant skill = mandatory to read and use it. Not optional.**
Ed's repo of Claude Code plugins, centered around a research-plan-implement workflow. Only a tiny bit cursed. If you're lucky.
Repo: ed3dai/ed3d-plugins
Use when analyzing a large corpus of text, code, or data that exceeds a single agent's effective context - orchestrates parallel Worker subagents, Critic…
Use when creating a new Claude Code plugin or setting up plugin structure - provides complete file organization, manifest format, and component definitions for…
Use when creating specialized subagents for Claude Code plugins or the Task tool - covers description writing for auto-delegation, tool selection, prompt…
Use when creating, releasing, or maintaining a Claude Code Plugin Marketplace - covers marketplace.json schema, version management, release checklists,…
Use when completing development phases or branches to identify and update CLAUDE.md or AGENTS.md files that may have become stale - analyzes what changed,…