Workspace
The workspace is where the agent stores its instructions, personality, memory, and custom skills. By default it lives at ~/.kyber/workspace/.
Structure
~/.kyber/workspace/
├── AGENTS.md # Agent instructions and guidelines
├── SOUL.md # Personality and values
├── USER.md # User preferences
├── TOOLS.md # Custom tool instructions (optional)
├── IDENTITY.md # Identity overrides (optional)
├── skills/ # Custom skills
│ └── my-skill/
│ └── SKILL.md
└── memory/
├── MEMORY.md # Persistent long-term memory
└── 2025-02-06.md # Daily notes (auto-created)Bootstrap files
These files are loaded into the system prompt on every message:
| File | Purpose |
|---|---|
AGENTS.md | Core instructions — how the agent should behave |
SOUL.md | Personality traits and values |
USER.md | Information about you (timezone, preferences, etc.) |
TOOLS.md | Additional tool usage instructions (optional) |
IDENTITY.md | Override the default identity (optional) |
Edit these to customize how your bot behaves. The agent reads them fresh on every message, so changes take effect immediately.
Memory
The agent writes important information to memory/MEMORY.md for long-term persistence. It can also create daily note files like memory/2025-02-06.md.
Memory is included in the system prompt, so the agent remembers things across conversations.
Custom workspace path
Change the workspace location in config:
{
"agents": {
"defaults": {
"workspace": "/path/to/my/workspace"
}
}
}