Creates new cogitation skills following best practices and EC integration patterns. Use when adding new capabilities or workflows to the skill set.
Creates new cogitation skills with proper structure, EC integration patterns, and naming conventions.
npx claudepluginhub merewhiplash/engram-cogitatorThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Create skills that integrate with EC and follow cogitation conventions.
Announce: "I'm using the writing-skills skill to create a new skill."
Every skill needs a SKILL.md file in cogitation/skills/<skill-name>/:
---
name: skill-name
description: [Third person verb] what it does. Mentions EC integration. Use when [trigger conditions].
---
# Skill Title
Brief description.
**Announce:** "I'm using the skill-name skill to [action]."
## Step 0: Load Context
ec_search for relevant config/patterns/learnings.
## Instructions
[Clear, step-by-step guidance with EC integration]
## Store Learnings
[When and how to store memories]
## References
[Link to other skills with @notation]
debugging, verifying, writing-plansrequesting-review, not RequestingReviewanthropic, claudeGood:
description: Provides systematic debugging workflow that finds root cause before fixing. Searches EC for prior issues and stores learnings. Use when encountering bugs, test failures, or unexpected behavior.
Bad:
description: Use this for debugging
@tdd, @verifyingEvery cogitation skill MUST integrate with EC. Include:
## Step 0: Load Context
Get project config and relevant memories:
\`\`\`
ec_search:
query: project config
type: config
ec_search:
query: [relevant area]
type: pattern|learning|decision
\`\`\`
## Store Learnings
If [condition worth storing]:
\`\`\`
ec_add:
type: learning|pattern|decision
area: [component]
content: [What to remember]
rationale: [Why it matters]
\`\`\`
Use @skill-name to reference other skills:
## Phase 4: Fix @tddUse @verifying before claiming successIf yes → **Use @finishing-branch**For complex skills, use separate files:
my-skill/
├── SKILL.md # Overview (< 500 lines)
├── reference.md # Detailed docs (loaded when needed)
└── examples.md # Usage examples
Reference in SKILL.md:
For detailed API reference, see [reference.md](reference.md)
After creating a new skill:
ec_add:
type: pattern
area: cogitation
content: Created skill [name] for [purpose]. Key pattern: [main workflow].
rationale: Extends cogitation capabilities
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.