From cogitation
Creates new cogitation skills following best practices and EC integration patterns. Use when adding new capabilities or workflows to the skill set.
npx claudepluginhub merewhiplash/engram-cogitator --plugin cogitationThis skill uses the workspace's default tool permissions.
Create skills that integrate with EC and follow cogitation conventions.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
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