skills/kriya/SKILL.md
Review soul discoveries (fixes, improvements, corrections) one by one, accept or discard each, implement accepted ones, build chitta, and optionally release.
npx skillsauth add genomewalker/cc-soul kriyaInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Kriya means "action, practice" — the applied counterpart to jnana (knowledge). Sadhanas and dreams accumulate findings; kriya turns them into shipped code.
/kriya # Review all pending fixes and improvements
/kriya --dry-run # Show pending findings without implementing anything
/kriya --all # Apply all without interactive review (still asks before release)
[fix], [solution], [improvement], [correction] memories not yet tagged [applied]cmake --build build --parallelhealth_check confirms the daemon is live[applied] so they don't resurfaceToolSearch({ query: "chitta recall smart_recall remember" })
Call mcp__chitta__smart_recall with a targeted query:
mcp__chitta__smart_recall({
query: "fix solution improvement correction bug gotcha",
limit: 20
})
Filter the results to memories whose tags or title contain any of:
[fix], [solution], [improvement], [correction], [gotcha], [bug]
AND do not contain [applied].
If --dry-run flag: print the findings list and stop.
If no pending findings found:
"No pending fixes found. The soul is clean. Run a sadhana or dream to surface new discoveries." Stop.
Display a numbered list of all findings:
Pending findings (N):
1. [fix] daemon: ETXTBSY when copying binary while running
File: chitta/src/simple_cli.cpp Confidence: 92%
2. [correction] build order: kill daemon BEFORE cp
File: CLAUDE.md Confidence: 95%
3. [improvement] TimeoutYantra: unbounded embedding threads
File: chitta/include/chitta/vak_timeout.hpp Confidence: 88%
...
AskUserQuestion({
questions: [{
question: "Found N pending findings. How do you want to proceed?",
header: "Review mode",
multiSelect: false,
options: [
{ label: "Review individually", description: "Go through each finding one by one" },
{ label: "Apply all", description: "Accept every finding without reviewing" },
{ label: "Cancel", description: "Exit without making changes" }
]
}]
})
For each finding, ask:
AskUserQuestion({
questions: [{
question: "[fix] #{title}\n\n#{content}\n\nFile: #{file_ref}",
header: "Finding #N",
multiSelect: false,
options: [
{ label: "Apply", description: "Implement this fix" },
{ label: "Skip", description: "Leave for later" },
{ label: "Stop", description: "Stop reviewing, apply what's accepted so far" }
]
}]
})
Collect the list of accepted findings. If "Stop" → break loop early.
If nothing was accepted: confirm and exit.
For each accepted finding:
✓ Applied: {title}If a finding is ambiguous or the file doesn't exist: skip it and log ⚠ Skipped (unclear): {title}.
cd /maps/projects/fernandezguerra/apps/repos/cc-soul/chitta && cmake --build build --parallel
If build fails:
AskUserQuestion({
questions: [{
question: "Build failed. What now?",
header: "Build error",
options: [
{ label: "Try to fix", description: "Attempt to fix the build error" },
{ label: "Revert all", description: "Git checkout the changed files and abort" },
{ label: "Abort", description: "Stop here, leave files as-is" }
]
}]
})
git checkout -- . and stoppkill -TERM chittad 2>/dev/null; sleep 1
cp /maps/projects/fernandezguerra/apps/repos/cc-soul/chitta/bin/chitta \
/maps/projects/fernandezguerra/apps/repos/cc-soul/chitta/bin/chittad \
~/.claude/bin/
mcp__chitta__health_check({})
If the daemon responds healthy: ✓ Daemon is live
If not: wait 2 seconds and retry once. If still failing, warn but continue.
AskUserQuestion({
questions: [{
question: "Build and install succeeded. Release a new version?",
header: "Release",
options: [
{ label: "Patch (x.x.+1)", description: "Bug fixes only" },
{ label: "Minor (x.+1.0)", description: "New features or significant changes" },
{ label: "Skip release", description: "Keep changes local for now" }
]
}]
})
If patch or minor:
cd /maps/projects/fernandezguerra/apps/repos/cc-soul && ./scripts/release.sh <patch|minor> -y
For each successfully applied finding, add [applied] to its tags:
mcp__chitta__set_memory_type({ id: <id>, ... })
Or use mcp__chitta__remember to store a brief record:
mcp__chitta__remember({
content: "[applied] #{title} — applied in session #{date}, released in v#{version}",
tags: "applied,kriya,fix"
})
Then connect the new "applied" memory to the original finding:
mcp__chitta__connect_temporal({
from: "<applied-memory-id>",
relation: "resolves",
to: "<original-finding-id>"
})
Kriya complete ✓
Applied: 3 fixes
Skipped: 1
Build: ✓ successful
Daemon: ✓ live
Released: v3.44.0
Fixes applied:
✓ daemon: ETXTBSY build order fix
✓ TimeoutYantra: bounded embedding threads
✓ socket_is_active: EACCES treated as stale
↷ is_pid_alive zombie detection (skipped)
[applied] if the build faileddevelopment
Build, convert, and fine-tune the Qwen3-0.6B hint model for personal fact extraction. Covers corpus generation, ChatML conversion, LoRA fine-tuning with unsloth, GGUF export, and Ollama registration.
development
Build, convert, and fine-tune the Qwen3-0.6B hint model for personal fact extraction. Covers corpus generation, ChatML conversion, LoRA fine-tuning with unsloth, GGUF export, and Ollama registration.
tools
Browse and resume tasks, threads, and background jobs across sessions
tools
Resume a thread by loading its ~800-token context capsule