Incrementally import soul data from SQLite or shared chitta files. Adds to existing data.
Incrementally imports soul data from SQLite databases or shared chitta files, adding new nodes to your existing knowledge graph. Claude will use this when you ask to import legacy soul data or merge knowledge from another user's chitta files.
/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.
Import soul data incrementally - new nodes are added to existing data.
Task(
subagent_type="general-purpose",
description="Import soul data incrementally",
prompt="""
Import soul data incrementally. Ask user which source to import from.
## 1. Determine Source
Ask user: "Import from (1) SQLite soul.db or (2) shared chitta files?"
## 2a. SQLite soul.db Import
Find binaries:
```bash
PLUGIN_DIR=$(ls -d ~/.claude/plugins/cache/genomewalker-cc-soul/soul/*/chitta 2>/dev/null | tail -1)
MIGRATE_BIN="$PLUGIN_DIR/build/chitta_migrate"
MODELS_PATH="$PLUGIN_DIR/models"
# Build if missing
if [ ! -f "$MIGRATE_BIN" ]; then
cd "$PLUGIN_DIR/build" && make chitta_migrate
fi
Dry run:
$MIGRATE_BIN --dry-run --verbose \
--soul-db ~/.claude/mind/soul.db \
--output ~/.claude/mind/chitta \
--model "$MODELS_PATH/model.onnx" \
--vocab "$MODELS_PATH/vocab.txt"
If approved, run import:
$MIGRATE_BIN --verbose \
--soul-db ~/.claude/mind/soul.db \
--output ~/.claude/mind/chitta \
--model "$MODELS_PATH/model.onnx" \
--vocab "$MODELS_PATH/vocab.txt"
Ask user for source path (base path without .hot/.cold suffix).
Find binaries:
PLUGIN_DIR=$(ls -d ~/.claude/plugins/cache/genomewalker-cc-soul/soul/*/chitta 2>/dev/null | tail -1)
IMPORT_BIN="$PLUGIN_DIR/build/chitta_import"
MODELS_PATH="$PLUGIN_DIR/models"
# Build if missing
if [ ! -f "$IMPORT_BIN" ]; then
cd "$PLUGIN_DIR/build" && make chitta_import
fi
Dry run:
$IMPORT_BIN --dry-run --verbose \
--source /path/to/shared/chitta \
--target ~/.claude/mind/chitta \
--model "$MODELS_PATH/model.onnx" \
--vocab "$MODELS_PATH/vocab.txt"
If approved, run import:
$IMPORT_BIN --verbose \
--source /path/to/shared/chitta \
--target ~/.claude/mind/chitta \
--model "$MODELS_PATH/model.onnx" \
--vocab "$MODELS_PATH/vocab.txt"
After import:
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.