What problem does it solve?
The Automaker memory system persists learnings across feature implementations so AI agents benefit from past experience. Memory files live at .automaker/memory/ within each project. Each file uses YAML frontmatter for metadata and a markdown body for the actual learnings, and the system smart-selects the most relevant memories for prompts based on a scoring algorithm, injecting them under a # Project Memory heading.
Core Features & Use Cases
- Persist and organize learnings across features under .automaker/memory/*.md with per-file frontmatter.
- Load and score memories using a defined scoring algorithm to inject the most relevant memories into agent prompts.
- Support structured management via helper functions like appendLearning and incrementUsageStat to evolve learnings over time.
Quick Start
Create the .automaker/memory directory in your project, add a _index.md overview, and begin recording learnings with YAML frontmatter to bootstrap memory management.