37 lines
786 B
Markdown
37 lines
786 B
Markdown
# claude-meta
|
|
|
|
Centralized Claude Code configuration. Portable via git.
|
|
|
|
## Quick Start
|
|
|
|
```powershell
|
|
git clone <repo-url> C:\work\claude-meta
|
|
cd C:\work\claude-meta
|
|
.\scripts\backup.ps1
|
|
.\scripts\install.ps1
|
|
```
|
|
|
|
## Structure
|
|
|
|
- `home-claude/` — global config (symlinked to `~/.claude/`)
|
|
- `templates/` — project bootstrap templates
|
|
- `memory/` — portable knowledge base
|
|
- `scripts/` — install, backup, init-project
|
|
- `docs/FRAMEWORK.md` — full documentation
|
|
|
|
## New Project
|
|
|
|
```powershell
|
|
.\scripts\init-project.ps1 C:\work\my-project "My Project"
|
|
```
|
|
|
|
## After Changes
|
|
|
|
```powershell
|
|
cd C:\work\claude-meta
|
|
git add -A && git commit -m "update: description"
|
|
git push
|
|
```
|
|
|
|
On another machine: `git pull` (symlinks already point to repo).
|