You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> A ready-to-run example is available [here](#ready-to-run-example)!
9
+
8
10
File-based agents let you define specialized sub-agents using Markdown files. Each file declares the agent's name, description, tools, and system prompt — the same things you'd pass to `register_agent()` in code, but without writing any Python.
9
11
10
12
This is the fastest way to create reusable, domain-specific agents that can be invoked via [delegation](/sdk/guides/agent-delegation).
@@ -48,7 +50,7 @@ The YAML frontmatter configures the agent. The Markdown body becomes the agent's
48
50
|`description`| No |`""`| What this agent does. Shown to the orchestrator |
49
51
|`tools`| No |`[]`| List of tools the agent can use |
50
52
|`model`| No |`"inherit"`| LLM model (`"inherit"` uses the parent agent's model) |
51
-
|`color`| No |`None`|Display color for the agent |
53
+
|`color`| No |`None`|[Rich color name](https://rich.readthedocs.io/en/stable/appendix/colors.html) (e.g., `"blue"`, `"green"`) used by visualizers to style this agent's output in terminal panels|
52
54
53
55
### `<example>` Tags
54
56
@@ -70,9 +72,9 @@ Place agent files in these directories, scanned in **priority order** (first mat
0 commit comments