CC-thread
NewCC Explore — Cross-session knowledge management for Claude Code. Two Skills (/cc-save + /cc-load) that let AI remember every conversation's turning points and auto-restore context on next launch.
Summary
CC-thread enables cross-session knowledge management for Claude Code, allowing the AI to remember conversation turning points and automatically restore context on next launch.
- It consists of two skills (/cc-save and /cc-load) that help developers maintain continuity across multiple coding sessions without losing important context or decisions.
Install & Usage
mkdir -p .claude/skillsmkdir -p .claude/skills && curl -o .claude/skills/cc-thread.md https://raw.githubusercontent.com/yyyxxx-art/CC-thread/main/SKILL.md/cc-threadUse Cases
Usage Examples
/cc-save Summarize the current refactoring plan and key findings from the last 30 minutes.
/cc-load Restore the context from my previous session about the API integration.
Save this conversation as a turning point with the tag 'auth-flow' so I can load it later.
Security Audits
Frequently Asked Questions
What is CC-thread?
CC-thread enables cross-session knowledge management for Claude Code, allowing the AI to remember conversation turning points and automatically restore context on next launch. It consists of two skills (/cc-save and /cc-load) that help developers maintain continuity across multiple coding sessions without losing important context or decisions.
How to install CC-thread?
To install CC-thread: create the skills directory (mkdir -p .claude/skills), then run: mkdir -p .claude/skills && curl -o .claude/skills/cc-thread.md https://raw.githubusercontent.com/yyyxxx-art/CC-thread/main/SKILL.md. Finally, /cc-thread in Claude Code.
What is CC-thread best for?
CC-thread is a skill categorized under General. Created by yyyxxx-art.
What can I use CC-thread for?
CC-thread is useful for: Save the current conversation summary and key decisions before closing Claude Code to resume later.; Automatically load previous session context when starting a new Claude Code instance.; Store turning points in a long-running debugging session to avoid repeating analysis.; Share context between different Claude Code sessions working on the same project.; Document design decisions made during a conversation for future reference.; Restore complex multi-step refactoring plans after an unexpected session termination..