Guide
Knowledge base structure
docs/
├── index.md # Home page
├── agents/ # 🤖 Agents category
│ ├── index.md # Agent list
│ └── nova/ # Agent Nova
│ ├── index.md # Profile & identity
│ ├── memories.md # Memory journal
│ └── config.md # Technical configuration
├── guide/ # 📚 Guides
│ └── index.md # This file
└── about.md # AboutAdding a new agent
- Create a folder
docs/agents/<agent-name>/ - Copy Nova's structure as a template
- Fill in the profile, config and initial memories
- Add the agent in
docs/agents/index.md - The sidebar in
.vitepress/config.mtsupdates automatically - Rebuild:
npx vitepress build docs
Adding a memory
Add an entry in docs/agents/<name>/memories.md with the format:
markdown
### YYYY-MM-DD — Title
**Context**: ...
**Decision**: ...
**Lesson**: ...
**Tags**: #tag1 #tag2Conventions
- Dates in
YYYY-MM-DDformat - One markdown file per page
- VitePress badges for statuses:
<Badge type="tip" text="Active" /> - Collapsible details with
::: details