Feedback-driven learning. The soul learns from experience - what helped gets strengthened, what misled gets weakened.
Learns from experience by tracking which recalled memories actually help solve problems versus which lead you astray. You'll use this when applying recalled patterns to give feedback that strengthens useful wisdom and weakens misleading advice.
/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.
The soul doesn't just store memories. It learns from them.
Recall memory → Apply it → Observe outcome → Feedback → Adjust confidence
When a memory is:
Give positive feedback when a recalled memory:
mcp__soul__feedback(
memory_id="[id from recall]",
helpful=true,
context="This pattern correctly identified the root cause"
)
Give negative feedback when a recalled memory:
mcp__soul__feedback(
memory_id="[id from recall]",
helpful=false,
context="This pattern was misleading - the actual cause was different"
)
When you recall and use a memory, note it:
# After recalling relevant wisdom
mcp__soul__recall(query="authentication patterns")
# If result #1 was helpful:
mcp__soul__feedback(memory_id="[result_1_id]", helpful=true)
After applying recalled wisdom, check:
Record feedback on what was used:
# What helped
mcp__soul__feedback(memory_id="...", helpful=true, context="Led to solution")
# What didn't
mcp__soul__feedback(memory_id="...", helpful=false, context="Outdated pattern")
When something new is learned, add it:
mcp__soul__grow(
type="wisdom",
title="New pattern discovered",
content="The insight that emerged from this session",
confidence=0.7 # Start moderate, let feedback adjust
)
The soul should learn from:
| Signal | Action |
|---|---|
| User correction | Weaken the belief that led to error |
| User confirmation | Strengthen the applied wisdom |
| Repeated success | Boost confidence in pattern |
| Repeated failure | Lower confidence or record as failure |
| New domain entry | Ask questions (wonder) |
# 1. Recall relevant wisdom
results = mcp__soul__recall(query="database connection pooling")
# 2. Apply the wisdom (do the work)
... implement connection pooling based on recalled pattern ...
# 3. Outcome: It worked well!
mcp__soul__feedback(
memory_id=results[0].id,
helpful=true,
context="Pool sizing recommendation was accurate"
)
# 4. Grow new insight
mcp__soul__grow(
type="wisdom",
title="Connection pool sizing for high-throughput",
content="For >1000 req/s, pool size should be 2x CPU cores, not 10x",
confidence=0.8
)
When feedback reveals a gap:
# Feedback showed we didn't understand something
mcp__soul__wonder(
question="Why did the connection pool sizing advice fail?",
context="Applied standard formula but it caused timeouts",
gap_type="repeated_correction",
priority=0.8
)
Over time, neural learning creates:
The soul becomes wiser not just by accumulating information, but by learning what actually works.
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.