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
13 changes: 13 additions & 0 deletions .agents/skills/missing_docs/references/feature_surface_map.md
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,11 @@ GET /memory_stores/{uid}/memories/{memoryUid}/versions -> gated:AIMemories
# TUI-only voice input and version commands (Warp Agent CLI surface).
/voice -> internal
/version -> internal
# TUI-only color-theme picker (Warp Agent CLI surface, SlashCommandSurfaces::TuiOnly
# in static_commands/commands.rs). It sets the Warp Agent CLI theme
# (appearance.theme, mapped internal below) and isn't present in the GUI, so it
# stays internal like the other Warp Agent CLI-only commands.
/theme -> internal

## Settings -> doc pages

Expand All @@ -390,6 +395,14 @@ warpify.ssh.ssh_tmux_deprecation_notice_pending -> internal
# documented in the all-settings reference.
general.autoupdate_enabled -> internal

# Warp Agent CLI-only (crates/warp_tui) color theme (surface: Warp Agent CLI,
# SettingSurfaces::TUI in tui_theme.rs; "auto|light|dark" matching the host
# terminal background). It isn't present in the GUI settings UI, so it isn't
# documented in the all-settings reference. The GUI theme setting is the separate
# appearance.themes.theme, which is documented. Paired with the /theme Warp Agent
# CLI slash command mapped internal above.
appearance.theme -> internal

# Warp Agent CLI-only (crates/warp_tui) zero-state animation knobs (surface: Warp
# Agent CLI, SettingSurfaces::TUI). They tune the rotating object shown in the
# empty Warp Agent CLI state and aren't present in the GUI settings UI, so they
Expand Down
9 changes: 9 additions & 0 deletions .agents/skills/missing_docs/references/surface_snapshot.json
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@
"WebSearchUI": "ga",
"WelcomeBlock": "other",
"WelcomeTips": "other",
"WellKnownMcpIds": "dogfood",
"WithSandboxTelemetry": "other",
"WorkflowAliases": "ga"
},
Expand Down Expand Up @@ -682,6 +683,7 @@
"--remove-base-model",
"--remove-description",
"--remove-environment",
"--remove-prompt",
"--remove-secret",
"--remove-skill",
"--repo",
Expand Down Expand Up @@ -845,6 +847,8 @@
"GET /api/v1/factory/automations",
"GET /api/v1/factory/automations/events/{provider}",
"GET /api/v1/factory/automations/{id}",
"GET /api/v1/factory/scorers",
"GET /api/v1/factory/scorers/{scorer_id}/results",
"GET /api/v1/factory/{uid}",
"GET /api/v1/factory/{uid}/source",
"GET /api/v1/factory/{uid}/syncs",
Expand Down Expand Up @@ -883,6 +887,7 @@
"POST /api/v1/factory",
"POST /api/v1/factory/automations",
"POST /api/v1/factory/avatar",
"POST /api/v1/factory/scorers",
"POST /api/v1/factory/{uid}/apply",
"POST /api/v1/factory/{uid}/plan",
"POST /api/v1/factory/{uid}/tasks",
Expand Down Expand Up @@ -959,6 +964,7 @@
"/rewind",
"/set-tab-color",
"/skills",
"/theme",
"/usage",
"/version",
"/view-logs",
Expand Down Expand Up @@ -1049,6 +1055,7 @@
"appearance.text.match_notebook_to_monospace_font_size": "always_on",
"appearance.text.notebook_font_size": "always_on",
"appearance.text.use_thin_strokes": "always_on",
"appearance.theme": "always_on",
"appearance.themes.selected_system_themes": "always_on",
"appearance.themes.system_theme": "always_on",
"appearance.themes.theme": "always_on",
Expand Down Expand Up @@ -1191,6 +1198,8 @@
"agents",
"design",
"environments",
"evaluations",
"evaluations/:evaluationId",
"integrations",
"login",
"login/callback",
Expand Down
Loading