> ## Documentation Index
> Fetch the complete documentation index at: https://docs.miteos.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Core Concepts

> Understand the building blocks of the Miteos platform.

# Core Concepts

## Tasks

A **task** is a high-level instruction you give to Miteos. The platform decomposes it into subtasks and assigns agents.

```
"Research competitor pricing and build a comparison dashboard"
→ Subtask 1: Research (researcher agent)
→ Subtask 2: Analyze (analyst agent)
→ Subtask 3: Build (builder agent)
```

## Agents

Agents are specialized AI workers. Each has a role, tools, and execution strategy:

| Type       | Role                            | Tools                       |
| ---------- | ------------------------------- | --------------------------- |
| Researcher | Find information from the web   | Browser, search, extraction |
| Builder    | Create code, files, dashboards  | Code execution, file system |
| Analyst    | Process data, generate insights | Code execution, charts      |
| Trader     | Execute market strategies       | Trading engine, broker APIs |
| Email      | Manage inbox and outreach       | Email APIs, drafting        |
| Social     | Create and publish content      | Platform APIs, scheduling   |

## War Room

The War Room is the real-time command center. It shows:

* **Agent Fleet Rail** — All active agents with status, progress, tools in use
* **Workspace** — Browser viewport, code editor, files, canvas, terminal
* **Timeline** — Chronological log of every action across all agents
* **Deliverables** — Completed outputs ready for download or deployment

## Autonomy Dial

The autonomy dial (0-100) controls how much independence agents have:

* **0-20** — Copilot mode: agent suggests, you confirm every action
* **20-50** — Supervised: agent acts on low-risk, asks for high-risk
* **50-80** — Autonomous: agent handles most actions, asks for critical ones
* **80-100** — Full auto: agent executes everything, notifies after completion

## Skills

Skills are reusable patterns extracted from successful task executions. When agents complete tasks well, the platform can compile the action sequence into a named skill that runs faster next time.

## MCP Integrations

Miteos uses the **Model Context Protocol (MCP)** to connect external services as agent tools. When you connect Gmail, the agent gains tools like `read_inbox`, `send_email`, `search`. Each integration runs as an isolated container.

## Workspaces

Workspaces are isolated environments where agents work. Each workspace has:

* File storage (code, reports, data)
* Browser sessions
* Agent memory (context that persists across tasks)
* Deliverables output

## Memory

Three-layer memory system:

1. **Working** — Current task context (cleared after task)
2. **Session** — Per-workspace context (persists across tasks in same workspace)
3. **Persistent** — Per-user long-term memory (learned preferences, patterns)
