Add workflow automation scripts 🚀
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>
This commit is contained in:
47
README.md
47
README.md
@@ -14,9 +14,19 @@ ClaudeZone is CC's "brain" - a global memory system that works from ANY folder o
|
||||
ClaudeZone/
|
||||
├── CLAUDE.md # CC's personality & instructions
|
||||
├── memory.json # Main memory file (CC's quick reference brain!)
|
||||
├── update_memory.py # Helper script to update memory
|
||||
├── .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
|
||||
@@ -48,24 +58,39 @@ ClaudeZone/
|
||||
- ✅ **Project Context** - Deep notes per project
|
||||
- ✅ **User Preferences** - CC remembers your style and preferences
|
||||
|
||||
## 🛠️ Quick Commands
|
||||
## 🛠️ Workflow Scripts
|
||||
|
||||
### View Current Memory
|
||||
CC comes with powerful helper scripts to streamline your workflow!
|
||||
|
||||
### 📊 View Current Status
|
||||
```bash
|
||||
python update_memory.py
|
||||
python cc_status.py
|
||||
```
|
||||
Shows CC's memory, active projects, what's next, and recent sessions.
|
||||
|
||||
### Add a Learning
|
||||
### 💾 Save a Session
|
||||
```bash
|
||||
python update_memory.py learn "CC learned something new!"
|
||||
python save_session.py "Project Name" "What we built" "What's next"
|
||||
```
|
||||
Updates memory, creates session log, and optionally commits to git.
|
||||
|
||||
## 💡 Starting a New Project
|
||||
### 🚀 Start a New Project
|
||||
```bash
|
||||
python start_project.py "Project Name" "Project goal"
|
||||
```
|
||||
Creates project folder, copies template, and updates memory automatically.
|
||||
|
||||
1. Copy `projects/_template/` to `projects/your-project-name/`
|
||||
2. Fill out the project template
|
||||
3. Tell CC: "Hey CC, starting a new project called X!"
|
||||
4. CC will add it to her 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
|
||||
|
||||
|
Reference in New Issue
Block a user