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>
69 lines
2.3 KiB
Markdown
69 lines
2.3 KiB
Markdown
# Changelog
|
|
|
|
All notable changes to Auto-Build plugin.
|
|
|
|
## [1.0.6] - 2024-12-22
|
|
|
|
### Changed (BREAKING)
|
|
- **Specs and plans moved to `.auto-build/`** (git-tracked) for multi-developer collaboration
|
|
- **Memory moved to `.auto-build/memory/`** (git-tracked) so team shares learned patterns
|
|
- `.auto-build-data/` now only contains local data (worktrees, cache)
|
|
|
|
### Added
|
|
- New `/ab:migrate` command for existing projects to migrate from old structure
|
|
- Documentation updates explaining git-tracked vs local data separation
|
|
|
|
### Removed
|
|
- Symlinks in worktree-create.sh - no longer needed since data is in git
|
|
- Old `.auto-build-data/specs/` and `.auto-build-data/memory/` paths
|
|
|
|
### Benefits
|
|
- 🤝 Multi-developer collaboration - any developer can continue a plan
|
|
- 🧠 Shared learning - patterns and gotchas available to entire team
|
|
- 🌍 Cross-platform - works on Windows/Linux/Mac without symlinks
|
|
- 📜 Version history - specs/plans/memory changes visible in git
|
|
|
|
## [1.0.5] - 2024-12-22
|
|
|
|
### Fixed
|
|
- Worktree now creates symlinks to `.auto-build-data/` and `.claude/rules/` from main repo
|
|
- This ensures specs, plans, status, and memory are shared across worktrees
|
|
- `/ab:build` in worktree will correctly detect `PLANNING_COMPLETE` status and continue
|
|
|
|
### Improved
|
|
- Clarified in build.md that `PLANNING_COMPLETE` skips planning phase
|
|
|
|
## [1.0.4] - 2024-12-22
|
|
|
|
### Improved
|
|
- Clear "ACTION REQUIRED" message after worktree creation
|
|
- Explicit next steps showing user must open new VSCode window in worktree
|
|
- Explains why switching is necessary (Claude Code sessions are directory-bound)
|
|
|
|
## [1.0.3] - 2024-12-22
|
|
|
|
### Fixed
|
|
- Worktree scripts now use `$(pwd)` for project root instead of calculating from script location
|
|
- Scripts work correctly when called via `${CLAUDE_PLUGIN_ROOT}/scripts/`
|
|
|
|
## [1.0.2] - 2024-12-21
|
|
|
|
### Added
|
|
- CLAUDE.md file for development guidance
|
|
|
|
## [1.0.1] - 2024-12-21
|
|
|
|
### Fixed
|
|
- hooks.json format corrected (use object instead of array)
|
|
|
|
## [1.0.0] - 2024-12-20
|
|
|
|
### Added
|
|
- Initial release
|
|
- 8 commands: spec, build, worktree, qa-review, memory-save, memory-search, status, help
|
|
- 5 agents: spec-writer, planner, coder, qa-reviewer, qa-fixer
|
|
- Git worktree isolation support
|
|
- Bidirectional memory system (JSON + Markdown)
|
|
- CLAUDE.md integration with context-aware agents
|
|
- Post-install hook for automatic setup
|