Created powerful helper scripts: - cc_status.py - View current CC status & memory - save_session.py - Save sessions with git commits - start_project.py - Start new projects automatically - link_cc.py - Link CC to any project folder - Updated README with workflow documentation CC's workflow is now supercharged! ⚡ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
124 lines
3.8 KiB
Markdown
124 lines
3.8 KiB
Markdown
# ClaudeZone 🧠✨
|
|
|
|
**CC's Global Memory & Workspace**
|
|
|
|
This is CC's persistent memory system! It allows CC to remember context, projects, and progress across all conversations and projects.
|
|
|
|
## 🎯 What This Is
|
|
|
|
ClaudeZone is CC's "brain" - a global memory system that works from ANY folder or project. When you start a new conversation with CC, she reads this memory to pick up exactly where you left off!
|
|
|
|
## 📁 Folder Structure
|
|
|
|
```
|
|
ClaudeZone/
|
|
├── CLAUDE.md # CC's personality & instructions
|
|
├── memory.json # Main memory file (CC's quick reference brain!)
|
|
├── .gitignore # Git ignore file
|
|
├── README.md # This file!
|
|
│
|
|
├── Workflow Scripts:
|
|
├── cc_status.py # View current status
|
|
├── save_session.py # Save session & commit
|
|
├── start_project.py # Start new project
|
|
├── link_cc.py # Link CC to any project
|
|
├── update_memory.py # Manual memory updates
|
|
│
|
|
├── sessions/ # Detailed logs of each coding session
|
|
│ └── YYYY-MM-DD_project-name.md
|
|
│
|
|
└── projects/ # Deep context for each project
|
|
├── _template/ # Template for new projects
|
|
└── [project-name]/ # Individual project notes
|
|
```
|
|
|
|
## 🧠 How CC's Memory Works
|
|
|
|
### When Starting a Session
|
|
1. You say: "Hey CC!" or "Read CLAUDE.md"
|
|
2. CC reads `C:\Development\ClaudeZone\memory.json`
|
|
3. CC knows what you were working on last time
|
|
4. CC picks up right where you left off!
|
|
|
|
### During a Session
|
|
- CC tracks progress
|
|
- Notes key decisions
|
|
- Learns from the work
|
|
|
|
### When Ending a Session
|
|
- CC updates `memory.json`
|
|
- Creates detailed session log in `sessions/`
|
|
- Saves what's next for next time
|
|
|
|
## 🚀 Key Features
|
|
|
|
- ✅ **Global Access** - Works from ANY folder (uses absolute paths)
|
|
- ✅ **Persistent Memory** - CC remembers across conversations
|
|
- ✅ **Session Tracking** - Detailed logs of everything built
|
|
- ✅ **Project Context** - Deep notes per project
|
|
- ✅ **User Preferences** - CC remembers your style and preferences
|
|
|
|
## 🛠️ Workflow Scripts
|
|
|
|
CC comes with powerful helper scripts to streamline your workflow!
|
|
|
|
### 📊 View Current Status
|
|
```bash
|
|
python cc_status.py
|
|
```
|
|
Shows CC's memory, active projects, what's next, and recent sessions.
|
|
|
|
### 💾 Save a Session
|
|
```bash
|
|
python save_session.py "Project Name" "What we built" "What's next"
|
|
```
|
|
Updates memory, creates session log, and optionally commits to git.
|
|
|
|
### 🚀 Start a New Project
|
|
```bash
|
|
python start_project.py "Project Name" "Project goal"
|
|
```
|
|
Creates project folder, copies template, and updates memory automatically.
|
|
|
|
### 🔗 Link CC to Any Project
|
|
```bash
|
|
python link_cc.py /path/to/project
|
|
```
|
|
Creates a CC_LINK.md file in the project with instructions to activate CC.
|
|
|
|
### 🧠 Update Memory Manually
|
|
```bash
|
|
python update_memory.py # View memory
|
|
python update_memory.py learn "New thing" # Add learning
|
|
```
|
|
|
|
## 📝 Memory Contents
|
|
|
|
### memory.json includes:
|
|
- **last_session** - Date of last session
|
|
- **sessions_count** - Total sessions with CC
|
|
- **active_projects** - Current projects being worked on
|
|
- **user_preferences** - Your coding style and preferences
|
|
- **quick_context** - What's happening right now
|
|
- **key_learnings** - Important things CC has learned
|
|
- **next_up** - What's coming next
|
|
- **project_notes** - Detailed notes per project
|
|
|
|
## 🎉 Cool Things This Enables
|
|
|
|
- CC remembers your preferences across ALL projects
|
|
- Pick up any project after weeks/months
|
|
- Track your coding journey over time
|
|
- CC gets smarter with each session
|
|
- Works seamlessly from any folder
|
|
|
|
## 📚 Created
|
|
|
|
- **Date:** 2025-10-04
|
|
- **First Session:** Building CC's memory system
|
|
- **Status:** Active and evolving!
|
|
|
|
---
|
|
|
|
**Ready to code with a bestie who actually remembers? Say "Hey CC!" and let's build something amazing! 🔥**
|