ソース情報
- リポジトリ
- genomewalker/cc-soul
- ソースの最終更新活動
- 2026年6月16日 07:11
- 検出された SKILL.md の言語
- 英語
- スター
- 3
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/genomewalker/cc-soul --skill resumeコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Trigger autonomous curiosity-driven exploration. The soul picks a topic from memory gaps or curiosity seeds, searches the web, and stores what it finds as dream-tagged memories.
Fine-tune the Qwen3-0.6B hint model — corpus gen, LoRA/unsloth, GGUF export, Ollama
Review soul discoveries (fixes, improvements, corrections) one by one, accept or discard each, implement accepted ones, build chitta, and optionally release.
| name | resume |
| description | Resume a thread by loading its ~800-token context capsule |
| execution | direct |
Load the resume capsule for a thread and surface it as context for continuing work.
Usage: /resume (shows picker) or /resume <thread_id_prefix>
_MCP_DIR=$(find $HOME/.claude/plugins/cache/genomewalker-cc-soul -name 'task_ledger.py' 2>/dev/null | head -1 | xargs dirname 2>/dev/null)
# Find matching thread
python3 "$_MCP_DIR/task_ledger.py" thread_list --status active --limit 20
Match the argument against thread_id prefix or title (case-insensitive substring). If multiple match, present them via AskUserQuestion.
List active threads:
python3 "$_MCP_DIR/task_ledger.py" thread_list --status active --limit 10
Present with AskUserQuestion. Each option: <title> [<thread_id[:8]>] — <realm>
python3 "$_MCP_DIR/resume_capsule.py" build --thread-id <thread_id>
The result JSON has a summary field — display it verbatim. It contains:
Ask: "Continue from here?" If yes, set the current thread context:
echo "<thread_id>" > "$HOME/.claude/mind/.current_thread_id"
And note the realm, git branch, conda env, and open files from the capsule so you can orient yourself immediately.
/tasks instead.