feat: Move specs and memory to git for multi-developer collaboration (v1.0.6)

BREAKING CHANGE: Specs, plans, and memory moved from .auto-build-data/ (gitignored)
to .auto-build/ (git-tracked) to enable team collaboration.

Changes:
- Specs/plans now in .auto-build/specs/ (shared with team)
- Memory (patterns, gotchas) now in .auto-build/memory/ (shared with team)
- .auto-build-data/ now only contains local data (worktrees, cache)
- Added /ab:migrate command for existing projects
- Removed symlinks from worktree-create.sh (no longer needed)

Benefits:
- Any developer can continue a plan started by another
- Patterns and gotchas shared across team
- Works on Windows/Linux/Mac without symlinks
- Full version history in git

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-22 17:44:52 +02:00
parent f324b43a85
commit 940c6a9f58
15 changed files with 298 additions and 97 deletions

View File

@@ -9,11 +9,11 @@ Display the current status of Auto-Build, including active specs and builds.
## Workflow
1. **Check Data Directory**
- Verify `.auto-build-data/` exists
- If not, create it: `mkdir -p .auto-build-data/specs .auto-build-data/memory`
- Verify `.auto-build/` exists
- If not, create it: `mkdir -p .auto-build/specs .auto-build/memory`
2. **List Active Specs**
- Read all directories in `.auto-build-data/specs/`
- Read all directories in `.auto-build/specs/`
- For each spec, read `status.json` to get current state
- Display in table format:
```
@@ -28,7 +28,7 @@ Display the current status of Auto-Build, including active specs and builds.
- Display active worktrees with their paths
4. **Memory Summary**
- Count entries in `patterns.json` and `gotchas.json`
- Count entries in `.auto-build/memory/patterns.json` and `.auto-build/memory/gotchas.json`
- Show last update timestamp
## Status States