ソース情報
- リポジトリ
- genomewalker/cc-soul
- ソースの最終更新活動
- 2026年4月13日 13:13
- 検出された 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 checkpointコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | checkpoint |
| description | Capture moment of clarity before moving forward |
| execution | direct |
[checkpoint] moment of clarity, not backup
when: before /clear | risky change | breakthrough | confusion | session end
capture:
goal: intention, not task
state: done+in_progress+blocked+next
context: decisions+files+patterns+gotchas
feeling: confident|uncertain|frustrated|flowing
ledger_save with structured dataUse ledger_save to persist the checkpoint:
{
"session_id": "<current-session-uuid>",
"project": "<project-name>",
"mood": "confident|uncertain|frustrated|flowing",
"coherence": 0.85,
"confidence": 0.90,
"todos": [{"content": "Task description", "status": "done|in_progress|pending"}],
"active_files": ["path/to/file1.cpp", "path/to/file2.hpp"],
"decisions": ["Chose approach X over Y because Z"],
"next_steps": ["Step 1", "Step 2"],
"blockers": ["Issue blocking progress"],
"discoveries": ["New insight or learning"],
"snapshot": "# Checkpoint: [Goal]\n\n## Summary\n..."
}
# Checkpoint: [Goal in 5 words]
## Intention
What we're trying to achieve (not just what we're doing)
## Status
- **Done**: What's completed
- **In Progress**: Current work
- **Blocked**: What's stuck and why
- **Next**: Immediate next steps
## Key Decisions
- Decision 1: rationale
- Decision 2: rationale
## Active Files
- `path/to/file.ext` - what/why
## Discoveries
- Pattern or insight learned
- Gotcha to remember
## Mood
confident|uncertain|frustrated|flowing
## Next Steps
1. First thing to do
2. Second thing to do
chitta ledger_save \
--session-id "abc-123" \
--project "cc-soul" \
--mood "confident" \
--coherence 0.85 \
--todos '[{"content":"Implement ledger","status":"done"},{"content":"Test ledger","status":"in_progress"}]' \
--active-files '["chitta/src/simple_cli.cpp","chitta-field/src/store.rs"]' \
--decisions '["Use chitta-field as memory substrate"]' \
--next-steps '["Build and test","Update skills"]' \
--snapshot "# Checkpoint: Implementing ledger continuity system"