Persistent workflow continuity for AI-assisted software development.
EverBrain preserves your development context across AI sessions, agent switches, and IDE restarts.
This is the initial phase focusing on local-first SQLite storage, CLI scaffolding, and structured project memory.
# Install in development mode
pip install -e ".[dev]"
# Initialize EverBrain in your project
eb init
# (Coming in Phase 2: eb start, eb status, eb summary, etc.)src/everbrain/
├── cli/ # Typer CLI command groups
├── core/ # Business logic and state management
├── models/ # Pydantic schemas and validation
├── storage/ # SQLite database layer
├── git/ # Git integration
└── utils/ # Console, I/O, helpers
- Architecture Overview (Coming soon)
- Development Guide (Coming soon)
Phase 1 Progress:
- Project scaffolding
- Database foundation (SQLite)
- Configuration models (Pydantic)
- eb init command
- Session/task tracking
- Handoff generation (Phase 2+)
- Git integration (Phase 2+)