用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/genomewalker/cc-soul --skill resume命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
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.
基于 SOC 职业分类
正在显示 SKILL.md
| 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.