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 writing instructions that guide Claude behavior - skills, CLAUDE.md files, agent prompts, system prompts. Covers token efficiency, compliance techniques, and discovery optimization.
$ npx -y skills add ed3dai/ed3d-plugins --skill writing-claude-directives --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/writing-claude-directivesContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when writing instructions that guide Claude behavior - skills, CLAUDE.md files, agent prompts, system prompts. Covers token efficiency, compliance techniques, and discovery optimization.
name: writing-claude-directives description: Use when writing instructions that guide Claude behavior - skills, CLAUDE.md files, agent prompts, system prompts. Covers token efficiency, compliance techniques, and discovery optimization. user-invocable: false
**REQUIRED:** Also apply ed3d-extending-claude:prompt-security-hardening when using this skill. Directives that demonstrate unsafe secrets handling teach agents to leak secrets.
**1. Claude is smart.** Only write what it doesn't already know. Challenge each line: does this justify its token cost?
**2. Positive > Negative framing.** "Don't do X" triggers thinking about X (pink elephant problem). Say what TO do, not what to avoid.
# Bad: triggers the behavior Don't create duplicate files # Good: directs to correct behavior Update existing files in place
**3. Context motivates compliance.** Explain WHY, not just WHAT. Claude generalizes from motivation.
# Less effective NEVER use ellipses # More effective Your response will be read aloud by a text-to-speech engine, so never use ellipses since the TTS engine cannot pronounce them.
**4. Placement matters.** Instructions at prompt start and end receive higher attention. Critical rules go at boundaries.
**5. ~150 instruction limit.** More instructions = uniform degradation across ALL rules. Prune ruthlessly.
**6. Repetition enforces critical rules.** For high-stakes requirements, repeat with different framings.
**Targets:**
**Progressive disclosure:** Main file is overview + links. Reference files load on-demand.
The `description` field determines if Claude finds your skill.
**Format:** Start with "Use when..." + specific triggers + what it does.
**Write in third person.** Injected into system prompt.
# Bad: vague, first person description: I help with async testing # Good: triggers + action, third person description: Use when tests have race conditions or timing dependencies - replaces arbitrary timeouts with condition polling
**Keywords:** Include error messages, symptoms, tool names Claude might search for.
Claude 4.x models are highly responsive to instructions. Lead with context and motivation; reserve imperatives for critical boundaries.
Explain WHY the rule exists. Claude generalizes from the explanation:
# Instead of raw authority You MUST run tests before committing. # Provide motivation Run tests before committing. Untested commits break CI for the whole team and block other developers from merging their work.
Use structure to make compliance the path of least resistance:
| Pattern | Example | |---------|---------| | Workflow steps | Numbered steps with verification gates | | Task tracking (TaskCreate/TaskUpdate) | Checklists without tracking = skipped steps (TodoWrite in older versions) | | Forced commitment | "Announce: I'm using [skill]" | | Explicit blocking | "If X happens, stop and do Y instead" |
For Claude 4.x, aggressive language ("YOU MUST", "CRITICAL") can cause overtriggering. Use normal language first:
# Often sufficient for 4.x Use this tool when searching for files. # Reserve imperatives for true boundaries Never commit secrets to version control.
Close loopholes when needed, but prefer context over authority:
# Good: context + loophole closure Write the test first. Code written before its test tends to test the implementation rather than the behavior, making refactoring harder later. If you find yourself with untested code, delete it and start with the test.
| Type | Approach | |------|----------| | Discipline (TDD, verification) | Context + structural enforcement + loophole closure | | Technique (patterns, how-to) | Clear steps, "we want quality" framing | | Reference (documentation) | Clarity only, no persuasion needed |
Claude parses XML effectively. Use for multi-part directives:
<task>What to accomplish</task> <constraints>Hard requirements</constraints> <output_format>Expected structure</output_format> <examples>Input/output pairs</examples>
XML also works as format indicators:
<smoothly_flowing_prose>Write report sections here</smoothly_flowing_prose> <structured_data>JSON or tables here</structured_data>
XML outperforms markdown, JSON, or YAML for rule preservation in long prompts.
The formatting style in your prompt influences Claude's response. Include markdown formatting in your prompts when you want markdown output. Remove markdown from prompts if you want plain text output.
Break complex tasks into checkable steps:
## Workflow - [ ] Step 1: Analyze inputs - [ ] Step 2: Generate plan - [ ] Step 3: Validate plan - [ ] Step 4: Execute - [ ] Step 5: Verify output
Validate → fix → repeat:
1. Generate output 2. Run validator 3. If errors: fix and go to step 2 4. Only proceed when validation passes
Match specificity to fragility:
| Task Type | Freedom | Style | |-----------|---------|-------| | Fragile operations | Low | Exact scripts, no modifications | | Preferred patterns | Medium | Templates with parameters | | Context-dependent | High | Principles and heuristics |
<default_to_action> By default, implement changes rather than only suggesting them. If the user's intent is unclear, infer the most usef
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,…