소스 정보
- 저장소
- genomewalker/cc-soul
- 최근 소스 활동
- 2026년 6월 16일 07:11
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/genomewalker/cc-soul --skill tasks명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | tasks |
| description | Browse and resume tasks, threads, and background jobs across sessions |
| execution | direct |
Interactive task browser. Shows active threads, pending inbox items, and running jobs across all sessions. Also supports registering new tasks.
Run this Python snippet to gather data:
import subprocess, json, os
mcp_dir = os.path.expanduser("~/.claude/plugins/cache/genomewalker-cc-soul/cc-soul/$(cat ~/.claude/plugins/cache/genomewalker-cc-soul/cc-soul/.version 2>/dev/null || echo 'latest')/chitta-mcp")
# Fallback: find it relative to the skills dir
import pathlib
skill_file = pathlib.Path(__file__) if '__file__' in dir() else pathlib.Path('.')
Actually, use the Bash tool to gather the data, then use AskUserQuestion.
_BASE="$HOME/.claude/plugins/cache/genomewalker-cc-soul/cc-soul"
_VER="$(cat $HOME/.claude/plugins/cache/genomewalker-cc-soul/.version 2>/dev/null || ls -v "$_BASE" | tail -1)"
_MCP_DIR="$_BASE/$_VER/chitta-mcp"
# Active threads
python3 "$_MCP_DIR/task_ledger.py" thread_list --status active --limit 10
# Pending inbox
python3 "$_MCP_DIR/task_ledger.py" inbox_list --state pending --limit 20
Build options from threads + inbox items. Each option label should be:
[thread] <title> (last active: <relative time>)✓ <digest[:80]>✗ <digest[:80]>Always include these fixed options at the bottom:
Thread selected: Run resume capsule and display it:
python3 "$_MCP_DIR/resume_capsule.py" build --thread-id <thread_id>
Parse the summary field and present it as context. Then ask the user if they want to continue that thread or just view it.
Inbox item selected: Acknowledge it:
python3 "$_MCP_DIR/task_ledger.py" inbox_ack --item-id <item_id> --state acked
Then summarize what happened.
"Dismiss all inbox": Ack all pending items for the realm.
"Add new task":
~/.claude/bin/chitta realm_detect 2>/dev/null || echo "global"
python3 "$_MCP_DIR/task_ledger.py" thread_create --title "<title>" --realm "<realm>"
python3 "$_MCP_DIR/task_ledger.py" inbox_push \
--thread-id <thread_id> \
--event-type note \
--digest "<description[:120]>" \
--target-realm "<realm>"
/tasks next session.task_ledger.py under $HOME/.claude/plugins/cache/genomewalker-cc-soul/.~/.claude/task-ledger.db), the ledger will be empty — that's fine, just say "No tracked tasks yet."realm_detect via chitta if REALM is not set: chitta realm_detect