Soul system health check with remediation. Use to verify setup or diagnose issues.
Runs a comprehensive soul system health check with automatic remediation for setup verification and issue diagnosis. Triggers when you need to verify installation, diagnose problems, or check system coherence and node health.
/plugin marketplace add genomewalker/cc-soul/plugin install soul@genomewalker-cc-soulThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Spawn a Task agent to check soul health. This saves context.
Task(
subagent_type="general-purpose",
description="Soul health check",
prompt="""
Check the soul system health using Bash and MCP tools.
## 1. Verify Setup
Run these checks with Bash:
```bash
# Check symlinks exist and point to valid targets
ls -la ${CLAUDE_PLUGIN_ROOT:-$(dirname $(dirname $0))}/mind/ 2>/dev/null || echo "ERROR: mind/ directory missing"
# Check binary exists
ls -la ${CLAUDE_PLUGIN_ROOT:-$(dirname $(dirname $0))}/bin/chitta_mcp 2>/dev/null || echo "ERROR: chitta_mcp binary missing"
# Check actual data location
ls -la ~/.claude/mind/chitta.* 2>/dev/null || echo "WARNING: No chitta database files at ~/.claude/mind/"
# Check version
cat ${CLAUDE_PLUGIN_ROOT:-$(dirname $(dirname $0))}/.claude-plugin/plugin.json 2>/dev/null | grep version
Call these MCP tools:
| Metric | Healthy | Warning | Critical |
|---|---|---|---|
| Symlinks | Valid | Missing warm | Missing hot/cold |
| Binary | Present | - | Missing |
| Database files | Present | Empty | Missing |
| Coherence (tau_k) | > 0.7 | 0.5-0.7 | < 0.5 |
| Hot nodes % | > 50% | 30-50% | < 30% |
If setup issues found:
If coherence is low:
Return a concise health report:
After the agent returns, present the health report.
This skill should be used when the user asks to "create a hookify rule", "write a hook rule", "configure hookify", "add a hookify rule", or needs guidance on hookify rule syntax and patterns.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.