Skip to main content

Your Overrides on the Operating Manual

Located at brain/prefrontal/agents.md, this file holds your rules for how the agent should approach tasks, use tools, and follow procedures. It sits on top of the shipped operating contract and wins on any conflict — this is the file to edit when you want to change how Wolffish works.

Two Files, One Manual

The prefrontal reads two files side by side on every turn: Don’t edit agents.core.md — your changes are replaced on the next launch. Anything you want to stick belongs in agents.md.

What to Include

  • Tool usage rules — When to use which tools, in what order
  • Procedures — Step-by-step workflows for common tasks
  • Constraints — Things the agent should never do
  • Decision frameworks — How to choose between approaches
  • Overrides — Any core-contract behavior you want changed (e.g. “don’t send me files I didn’t ask for as attachments”)

Example

How It’s Used

Both files are read into the <prefrontal> section of the system prompt on every message, alongside the learned-preferences digest. The whole section stays small by design — the system prompt carries the operating essentials, not manuals, so every line you add here is read on every single turn. Keep it tight. This is distinct from soul.md (personality) and SKILL.md files (capability-specific instructions). agents.md covers cross-cutting concerns that apply regardless of which capability is being used.
If you find yourself repeating instructions to Wolffish across conversations, that instruction probably belongs in agents.md.