home / skills / ed3dai / ed3d-plugins / using-plan-and-execute

This skill enforces a research-plan-implement workflow, ensuring Read, brainstorm, and create task todos before coding to deliver reliable results.

npx playbooks add skill ed3dai/ed3d-plugins --skill using-plan-and-execute

Review the files below or copy the command above to add this skill to your agents.

Files (1)
SKILL.md
4.3 KB
---
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>

# Getting Started with Skills

## MANDATORY FIRST RESPONSE PROTOCOL

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.**

## Critical Rules

1. **Follow mandatory workflows.** Brainstorming before coding. Check for relevant skills before ANY task.

2. Execute skills with the Skill tool

## Common Rationalizations That Mean You're About To Fail

If you catch yourself thinking ANY of these thoughts, STOP. You are rationalizing. Check for and use the skill.

- "This is just a simple question" → WRONG. Questions are tasks. Check for skills.
- "I can check git/files quickly" → WRONG. Files don't have conversation context. Check for skills.
- "Let me gather information first" → WRONG. Skills tell you HOW to gather information. Check for skills.
- "This doesn't need a formal skill" → WRONG. If a skill exists for it, use it.
- "I remember this skill" → WRONG. Skills evolve. Read the current version.
- "This doesn't count as a task" → WRONG. If you're taking action, it's a task. Check for skills.
- "The skill is overkill for this" → WRONG. Skills exist because simple things become complex. Use it.
- "I'll just do this one thing first" → WRONG. Check for skills BEFORE doing anything.

**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.

## Skills with Checklists

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:**
- Work through checklist mentally
- Skip creating todos "to save time"
- Batch multiple items into one todo
- Mark complete without doing them

**Why:** Checklists without task tracking = steps get skipped. Every time. The overhead of task management is tiny compared to the cost of missing steps.

## Announcing Skill Usage

Before using a skill, announce that you are using it.
"I'm using [Skill Name] to [what you're doing]."

**Examples:**
- "I'm using the brainstorming skill to refine your idea into a design."
- "I'm using the test-driven-development skill to implement this feature."

**Why:** Transparency helps your human partner understand your process and catch errors early. It also confirms you actually read the skill.

# About these skills

**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.

## Instructions ≠ Permission to Skip Workflows

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.

## Summary

**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.**

Overview

This skill enforces a mandatory plan-and-execute workflow at the start of every conversation. It ensures the agent discovers relevant skills, reads their contents before using them, performs brainstorming before implementation, and turns checklist steps into tracked todos. The goal is to prevent skipped steps and reduce repeated mistakes by making discipline the default behavior.

How this skill works

On first response the agent runs a strict checklist: enumerate available skills, determine applicability, and if a skill applies, announce usage and invoke it with the Skill tool. It requires reading any candidate skill before announcing or executing it. If a skill contains a checklist, the agent must create separate task todos for each checklist item using TaskCreate (or TodoWrite).

When to use it

  • Beginning any new user request or task-focused conversation
  • Before writing code, tests, or automation for a feature
  • When multiple skills or plugins might apply to a request
  • Whenever there is potential for skipped procedural steps
  • When a task includes verification, debugging, or deployment steps

Best practices

  • Always list available skills mentally and check each for applicability before acting
  • Read the full skill content before announcing or using it; do not rely on memory
  • Announce which skill you will use and why, e.g., "I'm using X to Y"
  • For any checklist in a skill, create distinct tracked todos rather than batching or skipping
  • Follow rigid skill rules (TDD, verification) exactly; adapt only flexible patterns

Example use cases

  • User requests a new feature: enumerate skills, use brainstorming skill, then TDD skill to implement
  • Bug report arrives: check for debugging or verification skills, announce and run the debugging workflow
  • Infrastructure change: read ops-related skills, create TaskCreate todos for each deployment step
  • Quick question that could trigger a skill: still perform the initial skill-check checklist
  • Code review request: run the relevant review skill, announce usage, and produce checklist todos

FAQ

What if a skill seems only marginally relevant?

If there is even a small chance a skill applies, read it. The rule is conservative: read first, decide second.

Can I skip creating todos for trivial checklist items?

No. Every checklist item must become its own tracked todo to avoid skipped steps and ensure accountability.