Adds three new documentation pages for major shipped features that had no docs, and updates the platform controls index to reflect current state. ## New pages ### Extending Agents (`extending-agents.md`) Covers two workspace-level extension mechanisms: - **Skills** — `.agents/skills/<name>/SKILL.md` directory structure, frontmatter format, auto-discovery, `read_skill`/`read_skill_file` tools, size limits, lazy loading - **Workspace MCP tools** — `.mcp.json` format, stdio and HTTP transports, tool name prefixing, discovery lifecycle and caching ### MCP Servers (`platform-controls/mcp-servers.md`) Admin MCP server configuration: - CRUD via **Agents** > **Settings** > **MCP Servers** - Four auth modes: none, OAuth2 (with auto-discovery), API key, custom headers - Availability policies: `force_on`, `default_on`, `default_off` - Tool governance via allow/deny lists - Permission model and secret redaction ### Usage & Insights (`platform-controls/usage-insights.md`) Three admin dashboards: - **Usage limits** — spend caps with per-user and per-group overrides, priority hierarchy, enforcement behavior - **Cost tracking** — per-user rollup with token breakdowns, date filtering, per-model and per-chat drill-down ## Updated files - **`platform-controls/index.md`** — Moved MCP servers, usage limits, and analytics from "Where we are headed" into "What platform teams control today" with links to the new pages. Removed the tool customization roadmap section (now covered by MCP servers page). - **`manifest.json`** — Added nav entries for all three new pages. ## Resulting nav hierarchy ``` Coder Agents ├── Getting Started ├── Early Access ├── Architecture ├── Models ├── Platform Controls │ ├── Template Optimization │ ├── MCP Servers ← NEW │ └── Usage & Insights ← NEW ├── Extending Agents ← NEW └── Chats API ``` --- *PR generated with Coder Agents*
4.1 KiB
Extending Agents
Workspace templates can extend the agent with custom skills and MCP tools. These mechanisms let platform teams provide repository-specific instructions, domain expertise, and external tool integrations without modifying the agent itself.
Skills
Skills are structured, reusable instruction sets that the agent loads on demand. They live in the workspace filesystem and are discovered automatically when a chat attaches to a workspace.
How skills work
Place skill directories under .agents/skills/ relative to the workspace
working directory. Each directory contains a required SKILL.md file and
any supporting files the skill needs.
On the first turn of a workspace-attached chat, the agent scans
.agents/skills/ and builds an <available-skills> block in its system
prompt listing each skill's name and description. Only frontmatter is read
during discovery — the full skill content is loaded lazily when the agent
calls a tool.
Two tools are registered when skills are present:
| Tool | Parameters | Description |
|---|---|---|
read_skill |
name (string) |
Returns the SKILL.md body and a list of supporting files |
read_skill_file |
name (string), path (string) |
Returns the content of a supporting file |
Directory structure
.agents/skills/
├── deep-review/
│ ├── SKILL.md
│ └── roles/
│ ├── security-reviewer.md
│ └── concurrency-reviewer.md
├── pull-requests/
│ └── SKILL.md
└── refine-plan/
└── SKILL.md
SKILL.md format
Each SKILL.md starts with YAML frontmatter containing a name and an
optional description, followed by the full instructions in markdown:
---
name: deep-review
description: "Multi-reviewer code review with domain-specific reviewers"
---
# Deep Review
Instructions for the skill go here...
Naming and size constraints
- Names must be kebab-case (
^[a-z0-9]+(-[a-z0-9]+)*$) and match the directory name exactly. SKILL.mdhas a maximum size of 64 KB.- Supporting files have a maximum size of 512 KB. Files exceeding the limit are silently truncated.
Path safety
read_skill_file rejects absolute paths, paths containing .., and
references to hidden files. All paths are resolved relative to the skill
directory.
Workspace MCP tools
Workspace templates can expose custom
MCP tools by placing a
.mcp.json file in the workspace working directory. The agent discovers
these tools automatically when it connects to a workspace and registers
them alongside its built-in tools.
Configuration
Define MCP servers in .mcp.json at the workspace root. Each entry under
mcpServers describes a server. The transport type is inferred from
whether command or url is present, or you can set it explicitly with
type:
{
"mcpServers": {
"github": {
"command": "github-mcp-server",
"args": ["--token", "..."]
},
"my-api": {
"type": "http",
"url": "http://localhost:8080/mcp",
"headers": { "Authorization": "Bearer ..." }
}
}
}
Stdio transport — set command, and optionally args and env. The
agent spawns the process in the workspace.
HTTP transport — set url, and optionally headers. The agent connects
to the HTTP endpoint from the workspace.
How discovery works
The agent reads .mcp.json via the workspace agent connection on each chat
turn. Discovery uses a 5-second timeout. Servers that fail to
respond are skipped — partial success is acceptable. Empty results are not
cached because the MCP servers may still be starting.
Tool naming
Tool names are prefixed with the server name as serverName__toolName to
avoid collisions between servers and with built-in tools.
Timeouts
- Discovery: 5-second timeout.
- Tool calls: 60 seconds per invocation.