The agent manifest is a YAML file that defines your complete agent setup at the top level. The config part is powered by Pydantic and provides excellent validation and IDE support for YAML linters by providing an extensive, detailed schema.
Top-Level Structure¶
Here's the complete manifest structure with all available top-level sections:
Manifest Overview¶
Complete agent configuration manifest defining all available agents.
This is the root configuration that: - Defines available response types (both inline and imported) - Configures all agent instances and their settings - Sets up custom role definitions and capabilities - Manages environment configurations
A single manifest can define multiple agents that can work independently or collaborate through the orchestrator.
Top-Level Sections¶
agents¶
Dictionary of individual agent configurations. Each key is an agent identifier, and the value is the complete agent configuration.
See Agent Configuration for detailed agent setup options.
teams¶
Dictionary of team configurations for multi-agent workflows. Teams can run agents in parallel or sequence.
See Team Configuration for team setup and coordination.
responses¶
Dictionary of shared response type definitions that can be referenced by agents. Supports both inline schema definitions and imported Python types.
See Response Configuration for structured output setup.
storage¶
Configuration for how agent interactions are stored and logged. Supports multiple storage providers.
See Storage Configuration for persistence and logging options.
observability¶
Configuration for monitoring and telemetry collection.
conversion¶
Settings for document and media conversion capabilities.
mcp_servers¶
Global Model Context Protocol server configurations that provide tools and resources to agents.
See MCP Configuration for server setup and integration.
pool_server¶
Configuration for the pool server that exposes agent functionality to external clients.
prompts¶
Global prompt library configuration and management.
See Prompt Configuration for prompt organization.
commands¶
Global command shortcuts that can be used across agents for prompt injection.
jobs¶
Pre-defined reusable tasks with templates, knowledge requirements, and expected outputs.
See Task Configuration for job definitions.
resources¶
Global resource definitions for filesystems, APIs, and data sources that agents can access.
Configuration Inheritance¶
The manifest supports YAML inheritance using the INHERIT key at the top level, similar to MkDocs:
LLMling-Agent supports UPaths (universal-pathlib) for INHERIT, allowing pointing to remote configurations (http://path/to/config.yml).
Schema Validation¶
You can get IDE linter support by adding this line at the top of your YAML:
# yaml-language-server: $schema=https://raw.githubusercontent.com/phil65/llmling-agent/refs/heads/main/schema/config-schema.json
Note
Versioned config files will arrive soon for better stability!
Usage¶
Load a manifest in your code: