project-brain
Installation
SKILL.md
Project Brain
Assets
This skill uses a modular assets architecture. Detailed workflows, helpers, and templates are in the assets/ directory:
- assets/modes/ — LOAD and SAVE mode workflows
- assets/helpers/ — Brain directory config resolution, incremental merge algorithm
- assets/templates/ — Standard brain document format
See assets/README.md for full directory documentation.
Purpose
Project Brain is session memory for AI agents. It bridges the gap between sessions so any agent can pick up exactly where the last one left off — and save what it learned before shutting down.
Design principle: Agents behave like professionals with a notebook. Open the notebook before work (LOAD), write a summary when done (SAVE), and the notebook persists between sessions. Memory is a natural part of the workflow, not an extra step.
Related skills