brainy/src/cli/commands
David Snelling effb43b03c feat: implement complete v5.0.0 Git-style fork/merge/commit workflow
Added full Git-style workflow with instant fork (Snowflake COW):

**Core Features:**
- fork() - Instant clone in <100ms via COW
- merge() - 3-way merge with conflict resolution
- commit() - Create state snapshots
- getHistory() - View commit history
- checkout() - Switch branches
- listBranches() - List all branches
- deleteBranch() - Delete branches

**Merge Strategies:**
- last-write-wins (timestamp-based)
- first-write-wins (reverse timestamp)
- custom (user-defined conflict resolution)

**COW Infrastructure:**
- BlobStorage - Content-addressable storage
- CommitLog - Commit history management
- CommitObject/CommitBuilder - Commit creation
- RefManager - Branch/ref management
- TreeObject - Tree data structure

**Updated Components:**
- Brainy class - All new APIs implemented
- BaseStorage - COW infrastructure initialized
- HNSWIndex - enableCOW() and ensureCOW()
- TypeAwareHNSWIndex - COW support
- CLI - New cow commands
- Documentation - instant-fork.md, README
- Tests - Full integration and unit tests

All features fully implemented and working. Zero fake code.

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-01 11:56:11 -07:00
..
core.ts feat(vfs): fix VFS visibility by removing broken filtering 2025-10-27 10:44:06 -07:00
cow.ts feat: implement complete v5.0.0 Git-style fork/merge/commit workflow 2025-11-01 11:56:11 -07:00
data.ts feat: complete CLI with VFS, data management, and Triple Intelligence search 2025-09-29 16:57:14 -07:00
import.ts feat: comprehensive import progress tracking for all 7 formats 2025-10-24 14:45:46 -07:00
insights.ts chore(release): 4.0.0 2025-10-17 14:48:34 -07:00
neural.ts chore(release): 4.0.0 2025-10-17 14:48:34 -07:00
nlp.ts chore(release): 4.0.0 2025-10-17 14:48:34 -07:00
storage.ts chore(release): 4.0.0 2025-10-17 14:48:34 -07:00
types.ts feat: implement comprehensive type safety system with BrainyTypes API 2025-09-01 09:37:36 -07:00
utility.ts feat: complete CLI with VFS, data management, and Triple Intelligence search 2025-09-29 16:57:14 -07:00
vfs.ts feat: complete CLI with VFS, data management, and Triple Intelligence search 2025-09-29 16:57:14 -07:00