From f22450f29bb6d9ab4333990c4295b280a49c12d5 Mon Sep 17 00:00:00 2001 From: Matt Vollmer Date: Tue, 10 Mar 2026 11:41:21 -0400 Subject: [PATCH] docs: add early access state to agent child pages and fix video URL (#22908) ## Changes - Add `"state": ["early access"]` to all child pages under Coder Agents in `docs/manifest.json` (Architecture, Models, Platform Controls, Early Access). - Point the Coder Agents video `` directly at `raw.githubusercontent.com` instead of the `github.com/blob/` URL with `?raw=true`. --- docs/ai-coder/agents/index.md | 2 +- docs/manifest.json | 12 ++++++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/docs/ai-coder/agents/index.md b/docs/ai-coder/agents/index.md index eb83f72a0a..0c0048de1f 100644 --- a/docs/ai-coder/agents/index.md +++ b/docs/ai-coder/agents/index.md @@ -8,7 +8,7 @@ agent that runs the agent loop directly within the Coder control plane. No specialized software, API keys, or network access is required inside your workspace. The only requirement is network access between the control plane and external LLM providers. diff --git a/docs/manifest.json b/docs/manifest.json index 0f0e6b2798..3921a96789 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -1196,22 +1196,26 @@ { "title": "Architecture", "description": "How the agent in the control plane communicates with workspaces", - "path": "./ai-coder/agents/architecture.md" + "path": "./ai-coder/agents/architecture.md", + "state": ["early access"] }, { "title": "Models", "description": "Configure LLM providers and models for Coder Agents", - "path": "./ai-coder/agents/models.md" + "path": "./ai-coder/agents/models.md", + "state": ["early access"] }, { "title": "Platform Controls", "description": "How platform teams control agent behavior, models, and policies", - "path": "./ai-coder/agents/platform-controls.md" + "path": "./ai-coder/agents/platform-controls.md", + "state": ["early access"] }, { "title": "Early Access", "description": "About the Coder Agents Early Access program", - "path": "./ai-coder/agents/early-access.md" + "path": "./ai-coder/agents/early-access.md", + "state": ["early access"] } ] }