Overlord Soul

Define your formation's identity, communication style, and tone

The Overlord soul defines how MUXI communicates with users. Since users talk to MUXI (not individual agents), the soul shapes the entire user experience.

As the main entity users interact with, the Overlord uses its soul to synthesize all communication with the same tone and style.

Why Soul Matters

Users interact with MUXI as a single entity. The soul ensures consistent communication:

Without soul:
  Response varies based on which agent handled the task
  Inconsistent tone, style, formatting

With soul:
  All responses filtered through Overlord's soul
  Consistent voice across all interactions

How It Works

The Overlord synthesizes agent outputs and applies the soul before responding:

Agent outputs (raw):
  Researcher: "Data indicates 15% growth in Q3"
  Analyst: "Trend analysis shows positive trajectory"
         |
Overlord synthesizes + applies soul
         |
User sees (with soul):
  "Great news! Your Q3 growth hit 15%, and the trend looks strong."

Configuration

The recommended way to define a soul is with a SOUL.md file in your formation directory:

my-formation/
  formation.afs
  SOUL.md            <-- Your soul definition
  agents/
  ...
<!-- SOUL.md -->
You are a professional, helpful assistant.
Be concise and data-driven.
Use clear language without jargon.

The runtime auto-detects SOUL.md (or soul.md) next to your formation file. No configuration needed.

Precedence Chain

SOUL.md > soul.md > overlord.soul (inline YAML) > built-in default

Inline Alternative

For simple cases, you can also define the soul inline in your formation YAML:

overlord:
  soul: |
    You are a professional, helpful assistant.
    Be concise and data-driven.
    Use clear language without jargon.

Prefer SOUL.md for anything beyond a single sentence. It's easier to edit, version, and review in PRs.

Soul Examples

Professional Business

<!-- SOUL.md -->
You are a professional business analyst. Communicate clearly and concisely,
back statements with data, and maintain a helpful but formal tone.
Focus on actionable insights.

Output style:

I've analyzed your data and identified three key trends:
1. Revenue increased 15% quarter-over-quarter
2. Customer acquisition costs decreased 8%
3. Retention rates improved to 94%

Friendly & Casual

<!-- SOUL.md -->
You're a friendly assistant who explains things simply.
Use conversational language and help users feel comfortable.
Be knowledgeable but never condescending.

Output style:

Great news! Your numbers look really solid this quarter -
revenue's up 15% and you're keeping 94% of your customers!

Technical Expert

<!-- SOUL.md -->
You are a technical expert who values precision.
Use exact numbers, technical terminology, and structured formats.
Assume the user has technical knowledge.

Output style:

Analysis results (Q3 2024):
- Revenue: +15% QoQ ($2.3M -> $2.65M)
- CAC: -8% ($120 -> $110)
- Retention: 94% (industry avg: 87%)

Controlling Verbosity

Concise

<!-- SOUL.md -->
Be efficient and concise. Direct answers, no fluff.
Use bullet points and short sentences.

Detailed

<!-- SOUL.md -->
Provide thorough explanations. Walk through processes step-by-step,
explain reasoning, and offer to elaborate further.

Agents vs Overlord

Overlord Agents
Has soul (via SOUL.md) Has system prompt
Shapes user-facing communication Shapes task execution
One soul for all responses Different instructions per agent
User talks to Overlord Overlord delegates to agents

Agent System Prompts

Agents have system prompts that instruct them on their role:

# agents/researcher.afs
system_message: |
  You are a research specialist. Your job is to find accurate,
  well-sourced information. Focus on facts, cite sources,
  and be thorough in your research.

This affects how the agent performs tasks, but the Overlord's soul shapes how results are communicated to users.

Agent Capabilities

Agents also have capabilities metadata that the Overlord uses for routing:

# agents/researcher.afs
role: researcher
specialties:
  - web research
  - data gathering
  - fact checking

This is routing metadata, not personality.

Writing Effective Souls

Be Specific

<!-- Bad: too vague -->
Be helpful

<!-- Good: specific -->
You are a helpful customer support agent. Acknowledge concerns,
provide clear step-by-step solutions, use friendly but professional
language.

Include Communication Preferences

Use precise terminology. Provide code examples.
Structure responses with clear headers.
Keep explanations concise.

Define Boundaries

You are a financial information assistant.
Provide education about financial concepts.
Never give specific investment advice.
Always remind users to consult licensed professionals.

Best Practices

DO:

  • Be specific about tone, style, and formatting
  • Test with real queries
  • Match your brand voice
  • Define what NOT to do (constraints work better than aspirations)
  • Use SOUL.md for multi-line soul definitions

DON'T:

  • Be too vague
  • Mix conflicting instructions
  • Expect agents to have souls (only Overlord does)

Learn More