Skip to content
Closed
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
6 changes: 6 additions & 0 deletions .agents/skills/missing_docs/references/changelog_decisions.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ Newest first. One row per PR number — usually a `warpdotdev/warp` changelog it

| PR | Decided | Verdict | Gate / disqualifier | Reason and outcome |
|---|---|---|---|---|
| [v0.2026.08.19 Factories EA](https://github.com/warpdotdev/warp) | 2026-08-24 | deferred | Scope: announced major launch | "Warp Factories are now live in Early Access" on stable `v0.2026.08.19.08.15.stable_01`. Worthiness criteria exclude major launches from the automated weekly stream — they are documented on a proactive human-led path. Public factories docs already exist under `src/content/docs/factories/`. No automated draft. |
| [#14968](https://github.com/warpdotdev/warp/pull/14968) | 2026-08-24 | no | Disqualified: small and intuitive; already documented | Inline `/usage` on the Warp Agent CLI (TUI) showing plan, credit usage, and billing links. `/usage` is already listed on `agents/capabilities/slash-commands.mdx` and registered as `SlashCommandKind::Usage` in `app/src/search/slash_command_menu/static_commands/commands.rs` ("View account and credit usage"). The slash menu surfaces it (Gate 4 condition 2 fails). The TUI panel is understood on sight; no new knob, setup failure, or surprising default. |
| [#15181](https://github.com/warpdotdev/warp/pull/15181) | 2026-08-24 | no | Disqualified: bug fix restoring intended behavior | Unbounded memory leak in the terminal completions engine. No docs described the broken behavior; no user-facing configuration. |
| [#15261](https://github.com/warpdotdev/warp/pull/15261) | 2026-08-24 | no | Disqualified: pure UI affordance | Font-fallback fix for the Shift key glyph in web keyboard shortcut hints. Visual-only. |
| [#15259](https://github.com/warpdotdev/warp/pull/15259) | 2026-08-24 | no | Disqualified: pure UI affordance | Removed a stray 1px border around the workspace on Warp Web. Visual-only. |
| [oz-mcp-sandbox-rebuild](https://app.warp.dev/client_version) | 2026-08-24 | no | Disqualified: bug fix restoring intended behavior | Oz update on `v0.2026.08.19.08.15.stable_01`: fixed intermittent "MCP server not found" errors after a cloud agent sandbox is rebuilt mid-task. Restores intended MCP availability; no new knob, setup steps, or docs that described the broken state. |
| [docs#582](https://github.com/warpdotdev/docs/pull/582) | 2026-08-20 | yes | Gate 3 | Factory Dashboard metric definitions (APP-5546). The counting rules are non-obvious and currently live only in hover tooltips: the By-model view caps at eight and folds the rest into Other, there is an Unknown bucket, and opened/merged pull request counts can legitimately disagree. A reader reading the dashboard without them draws wrong conclusions. New reference page justified — no existing page carries per-metric detail. |
| [docs#581](https://github.com/warpdotdev/docs/pull/581) | 2026-08-20 | deferred | Gate 0 | `agentDefaults.computerUseModel` is unreleased — the drafting PR said so in its own title. Real knob, would pass Gate 1, but Gate 0 is a hard prerequisite. Re-check when the setting ships to GA. |
| [#14418](https://github.com/warpdotdev/warp/pull/14418) | 2026-08-20 | yes | Gate 1 | Agent execution profiles configurable from settings files for all users. Named settings-file configuration. Update the existing agent profiles page. |
Expand Down
5 changes: 5 additions & 0 deletions .agents/skills/missing_docs/references/feature_surface_map.md
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,11 @@ PUT /factory/automations/{id} -> internal
DELETE /factory/automations/{id} -> internal
PUT /factory/automations/{id}/subscriptions -> internal
DELETE /factory/automations/{id}/subscriptions/{subscription_id} -> internal
# Manual/trigger run endpoints for factories and automations. Same unreleased
# Factory REST surface as the routes above (`x-internal: true` / absent from the
# public OpenAPI publish set) — not part of the released public Oz Agent API.
POST /factory/automations/{id}/run -> internal
POST /factory/{uid}/runs -> internal
GET /factory/scorers -> internal
POST /factory/scorers -> internal
PATCH /factory/scorers/{scorer_id} -> internal
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"last_processed_version": "v0.2026.08.18.02.52.stable_00",
"release_date": "2026-08-18T14:15:48Z",
"processed_at": "2026-08-20T00:11:30Z",
"changelog_entry_count": 32,
"oz_updates_count": 0,
"last_processed_version": "v0.2026.08.19.08.15.stable_01",
"release_date": "2026-08-19T22:28:46Z",
"processed_at": "2026-08-24T19:07:00Z",
"changelog_entry_count": 5,
"oz_updates_count": 1,
"_comment": "Written by check_new_release.py --commit after a drift-watch run completes triage. Kept separate from surface_snapshot.json, which is regenerated wholesale and would lose this marker. Do not hand-edit; to force a re-run of the current release, delete this file."
}
2 changes: 2 additions & 0 deletions .agents/skills/missing_docs/references/surface_snapshot.json
Original file line number Diff line number Diff line change
Expand Up @@ -959,6 +959,7 @@
"POST /api/v1/factory",
"POST /api/v1/factory-files/validate",
"POST /api/v1/factory/automations",
"POST /api/v1/factory/automations/{id}/run",
"POST /api/v1/factory/avatar",
"POST /api/v1/factory/run-scoring/dispatches",
"POST /api/v1/factory/scorers",
Expand All @@ -976,6 +977,7 @@
"POST /api/v1/factory/{uid}/merges/check",
"POST /api/v1/factory/{uid}/plan",
"POST /api/v1/factory/{uid}/review/refine",
"POST /api/v1/factory/{uid}/runs",
"POST /api/v1/factory/{uid}/source/clone-url",
"POST /api/v1/factory/{uid}/tasks",
"POST /api/v1/factory/{uid}/tasks/{task_uid}/cancel",
Expand Down
Loading