Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 21 additions & 9 deletions .agents/skills/missing_docs/references/feature_surface_map.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,13 @@ CustomModelRouters -> src/content/docs/agent-platform/inference/model-choice.mdx
# Billing & Usage settings page (redesigned)
BillingAndUsagePageV2 -> src/content/docs/support-and-community/plans-and-billing/index.mdx

# Cloud agent runners (reusable compute configs). CloudRunners gates the
# `--runner` flag on `run-cloud`; CloudAgentRunners gates the `oz runner` CRUD
# commands and the runner dropdown in the orchestration card. Both are GA
# (default cargo features).
CloudRunners -> src/content/docs/platform/runners.mdx

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [IMPORTANT] src/content/docs/platform/runners.mdx is the target for these new mappings, but this PR does not add that page and it is absent from the checked-out docs repo; merging this before the runners page lands will leave map hygiene with missing-target findings. Add/merge the runners page first, or keep these entries gated until the target exists.

CloudAgentRunners -> src/content/docs/platform/runners.mdx

## CLI commands -> doc pages

# Top-level Oz CLI commands
Expand Down Expand Up @@ -257,15 +264,14 @@ oz provider -> gated:ProviderCommand
oz provider setup -> gated:ProviderCommand
oz provider list -> gated:ProviderCommand

# `oz runner` (manage cloud agent runners) is gated by CloudAgentRunnerCLICommands,
# which is non-GA (dogfood), so the command group is deferred via `gated:` — it
# auto-surfaces for docs when the flag goes GA. See "Public vs. private surfaces"
# in SKILL.md.
oz runner -> gated:CloudAgentRunnerCLICommands
oz runner list -> gated:CloudAgentRunnerCLICommands
oz runner create -> gated:CloudAgentRunnerCLICommands
oz runner update -> gated:CloudAgentRunnerCLICommands
oz runner delete -> gated:CloudAgentRunnerCLICommands
# `oz runner` (manage cloud agent runners) is GA (gated by CloudAgentRunners, a
# default cargo feature) and documented on the runners page. The old gating flag
# CloudAgentRunnerCLICommands was removed after the feature stabilized.
oz runner -> src/content/docs/platform/runners.mdx
oz runner list -> src/content/docs/platform/runners.mdx
oz runner create -> src/content/docs/platform/runners.mdx
oz runner update -> src/content/docs/platform/runners.mdx
oz runner delete -> src/content/docs/platform/runners.mdx

# Internal/hidden command — not a user-facing surface, so no public docs.
oz harness-support -> internal
Expand Down Expand Up @@ -345,6 +351,12 @@ GET /memory_stores/{uid}/memories/{memoryUid}/versions -> gated:AIMemories
# slash-commands page content; add entries here only for exceptions.
# Gated by the dogfood-only LocalDockerSandbox flag — not user-facing yet.
/docker-sandbox -> internal
# TUI-only (warp-tui) slash commands — added only when the settings mode is TUI
# (see static_commands/commands.rs). They aren't present in the GUI desktop app,
# so they aren't documented on the public slash-commands page. Consistent with
# the general.autoupdate_enabled TUI-only setting mapped to `internal` above.
/exit -> internal
/view-logs -> internal

## Settings -> doc pages

Expand Down
17 changes: 14 additions & 3 deletions .agents/skills/missing_docs/references/surface_snapshot.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"Changelog": "ga",
"ClassicCompletions": "ga",
"ClearAutosuggestionOnEscape": "ga",
"CloudAgentRunnerCLICommands": "dogfood",
"CloudAgentRunners": "ga",
"CloudConversations": "ga",
"CloudEnvironments": "ga",
"CloudMode": "ga",
Expand All @@ -67,7 +67,7 @@
"CloudModeInputV2": "ga",
"CloudModeSetupV2": "ga",
"CloudObjects": "other",
"CloudRunners": "dogfood",
"CloudRunners": "ga",
"CocoaSentry": "other",
"CodeFindReplace": "ga",
"CodeLaunchModal": "ga",
Expand Down Expand Up @@ -806,6 +806,7 @@
"DELETE /api/v1/factory/automations/{id}",
"DELETE /api/v1/factory/automations/{id}/subscriptions/{subscription_id}",
"DELETE /api/v1/factory/{uid}",
"DELETE /api/v1/factory/{uid}/source",
"DELETE /api/v1/memory_stores/{uid}",
"DELETE /api/v1/memory_stores/{uid}/memories/{memoryUid}",
"GET /.well-known/openid-configuration",
Expand All @@ -822,6 +823,7 @@
"GET /api/v1/agent/identities/{uid}",
"GET /api/v1/agent/messages/{run_id}",
"GET /api/v1/agent/models",
"GET /api/v1/agent/run-by-external-reference",
"GET /api/v1/agent/runs",
"GET /api/v1/agent/runs/{runId}",
"GET /api/v1/agent/runs/{runId}/handoff/attachments",
Expand All @@ -837,6 +839,8 @@
"GET /api/v1/factory/automations/events/{provider}",
"GET /api/v1/factory/automations/{id}",
"GET /api/v1/factory/{uid}",
"GET /api/v1/factory/{uid}/source",
"GET /api/v1/factory/{uid}/syncs",
"GET /api/v1/harness-support/transcript",
"GET /api/v1/memory_stores",
"GET /api/v1/memory_stores/{uid}",
Expand Down Expand Up @@ -868,6 +872,8 @@
"POST /api/v1/factory",
"POST /api/v1/factory/automations",
"POST /api/v1/factory/avatar",
"POST /api/v1/factory/{uid}/apply",
"POST /api/v1/factory/{uid}/plan",
"POST /api/v1/harness-support/block-snapshot",
"POST /api/v1/harness-support/external-conversation",
"POST /api/v1/harness-support/finish-task",
Expand All @@ -885,6 +891,7 @@
"PUT /api/v1/agent/identities/{uid}",
"PUT /api/v1/agent/schedules/{id}",
"PUT /api/v1/factory/automations/{id}/subscriptions",
"PUT /api/v1/factory/{uid}/source",
"PUT /api/v1/memory_stores/{uid}",
"PUT /api/v1/memory_stores/{uid}/memories/{memoryUid}"
],
Expand All @@ -904,6 +911,7 @@
"/create-new-project",
"/docker-sandbox",
"/environment",
"/exit",
"/export-to-clipboard",
"/export-to-file",
"/feedback",
Expand Down Expand Up @@ -935,7 +943,8 @@
"/rewind",
"/set-tab-color",
"/skills",
"/usage"
"/usage",
"/view-logs"
],
"settings": {
"accessibility.accessibility_verbosity": "always_on",
Expand Down Expand Up @@ -1051,6 +1060,7 @@
"cloud_platform.third_party_api_keys.can_use_warp_credits_with_byok": "always_on",
"cloud_platform.third_party_api_keys.gemini_enterprise_credentials_enabled": "always_on",
"code.editor.auto_open_code_review_pane_on_first_agent_change": "always_on",
"code.editor.auto_save": "always_on",
"code.editor.format_on_save": "always_on",
"code.editor.open_code_panels_file_editor": "always_on",
"code.editor.open_file_editor": "always_on",
Expand Down Expand Up @@ -1258,6 +1268,7 @@
"tab-configs": "bundled",
"test-warp-ui": "dogfood",
"triage-vulnerabilities": "dogfood",
"tui-migrate-setup": "bundled",
"update-tab-config": "bundled",
"verify-ui-change-in-cloud": "dogfood",
"warpctrl": "bundled"
Expand Down
Loading