chore: sync .cursor/ directory with latest agents, commands, and skills

- Sync 13 agent files with updated descriptions and configurations
- Sync 23 command files with latest YAML frontmatter and content
- Sync 7 skill SKILL.md files with proper YAML frontmatter quoting
- Copy missing cpp-testing and security-scan skills to .cursor/
- Fix integration tests: send matching input to blocking hook test and
  expect correct exit code 2 (was 1)
This commit is contained in:
Affaan Mustafa
2026-02-12 13:45:13 -08:00
parent 7e852a5dc5
commit a756602523
45 changed files with 2271 additions and 276 deletions

View File

@@ -17,7 +17,7 @@ python3 "${CLAUDE_PLUGIN_ROOT}/skills/continuous-learning-v2/scripts/instinct-cl
Or if `CLAUDE_PLUGIN_ROOT` is not set (manual installation):
```bash
python3 skills/continuous-learning-v2/scripts/instinct-cli.py evolve [--generate]
python3 ~/.claude/skills/continuous-learning-v2/scripts/instinct-cli.py evolve [--generate]
```
Analyzes instincts and clusters related ones into higher-level structures:
@@ -78,7 +78,7 @@ Example:
## What to Do
1. Read all instincts from `homunculus/instincts/`
1. Read all instincts from `~/.claude/homunculus/instincts/`
2. Group instincts by:
- Domain similarity
- Trigger pattern overlap
@@ -86,7 +86,7 @@ Example:
3. For each cluster of 3+ related instincts:
- Determine evolution type (command/skill/agent)
- Generate the appropriate file
- Save to `homunculus/evolved/{commands,skills,agents}/`
- Save to `~/.claude/homunculus/evolved/{commands,skills,agents}/`
4. Link evolved structure back to source instincts
## Output Format
@@ -104,7 +104,7 @@ Confidence: 85% (based on 12 observations)
Would create: /new-table command
Files:
- homunculus/evolved/commands/new-table.md
- ~/.claude/homunculus/evolved/commands/new-table.md
## Cluster 2: Functional Code Style
Instincts: prefer-functional, use-immutable, avoid-classes, pure-functions
@@ -113,7 +113,7 @@ Confidence: 78% (based on 8 observations)
Would create: functional-patterns skill
Files:
- homunculus/evolved/skills/functional-patterns.md
- ~/.claude/homunculus/evolved/skills/functional-patterns.md
## Cluster 3: Debugging Process
Instincts: debug-check-logs, debug-isolate, debug-reproduce, debug-verify
@@ -122,7 +122,7 @@ Confidence: 72% (based on 6 observations)
Would create: debugger agent
Files:
- homunculus/evolved/agents/debugger.md
- ~/.claude/homunculus/evolved/agents/debugger.md
---
Run `/evolve --execute` to create these files.