open-design/apps/daemon/tests
lefarcen df8a0faff6
feat(runtimes): register AMR (vela) as an ACP stdio agent (#2355)
* feat(runtimes): register AMR (vela) as an ACP stdio agent

AMR is the vela CLI's ACP runtime mode. `vela agent run --runtime opencode`
speaks ACP JSON-RPC over stdio (see vela's
`specs/current/runtime/manual-agent-run-openrouter.md`); per
`docs/new-agent-runtime-acp.md` we expose it through the same `streamFormat:
'acp-json-rpc'` transport that already powers Hermes, Devin, Kimi, etc.

The new `defs/amr.ts` is the entire wiring — `buildArgs` returns
`['agent', 'run', '--runtime', 'opencode']`, `fetchModels` reuses
`detectAcpModels`, and the fallback list seeds the OpenRouter ids vela's
e2e baseline uses. `executables.ts`/`app-config.ts`/`metadata.ts` get the
matching `VELA_BIN`/`VELA_LINK_URL`/`VELA_RUNTIME_KEY`/`VELA_OPENCODE_BIN`
allowlist + install/docs URLs, so users can configure the per-agent env in
Settings without leaking into other adapters.

Coverage: `tests/fixtures/fake-vela.mjs` is a minimal ACP stub that returns
the documented `initialize` / `session/new` / `session/set_model` /
`session/prompt` shapes; `tests/amr-acp-integration.test.ts` spawns it via
`child_process.spawn` and drives a full turn through `attachAcpSession` and
`detectAcpModels`, so the ACP transport contract for AMR is end-to-end
verified locally even before a real `vela` binary is installed.

Validated:
- pnpm guard
- pnpm typecheck (all workspace projects)
- pnpm --filter @open-design/daemon test (2881/2881)

Deferred: real OpenRouter-backed turn through a built `vela` binary —
the runtime def needs no changes for that path, only `VELA_RUNTIME_KEY`
and `VELA_LINK_URL` in env (or Settings).

* fix(runtimes/amr): pin a concrete default model and bare openai ids

End-to-end validation against a freshly-built `vela` (nexu-io/vela@main)
+ OpenRouter surfaced two contract details the first AMR runtime def
got wrong:

1. vela rejects `session/prompt` with `session/set_model must be called
   before session/prompt`. attachAcpSession in apps/daemon/src/acp.ts
   skips set_model whenever the picked model is the synthetic 'default'
   id, so AMR's fallback list must NOT include DEFAULT_MODEL_OPTION. The
   def now ships a concrete `gpt-5.4-mini` as both `fetchModels`'
   default option and `fallbackModels[0]`, which makes attachAcpSession
   always send a real `session/set_model` for AMR turns.

2. `vela --runtime opencode` auto-prepends `openai/` to whatever modelId
   it forwards to opencode's openai provider. With OpenRouter-style ids
   like `openai/gpt-5.4-mini`, opencode receives the double-prefixed
   `openai/openai/gpt-5.4-mini` and replies `ProviderModelNotFoundError`.
   The new fallback list ships the bare ids opencode's openai registry
   actually knows about (gpt-5.4, gpt-5.4-mini, gpt-5.4-fast, etc.).

Stub + tests:
- tests/fixtures/fake-vela.mjs now enforces the set_model gate the same
  way real vela does, so a regression that silently goes back to
  model: 'default' would surface as a fatal error in tests instead of a
  hidden production failure.
- tests/amr-acp-integration.test.ts pins both contracts: no 'default' /
  no 'openai/' prefix in fallbackModels, and a negative case that
  asserts session/prompt fails when no model is set.

Adds `apps/daemon/scripts/verify-amr-real-vela.mjs` — a small dev-time
runner that drives `attachAcpSession` against a real `vela` binary and
prints the daemon's chat events, so future protocol drift can be checked
against an actual OpenRouter call.

Verified locally: `vela agent run --runtime opencode` + OpenRouter
returns the prompted string ("AMR-E2E-PASS") through the full daemon
pipeline; daemon test suite stays 2883/2883.

* fix(runtimes/amr): substitute concrete model when chat run sends 'default'

A plugin-driven AMR run from the UI surfaced a real-world hole in the
prior commit:

  json-rpc id 3: session/set_model must be called before session/prompt

The Default-design-router plugin (and any caller that doesn't pin a
real model) sends `model: 'default'` straight through, which the AMR
runtime def cannot accept — vela rejects `session/prompt` without
`session/set_model` and attachAcpSession skips set_model whenever
model === 'default'. Just leaving DEFAULT_MODEL_OPTION out of the
adapter's `fallbackModels` is not enough: the chat-run handler in
server.ts still forwarded 'default' verbatim.

This adds `resolveModelForAgent(def, resolved, env?)` as the
single source of truth for the substitution:

  1. If the caller picked a real id, pass it through.
  2. Else, if `def.defaultModelEnvVar` is set and the daemon process
     env has a non-empty value for it, return that (operator escape
     hatch — see below).
  3. Else, if the def's `fallbackModels` does NOT contain a 'default'
     id, return `fallbackModels[0].id`.
  4. Else, return the original value (the historic shape — defs that
     list 'default' themselves are untouched).

AMR sets `defaultModelEnvVar: 'VELA_DEFAULT_MODEL'`, so when
opencode's openai-provider registry deprecates `gpt-5.4-mini`
upstream, an operator can swap the fallback id without a code change
by exporting `VELA_DEFAULT_MODEL=gpt-5.5` before launching tools-dev
/ od. Worth noting the env var must live in the daemon's `process.env`
(Settings-UI per-agent env values only reach the spawned child, not
the daemon's resolver) — the new field's docblock spells this out.

Coverage:
- `tests/runtimes/resolve-model.test.ts` — 8 unit tests covering all
  four resolver branches plus the env-override happy path / fallback /
  ignore-when-user-picked-a-real-id case.
- `pnpm --filter @open-design/daemon typecheck` clean.

* chore(runtimes/amr): move AMR to the top of the base agent list

So `AMR (vela)` shows up first in the agent picker / status views,
ahead of claude / codex. Pure ordering change; no behavior delta.

* feat(amr): Sign-in / Sign-out button on the AMR Settings card

The first half of the AMR work assumed the operator would set
VELA_RUNTIME_KEY / VELA_LINK_URL on the daemon process and never
surfaced login state to users. This adds the missing UX so a fresh
install can drive the full path from Settings:

  - GET  /api/integrations/vela/status   reads ~/.vela/config.json
    for the active profile and returns { loggedIn, profile, user }
    (without leaking the runtime/control keys themselves).
  - POST /api/integrations/vela/login    spawns `vela login` once
    (409 if one is already in flight). The vela CLI opens the user's
    browser to the device-authorization page itself — Open Design
    only needs to kick the subprocess off.
  - POST /api/integrations/vela/logout   removes ~/.vela/config.json
    so the next status read returns logged-out.

`AmrAgentCard` is a dedicated agent-card component for AMR because
the existing `<button>` row can't host an interactive sub-control
(nested interactive elements). It polls /status after a login click
until the daemon reports loggedIn=true (or 5 minutes elapse), and
exposes a Sign-out action on hover. Other adapters (claude, codex,
hermes, …) keep their existing `<button>` card.

i18n: 8 new keys (settings.amrLogin / Logout / LoggingIn / etc.)
added to en + zh-CN. Other locales spread `en` and inherit the
English copy until translations land.

Coverage:
- `tests/integrations/vela.test.ts` pins the config.json reader
  against a tmp HOME — including the negative case where a profile
  has user info but no runtimeKey (still logged-out), and the
  secret-leak guard ("rt-secret-*" must not appear in the projection
  payload).
- `tests/components/AmrAgentCard.test.tsx` covers all four UI
  states (logged-out, logging-in, logged-in, logging-out) plus the
  click-propagation invariant the divergent card was built to keep.

`pnpm --filter @open-design/daemon test` 2901 / 2901 passing.
`pnpm --filter @open-design/web test` 1719 / 1719 passing.
`pnpm typecheck` + `pnpm guard` clean.

Dev script side-effects: `apps/daemon/scripts/verify-amr-real-vela.mjs`
no longer requires both VELA_RUNTIME_KEY and VELA_LINK_URL — if
VELA_PROFILE is set, the vela CLI is allowed to resolve credentials
from `~/.vela/config.json`. Added the two AMR `.mjs` fixtures to
`scripts/guard.ts` allowlist with the executable-fixture / dev-runner
rationale.

* fix(connection-test): substitute model for AMR before attachAcpSession

The chat-run path in server.ts already routes the requested model through
`resolveModelForAgent` so AMR / vela (whose CLI demands an explicit
`session/set_model` before `session/prompt`) gets the def's first
concrete fallback id when the chat run ships `model: 'default'`.
`connectionTest.ts` was wiring `attachAcpSession({ ..., model: model ?? null })`
directly, which made the Test Connection button on the AMR Settings
card deadlock with the same `session/set_model must be called before
session/prompt` error the chat-run path already handles — surfaced as a
permanent "Testing connection…" spinner in the UI.

Reuse the same helper here so Test Connection mirrors chat-run behavior.

* test(amr): three-layer end-to-end coverage for the AMR login + turn flow

The PR up to this point shipped runtime + UI code with unit-level Vitest
coverage. This commit adds the cross-layer regression net the live demo
relied on:

1. apps/daemon/tests/integrations/vela.routes.test.ts (HTTP, Vitest)
   Spins up the real daemon Express app via `startServer({port:0,...})`,
   persists `agentCliEnv.amr.VELA_BIN = <fake>` into app-config.json,
   and exercises every /api/integrations/vela/* endpoint against the
   extended fake-vela stub:
     - status reads ~/.vela/config.json under various states
     - login spawns the fake, waits for config.json to appear, returns
       pid + startedAt + profile
     - 409 already-running guard with the stub's delay knob
     - logout removes the file (idempotent)
     - secrets (runtimeKey / controlKey) never leak in the projection
     - login → status round-trip flips loggedIn=false → true

2. e2e/tests/amr/turn.test.ts (tools-dev orchestrated, Vitest)
   Boots a namespaced daemon + web pair through `createSmokeSuite`,
   inlines a self-contained fake `vela` binary that handles BOTH
   `vela login` (writes ~/.vela/config.json) and
   `vela agent run --runtime opencode` (ACP stdio with the
   `session/set_model must precede session/prompt` gate the real binary
   enforces), then drives a complete /api/runs lifecycle for
   `agentId: 'amr', model: 'default'` and asserts the assistant message
   captures the fake's streamed text. This is the test that would have
   surfaced today's plugin-default-model regression (the `set_model
   before prompt` error) at PR time instead of demo time.

3. e2e/ui/amr-login-pill.test.ts (Playwright)
   Mocks /api/agents + /api/integrations/vela/{status,login,logout}
   to drive the Settings AMR card through the full Sign in → Signed in
   → Sign out cycle. Pins the AmrLoginPill polling contract and the
   aria-label semantics (the pill's accessible name is "Sign out" once
   logged in, regardless of which label the hover-state text shows).

fake-vela.mjs extensions:
   - Handles `vela login` argv by writing
     ~/.vela/config.json for the active VELA_PROFILE and exiting 0 —
     mirrors real vela's on-disk side-effect without the device-auth
     loop.
   - FAKE_VELA_LOGIN_DELAY_MS knob so route tests can observe the
     in-flight state of the spawn lifecycle.
   - FAKE_VELA_LOGIN_USER_EMAIL / _USER_PLAN to assert the surfaced
     user fields end-to-end.

Validated:
   - `pnpm guard` + `pnpm typecheck` (all workspace projects)
   - `pnpm --filter @open-design/daemon test`: 2998 / 2998 passing,
     including the new 8-test integration suite.
   - `cd e2e && pnpm test tests/amr`: 1 / 1 passing.
   - `cd e2e && pnpm exec playwright test ui/amr-login-pill.test.ts`:
     1 / 1 passing (6.7s).

* feat(amr): package native cli and refine login ui

* feat(amr): wire vela cli beta packaging

* docs(amr): document vela ci packaging review

* docs(amr): refine vela ci integration review

* fix(ci): refresh nix pnpm dependency hashes

* fix(pack): clean up Vela CLI packaging

* fix(pack): bundle Vela CLI support files

* fix(amr): recover login attempts from stale auth state

* test: expand AMR and automations coverage

* fix(amr): address review follow-ups

* test(web): align tasks fixtures with contracts

* fix(daemon): type wildcard route params

* fix(ci): refresh PR merge validation

* fix(amr): clear env credentials on logout

* feat(settings): inline local CLI model configuration

* fix(amr): recognize daemon env credentials

* [codex] Fix Vela companion packaging (#2979)

* Fix Vela companion packaging

* Update Nix pnpm dependency hashes

* [codex] Surface AMR account failures (#2980)

* fix: surface AMR account failures

* fix: cover AMR recovery error guidance

* chore: bump beta base version to 0.8.1 (#2990)

* Fix AMR profile and packaged runtime review issues

* Detect packaged AMR OpenCode companion tree

* feat(web): polish AMR frontend flows

* Polish AMR onboarding card

* fix: read AMR login state from dot-amr config (#3048)

* test: tighten AMR credential and packaging coverage

* test: restore AMR executable test env helper

* [codex] Fix packaged mac Dock identity and AMR label (#3076)

* Fix packaged mac sidecar Dock identity

* Rename AMR assistant label

* Fix AMR live models and dot-amr login state (#3073)

* fix: read AMR login state from dot-amr config

* fix: load live AMR models before runs

* fix: point AMR onboarding link to production wallet

* fix: address AMR model review feedback

* fix: persist live AMR model fallback

* [codex] Fix AMR link catalog model ids (#3088)

* Fix packaged mac sidecar Dock identity

* Rename AMR assistant label

* Fix AMR link catalog model ids

* Fix AMR model normalization typecheck

* Use live AMR model for default runs

* fix: polish AMR runtime settings UI

* Accelerate AMR startup defaults (#3092)

* Surface AMR insufficient balance wallet URL (#3099)

* fix(web): polish onboarding controls (#3112)

* fix(web): show CLI scan loading state

* Avoid duplicate AMR wallet recharge links (#3117)

* Avoid duplicate AMR wallet recharge links

* Use Vela CLI 0.0.3 test package

* chore(nix): refresh pnpm deps hash

* Fix AMR wallet guidance display

---------

Co-authored-by: open-design-bot[bot] <282769551+open-design-bot[bot]@users.noreply.github.com>

* chore(pack): pin Vela CLI 0.0.3-test.1 (#3127)

* chore(nix): refresh pnpm deps hash

* chore(pack): pin Vela CLI 0.0.3

* chore(nix): refresh pnpm deps hash

* fix(web): suppress AMR exit 130 fallback (#3136)

* feat(web): nudge users to hosted AMR on model/auth/quota failures (#3083)

* feat(web): nudge users to hosted AMR on model/auth/quota failures

When a non-AMR agent run fails with an auth / quota / upstream model
error, surface an inline nudge under the error pill linking to Open
Design's hosted AMR gateway (https://open-design.ai/amr). The nudge
fires `surface_view` (element=run_failed_toast) on impression and
`ui_click` (element=go_amr) on the link.

Also teach the daemon to classify CLI-agent auth/quota/upstream failures
(Claude Code, codex, ...) into specific API error codes
(AGENT_AUTH_REQUIRED / RATE_LIMITED / UPSTREAM_UNAVAILABLE) instead of
the generic AGENT_EXECUTION_FAILED, so both the error message and the
nudge key off accurate codes. AMR's own runs are excluded from the
nudge — they keep the dedicated sign-in / recharge affordances.

* feat(web): rework failed-run AMR guidance into per-case error UI

Replace the single inline nudge with a per-case failed-run experience
driven by the run's error code + agent:

- The error card is now neutral gray (was red) and always carries a
  retry button; it is driven by the persisted per-message error event so
  it survives a reload.
- Non-AMR agent hitting a model/auth/quota wall: a theme-color promotion
  card under the error card offers "switch to AMR & retry" — switches the
  run to AMR, opens Settings on the AMR card, and auto-retries once the
  account signs in (ProjectView polls vela login status, independent of
  the Settings pill lifecycle, with success / 5-min-timeout / unmount
  exits).
- AMR agent unauthorized: clearer copy + an "authorize & retry" button.
- AMR agent out of balance: clearer copy + a "top up" button to the AMR
  wallet, with manual retry.
- Settings AMR card: when opened from the nudge, it scrolls into view and
  pulses, and an authorize-button coachmark (a fake hand cursor that
  rises in and dismisses on hover) points at the sign-in control when not
  yet authorized.

analytics: surface_view (run_failed_toast) on the promotion card and
ui_click (go_amr) on its action are retained. i18n adds chat.amrCard.*
and chat.amrError.* (en / zh-CN / zh-TW translated; other locales fall
back to en) and drops the old chat.amrErrorGuidance keys.

* fix(daemon): require status context for numeric service-failure codes

Per review on #3083: the model-service classifier matched bare HTTP
status numbers (`500`, `502`, `429`, `401`), so ordinary CLI output like
`line 500`, `read 502 bytes`, or `exit code 401` could be misclassified
as a provider outage / auth wall and wrongly surface the AMR nudge. Now
a status number only counts when it carries explicit context (`HTTP 500`,
`status 503`, `code: 401`, `502 Bad Gateway`); textual provider phrases
(overloaded, bad gateway, service unavailable, rate limit, …) are
unchanged. Adds fixtures proving unrelated numeric output stays null.

* fix(web): keep error pill for failed runs ChatPane's card doesn't cover

Per review on #3083: the per-message gray error pill was suppressed for
every persisted error status event, but ChatPane only renders the
replacement top-level error card for `retryableAssistantMessage` (the
last failed assistant). So a failed turn that is no longer last (after a
follow-up) or an older failed run in history showed neither the pill nor
the card — its error detail vanished, undercutting reload/history
survival. ChatPane now passes `errorCardOwnerId` (the assistant id whose
error the card represents); AssistantMessage suppresses only that one
pill and keeps rendering StatusPill for all other error events.

* fix(daemon): don't treat a process exit code as an HTTP status

Follow-up to review on #3083: the status-context helper accepted a bare
`code` prefix, so `exit code 401` / `process exited with code 429` still
matched and got classified as AGENT_AUTH_REQUIRED / RATE_LIMITED (the
very `exit code 401` case the comment calls out as noise). `code` now
only counts when qualified (`status code` / `error code` / `response
code`) or punctuation-bound (`code: 401`); bare `exit code N` no longer
matches. Adds fixtures for exit-code lines returning null.

* chore(web): translate AMR card / error keys for 16 remaining locales

PR #3083 added 10 new `chat.amrCard.*` / `chat.amrError.*` keys but only
provided en/zh-CN/zh-TW translations; the other 16 locales fell back to
English. Translate the card title/body, three chips, primary CTA, and
the AMR self-error (auth / balance) messages and buttons for ar, de,
es-ES, fa, fr, hu, id, it, ja, ko, pl, pt-BR, ru, th, tr, uk.

* fix(amr): address review feedback on #2355

Targeted fixes for the unresolved review threads on #2355. Each fix
includes / updates a focused test.

- runtimes/executables.ts: `packagedVelaOpenCodeCompanionTree` now
  verifies the inner `opencode` executable exists + is runnable, not
  just the directory. This closes the false-positive availability path
  that let `detectAgents()` surface AMR as available even when the
  packaged companion was empty / partially copied (mrcfps, 4 threads).

- runtimes/executables.ts: `resolveAmrOpenCodeExecutable` now prefers
  the bundled `<OD_RESOURCE_ROOT>/bin/libexec/opencode/opencode` over a
  stale `opencode` on the user's PATH, so packaged AMR builds can't be
  hijacked by a global installation.

- web/EntryShell.tsx: when the Local CLI scan returns an available
  agent and the previously-selected agent is AMR, switch the selection
  to the first available local agent so the runtime and persisted
  agent agree before Continue.

- server.ts (model-probe branch): for AMR, check `readVelaLoginStatus`
  BEFORE rejecting on an empty live-model catalog — a signed-out user
  was getting `AMR_MODEL_UNAVAILABLE` ("choose a model") instead of
  the correct `AMR_AUTH_REQUIRED` (sign-in affordance).

- server.ts (default model fallback): if the user asked for the AMR
  agent default and the cached id is no longer in the FRESH catalog,
  fall back to `liveModels[0]` from the probe instead of rejecting the
  run as `AMR_MODEL_UNAVAILABLE`.

- integrations/vela.ts: route `vela login` through
  `createCommandInvocation` so an npm/Node-style `vela.cmd` / `.bat`
  shim on Windows gets the correct `cmd.exe /d /s /c …` wrapping with
  verbatim args (matches `execAgentFile` / chat-run spawning).

- tools/pack/src/linux.ts: in containerized Linux builds, bind-mount
  the host directory of `OPEN_DESIGN_VELA_CLI_BIN` and rewrite the env
  to the container-side path. The host path was being passed in as-is
  even though the default container only mounts /project, /tools-pack
  and cache/home — `copyOptionalVelaCliBinary` saw a missing path.

Deferred (out of scope for this PR):
- `od amr status/login/logout/cancel` CLI subcommands (AGENTS.md
  UI/CLI dual-track rule, server.ts:5763) — sizable surface; tracked
  for a separate focused PR.
- Strict `--require-vela-cli` for Windows + mac-x64 beta builds:
  prematurely blocked — `@powerformer/vela-cli` only publishes the
  `darwin-arm64` platform binary today; adding the flag elsewhere
  would fail the builds. Revisit once win/x64/linux binaries ship.

* fix(amr): hoist sendAmrAccountFailure above the AMR catalog preflight (TDZ)

The new signed-out AMR branch in the catalog preflight at server.ts:10875
calls `sendAmrAccountFailure(...)` to emit AMR_AUTH_REQUIRED, but the
const declaration sat ~100 lines below at the outer function scope. Because
`const` is TDZ-aware, that branch would have thrown `ReferenceError:
Cannot access 'sendAmrAccountFailure' before initialization` for the
exact users it tries to help — defeating the original intent.

Hoist the helper to just above the AMR preflight block so it's available
to every AMR code path in this function. Behavior elsewhere is unchanged.

Also rerun the daemon test suite: `launch.test.ts > resolveAgentLaunch
uses packaged built-in Vela for AMR` was creating the
`<resourceRoot>/bin/libexec/opencode/` companion *directory* only, but
this PR's earlier tightening of `packagedVelaOpenCodeCompanionTree`
also requires the inner `opencode` executable. Add it to that fixture
to match the new contract; the test was a sibling of the executables /
env-and-detection fixtures already updated in 13fc4f4.

Addresses #2355 review (mrcfps, 2026-05-28).

* feat(web): add hover cancel for AMR login (#3158)

* feat(web): add hover cancel for AMR login

* fix(web): don't bounce AmrLoginPill back to 'Signing in…' after local cancel

Both codex-connector (P2) and looper (CHANGES_REQUESTED) on this PR
flagged the same race in the new local-cancel path: `handleCancelLogin`
dispatches `notifyAmrLoginStatusChanged('login-canceled')` immediately
after `/login/cancel` returns, but the `AMR_LOGIN_STATUS_EVENT` listener
unconditionally re-enters `refresh()` and then restarts polling
whenever `/api/integrations/vela/status` still reports
`loginInFlight: true`.

That is a real race because the daemon's `cancelVelaLogin()` only sends
SIGTERM (escalating to SIGKILL after `LOGIN_CANCEL_KILL_GRACE_MS` =
2000 ms) and keeps the child in `activeLoginProcs` until it actually
exits — so the first `/status` read after a successful cancel can
legally still come back as in-flight. Under that window the pill flips
back to 'Signing in…' and can later surface the timeout/error path even
though the user already canceled, defeating the behavior promised in
the PR description.

Fix the listener instead of every dispatch site: in the
`login-canceled` branch, after the local reset (stopPolling +
setPending(null) + clear refs), optimistically mark every subscribed
pill instance as not-in-flight (`setStatus((c) => c ? { ...c,
loginInFlight: false } : c)`) and `return` — skip the
refresh-and-reconcile branch below entirely. The next explicit refresh
(component mount, user interaction, or a `status-changed` event) will
pick up the daemon's confirmed state once the child has actually
exited.

Add a focused regression test that holds `/api/integrations/vela/status`
at `loginInFlight: true` even after a successful `/login/cancel`,
asserting that the pill stays at the Canceled → Authorize sequence and
never bounces back to 'Signing in…'. This test fails on the pre-fix
listener and passes on the new behavior; existing
'cancels an in-flight AMR sign-in…' and 'reconciles late AMR browser
completion to Signed in after local cancel' tests continue to pass.

Addresses review feedback on #3158 (chatgpt-codex-connector, nettee).

---------

Co-authored-by: lefarcen <935902669@qq.com>

---------

Co-authored-by: a1chzt <chizblank@gmail.com>
Co-authored-by: Amy <1184569493@qq.com>
Co-authored-by: Mason <jinmeihong0201@gmail.com>
Co-authored-by: Caprika <56862773+alchemistklk@users.noreply.github.com>
Co-authored-by: open-design-bot[bot] <282769551+open-design-bot[bot]@users.noreply.github.com>
2026-05-28 05:09:55 +00:00
..
fixtures feat(runtimes): register AMR (vela) as an ACP stdio agent (#2355) 2026-05-28 05:09:55 +00:00
http refactor(daemon): introduce HTTP Request Adapter + typed Deps (#2636) 2026-05-22 15:20:15 +08:00
integrations feat(runtimes): register AMR (vela) as an ACP stdio agent (#2355) 2026-05-28 05:09:55 +00:00
logging feat(daemon): Critique Theater Phase 12 (9 Prometheus metrics + 6 log events + OTel span + Grafana dashboard) (#1485) 2026-05-13 22:11:27 +08:00
metrics feat(daemon): Critique Theater Phase 12 (9 Prometheus metrics + 6 log events + OTel span + Grafana dashboard) (#1485) 2026-05-13 22:11:27 +08:00
prompts feat(runtimes): register AMR (vela) as an ACP stdio agent (#2355) 2026-05-28 05:09:55 +00:00
runtimes feat(runtimes): register AMR (vela) as an ACP stdio agent (#2355) 2026-05-28 05:09:55 +00:00
acp-timeout-env.test.ts Make ACP model detection timeout configurable (#2072) 2026-05-18 18:32:09 +08:00
acp.test.ts fix(amr): close ACP stdin on abort so vela tears down OpenCode (#3097) 2026-05-27 15:40:22 +00:00
active-context-routes.test.ts refactor(daemon): introduce HTTP Request Adapter + typed Deps (#2636) 2026-05-22 15:20:15 +08:00
agent-runtime-env.test.ts fix(daemon): ensure node binary dir is on PATH for agent sub-processes on Windows (#1989) 2026-05-19 16:58:15 +08:00
agui-route.test.ts feat(plugins): @open-design/agui-adapter package + GET /api/runs/:id/agui 2026-05-09 13:11:48 +00:00
amr-acp-integration.test.ts feat(runtimes): register AMR (vela) as an ACP stdio agent (#2355) 2026-05-28 05:09:55 +00:00
api-token-guard.test.ts feat(plugins): bound-API-token guard + bearer middleware (Phase 5) 2026-05-09 13:29:31 +00:00
app-config.test.ts feat(runtimes): register AMR (vela) as an ACP stdio agent (#2355) 2026-05-28 05:09:55 +00:00
app-version.test.ts Support nightly and preview package identity (#2437) 2026-05-20 19:46:39 +08:00
artifact-create.test.ts Add normal artifact creation via MCP and CLI (#2057) 2026-05-18 17:50:38 +08:00
artifact-manifest-reconcile-on-run-end.test.ts fix(daemon): reconcile missing artifact manifests on run end (#2893) (#3110) 2026-05-28 03:54:48 +00:00
artifact-manifest.test.ts fix(daemon): reconcile missing artifact manifests (#2068) 2026-05-20 10:41:08 +08:00
artifact-publication-guard.test.ts fix(daemon,web): block pitch-deck placeholder publishes and unbreak framework decks (#2384) 2026-05-20 16:20:34 +08:00
artifact-stub-guard.test.ts feat(daemon): guard against agent-emitted stub artifact regressions (#1171) 2026-05-11 19:59:37 +08:00
artifacts-cli.test.ts Add normal artifact creation via MCP and CLI (#2057) 2026-05-18 17:50:38 +08:00
automation-ingestions.test.ts [codex] Add automation templates and proposal workflows (#2193) 2026-05-19 16:35:28 +08:00
automation-proposals.test.ts [codex] Add automation templates and proposal workflows (#2193) 2026-05-19 16:35:28 +08:00
automation-routine-evolution.test.ts [codex] Add automation templates and proposal workflows (#2193) 2026-05-19 16:35:28 +08:00
automation-templates.test.ts [codex] Add automation templates and proposal workflows (#2193) 2026-05-19 16:35:28 +08:00
aws-sigv4.test.ts feat(daemon): S3ProjectStorage live impl via AWS SigV4 (Phase 5) 2026-05-09 16:10:05 +00:00
browser-open.test.ts fix daemon browser opener on Windows (#953) 2026-05-09 22:04:07 +08:00
byok-tools.test.ts fix: enable SenseAudio BYOK TTS (#2570) 2026-05-22 14:04:29 +08:00
chat-attachments.test.ts fix(daemon): preserve Windows chat attachments (#2158) 2026-05-19 12:01:33 +08:00
chat-route.test.ts fix(daemon): hide agent executable paths from chat status (#2874) (#3046) 2026-05-27 06:22:56 +00:00
chat-run-artifact-quiet-period.test.ts fix(daemon): finish live-artifact chat runs via watchdog quiet-period handoff (#1451) (#2585) 2026-05-22 19:06:13 +08:00
claude-design-import.test.ts fix(claude-design-import): restore notched wheel zoom + warn on regex drift (#1814) 2026-05-15 21:44:57 +08:00
claude-diagnostics.test.ts fix(daemon): map Claude Not logged in output to /login guidance (#1928) (#3050) 2026-05-27 06:34:09 +00:00
cli-startup.test.ts Centralize daemon startup (#2054) 2026-05-18 17:08:17 +08:00
comment-attachments.test.ts [codex] Add visual draw annotation context (#1547) 2026-05-13 20:02:19 +08:00
composio-config.test.ts Add connector memory extraction flow (#2265) 2026-05-19 21:27:41 +08:00
composio-descriptions.test.ts Add live artifacts and Composio connector catalog (#381) 2026-05-05 16:42:11 +08:00
connection-test.test.ts feat(daemon): structured diagnostics for agent connection test results (#2248 PR 1/N) (#2419) 2026-05-26 03:17:05 +00:00
connectors-routes.test.ts Add connector memory extraction flow (#2265) 2026-05-19 21:27:41 +08:00
connectors-service.test.ts fix(connectors): expire stale auth credentials (#2385) 2026-05-27 14:44:10 +00:00
craft-route.test.ts feat(cli): od atoms / skills / design-systems / craft / status / version + marketplace search 2026-05-09 12:41:06 +00:00
craft.test.ts fix(daemon): typecheck leaf modules (#943) 2026-05-08 20:01:25 +08:00
critique-adapter-degraded.test.ts docs: Critique Theater Phase 14 (user guide + 2 AGENTS module maps) (#1319) 2026-05-13 12:11:48 +08:00
critique-artifact-endpoint.test.ts feat(daemon): Critique Theater Phase 6.2 (artifact extraction + endpoint) (#1085) 2026-05-10 23:59:04 +08:00
critique-artifact-writer.test.ts feat(daemon): Critique Theater Phase 6.2 (artifact extraction + endpoint) (#1085) 2026-05-10 23:59:04 +08:00
critique-authority.test.ts feat: Critique Theater Phase 4 (persistence + transcript + orchestrator) (#481) 2026-05-05 15:50:35 +08:00
critique-boot-reconcile.test.ts feat: Critique Theater Phase 4 (persistence + transcript + orchestrator) (#481) 2026-05-05 15:50:35 +08:00
critique-composer.test.ts feat: Critique Theater Phase 5 (panel prompt template + system composer wiring) 2026-05-07 16:35:04 +08:00
critique-config.test.ts feat: Critique Theater Phase 4 (persistence + transcript + orchestrator) (#481) 2026-05-05 15:50:35 +08:00
critique-conformance-history.test.ts feat(daemon): Critique Theater Phase 16 (M-phase rollout ratchet + /api/critique/conformance) (#1499) 2026-05-14 11:05:57 +08:00
critique-conformance.test.ts test(e2e): Critique Theater Phase 11 (Playwright stage suite: happy, interrupt, 3 viewports, a11y) (#1317) 2026-05-13 21:23:18 +08:00
critique-interrupt-endpoint.test.ts feat(daemon): add critique interrupt endpoint + project-keyed run registry (Task 6.1) (#819) 2026-05-08 11:29:37 +08:00
critique-lifecycle.test.ts feat(daemon): Critique Theater Phase 6.2 (artifact extraction + endpoint) (#1085) 2026-05-10 23:59:04 +08:00
critique-orchestrator.test.ts feat(daemon): Critique Theater Phase 6.2 (artifact extraction + endpoint) (#1085) 2026-05-10 23:59:04 +08:00
critique-panel-prompt.test.ts feat: Critique Theater Phase 5 (panel prompt template + system composer wiring) 2026-05-07 16:35:04 +08:00
critique-persistence.test.ts feat: Critique Theater Phase 4 (persistence + transcript + orchestrator) (#481) 2026-05-05 15:50:35 +08:00
critique-ratchet.test.ts feat(daemon): Critique Theater Phase 16 (M-phase rollout ratchet + /api/critique/conformance) (#1499) 2026-05-14 11:05:57 +08:00
critique-rollout.test.ts feat: Critique Theater Phase 15 (rollout resolver + Settings toggle hook) (#1320) 2026-05-13 21:19:51 +08:00
critique-run-registry.test.ts feat(daemon): add critique interrupt endpoint + project-keyed run registry (Task 6.1) (#819) 2026-05-08 11:29:37 +08:00
critique-spawn-inputs.test.ts feat: Critique Theater wireup (activate the stack, M0 dark-launch by default) (#1338) 2026-05-14 20:37:06 +08:00
critique-spawn-wiring.test.ts Revert "Refactor agent runtime stream handling behind adapter (#1622)" (#1656) 2026-05-14 15:23:19 +08:00
critique-transcript.test.ts feat: Critique Theater Phase 4 (persistence + transcript + orchestrator) (#481) 2026-05-05 15:50:35 +08:00
cwd-aliases.test.ts fix(daemon): expose skill resources via cwd-relative aliases (#435) 2026-05-04 17:48:20 +08:00
daemon-lifecycle.test.ts chore: align namespace lifecycle packaging 2026-05-14 16:35:46 +08:00
daemon-url.test.ts chore: align namespace lifecycle packaging 2026-05-14 16:35:46 +08:00
db-message-events.test.ts [codex] Polish home composer working-directory controls (#2468) 2026-05-21 00:22:46 +08:00
db-pre-turn-file-names.test.ts fix(daemon): restore full assistant turn after mid-flight reload reattach (#2383) 2026-05-22 18:47:12 +08:00
deploy-routes.test.ts Fix Cloudflare Pages custom domain lookup (#958) 2026-05-08 21:20:48 +08:00
deploy.test.ts Fix Cloudflare Pages custom domain lookup (#958) 2026-05-08 21:20:48 +08:00
design-file-score.test.ts Capture native (Swift) source in the GitHub design import (#2847) 2026-05-25 05:17:47 +00:00
design-system-assets.test.ts Add design system package quality guard (#2224) 2026-05-19 16:53:29 +08:00
design-system-generation-jobs.test.ts [codex] Land design system GitHub intake handoff (#2187) 2026-05-19 14:30:17 +08:00
design-system-github-import.test.ts Add design system package quality guard (#2224) 2026-05-19 16:53:29 +08:00
design-system-import.test.ts Add design system package quality guard (#2224) 2026-05-19 16:53:29 +08:00
design-system-rename-args.test.ts feat: rename editable design systems from Settings + od CLI (#2812) 2026-05-25 03:13:35 +00:00
design-system-showcase.test.ts fix(web): tighten entry-tab layout and design-system showcase color picker (#412) 2026-05-04 13:49:41 +08:00
design-system-source-context.test.ts [codex] Land design system GitHub intake handoff (#2187) 2026-05-19 14:30:17 +08:00
design-system-tool-routes.test.ts Add design system package quality guard (#2224) 2026-05-19 16:53:29 +08:00
design-systems-cli-help.test.ts feat: rename editable design systems from Settings + od CLI (#2812) 2026-05-25 03:13:35 +00:00
design-systems-frontmatter.test.ts Capture native (Swift) source in the GitHub design import (#2847) 2026-05-25 05:17:47 +00:00
design-systems.test.ts [codex] Land design system GitHub intake handoff (#2187) 2026-05-19 14:30:17 +08:00
desktop-import-token-gate.test.ts feat(web): add Finalize design package + Continue in CLI buttons (#451) (#974) 2026-05-10 11:44:32 +08:00
diagnostics-export.test.ts feat(runtimes): register AMR (vela) as an ACP stdio agent (#2355) 2026-05-28 05:09:55 +00:00
elevenlabs-voices.test.ts feat(audio): add ElevenLabs audio support (#1384) 2026-05-13 15:53:41 +08:00
export-inline-route.test.ts Revert "fix(web): restore consistent app header layout (#1432)" 2026-05-13 11:20:16 +08:00
finalize-design.test.ts fix(daemon): reconcile missing artifact manifests (#2068) 2026-05-20 10:41:08 +08:00
finalize-route-abort.test.ts feat(web): add Finalize design package + Continue in CLI buttons (#451) (#974) 2026-05-10 11:44:32 +08:00
folder-import-projects.test.ts fix: ignore generated project dirs before watching (#2838) 2026-05-25 06:32:45 +00:00
folder-import-route.test.ts fix(packaged): honor OD_DATA_DIR in desktop runtime (#2162) 2026-05-24 14:21:54 +00:00
frame-runtime.test.ts fix: resolve shared frame screen paths from referrer (#2318) 2026-05-20 15:22:59 +08:00
handoff-cli.test.ts feat(web): "Resume conversation in new chat" UI — #462 Commit B (companion to #1718) (#2264) 2026-05-20 13:28:27 +08:00
handoff-design.test.ts feat(web): "Resume conversation in new chat" UI — #462 Commit B (companion to #1718) (#2264) 2026-05-20 13:28:27 +08:00
handoff-route-abort.test.ts feat(web): "Resume conversation in new chat" UI — #462 Commit B (companion to #1718) (#2264) 2026-05-20 13:28:27 +08:00
handoff-route.test.ts feat(web): "Resume conversation in new chat" UI — #462 Commit B (companion to #1718) (#2264) 2026-05-20 13:28:27 +08:00
installation.test.ts feat(observability): web lifecycle telemetry + stable installationId migration (#2527) 2026-05-21 15:37:48 +08:00
json-event-stream.test.ts fix(daemon): fail disallowed connector tool selections (#2006) 2026-05-26 07:03:10 +00:00
langfuse-bridge.test.ts feat(analytics): PostHog product analytics (P0 events, consent-gated, packaged) (#1428) 2026-05-12 22:32:42 +08:00
langfuse-trace.test.ts feat(analytics): PostHog + Langfuse instrumentation for assistant feedback (#1558) 2026-05-21 19:28:51 +08:00
legacy-data-migrator.test.ts fix(daemon): add legacy data dir migrator 2026-05-07 15:19:04 +08:00
linked-dirs.test.ts Improve Windows beta packaging and installer flow (#768) 2026-05-07 16:44:15 +08:00
lint-artifact.test.ts fix(daemon): typecheck leaf modules (#943) 2026-05-08 20:01:25 +08:00
live-artifacts-routes.test.ts fix(daemon): typecheck leaf modules (#943) 2026-05-08 20:01:25 +08:00
live-artifacts-schema.test.ts Add live artifacts and Composio connector catalog (#381) 2026-05-05 16:42:11 +08:00
live-artifacts-store.test.ts Add live artifacts and Composio connector catalog (#381) 2026-05-05 16:42:11 +08:00
mcp-config.test.ts fix(mcp): forward external MCP servers to OpenCode (#2174) 2026-05-20 15:22:09 +08:00
mcp-create-artifact.test.ts Add normal artifact creation via MCP and CLI (#2057) 2026-05-18 17:50:38 +08:00
mcp-extract-refs.test.ts fix(daemon): typecheck leaf modules (#943) 2026-05-08 20:01:25 +08:00
mcp-get-artifact.test.ts chore(deps): upgrade express 4 -> 5 in daemon (#2311) 2026-05-26 03:16:48 +00:00
mcp-get-file.test.ts chore(deps): upgrade express 4 -> 5 in daemon (#2311) 2026-05-26 03:16:48 +00:00
mcp-get-project.test.ts Expose resolved project directory via MCP (#2802) 2026-05-26 02:25:03 +00:00
mcp-install-info.test.ts chore: align namespace lifecycle packaging 2026-05-14 16:35:46 +08:00
mcp-oauth.test.ts feat(mcp): external MCP client with daemon-managed OAuth and 39 design-focused templates (#898) 2026-05-08 17:59:20 +08:00
mcp-resolve-project.test.ts fix(daemon): typecheck leaf modules (#943) 2026-05-08 20:01:25 +08:00
mcp-spawn.test.ts feat(mcp): external MCP client with daemon-managed OAuth and 39 design-focused templates (#898) 2026-05-08 17:59:20 +08:00
mcp-tokens.test.ts feat(mcp): external MCP client with daemon-managed OAuth and 39 design-focused templates (#898) 2026-05-08 17:59:20 +08:00
mcp-write-tools.test.ts feat(mcp): add write_file, delete_file, delete_project tools (#2416) 2026-05-23 00:31:04 +08:00
media-alias-capability.test.ts feat(daemon): user-configurable model alias for the media dispatcher (#1277) (#1309) 2026-05-14 14:58:39 +08:00
media-config.test.ts feat(senseaudio): BYOK chat with image + video generation tools (#2065) 2026-05-19 23:14:56 +08:00
media-elevenlabs.test.ts feat(audio): add ElevenLabs audio support (#1384) 2026-05-13 15:53:41 +08:00
media-grok-tts.test.ts feat: integrate xAI SuperGrok subscription as a credential source for Grok media + X search (#2134) 2026-05-19 11:10:34 +08:00
media-nanobanana.test.ts feat(media): add Nano Banana image provider (#631) 2026-05-06 20:26:31 +08:00
media-openai-compatible-providers.test.ts feat(daemon): add OpenAI-compatible media providers (#1712) 2026-05-15 23:05:03 +08:00
media-senseaudio-image.test.ts feat(senseaudio): BYOK chat with image + video generation tools (#2065) 2026-05-19 23:14:56 +08:00
media-senseaudio.test.ts feat(media): add SenseAudio TTS provider (#1633) 2026-05-14 15:26:38 +08:00
media-tasks-persistence.test.ts Bug FIx: Media generation task state is volatile and lost on daemon restart #648 (#884) 2026-05-09 00:00:18 +08:00
media-tasks-routes.test.ts Bug FIx: Media generation task state is volatile and lost on daemon restart #648 (#884) 2026-05-09 00:00:18 +08:00
memory-config-route.test.ts test: expand Memory and Routines coverage (#1521) 2026-05-14 14:48:40 +08:00
memory-connectors.test.ts Add connector memory extraction flow (#2265) 2026-05-19 21:27:41 +08:00
memory-routes.test.ts Add connector memory extraction flow (#2265) 2026-05-19 21:27:41 +08:00
memory-tree.test.ts [codex] Add automation templates and proposal workflows (#2193) 2026-05-19 16:35:28 +08:00
message-delimiter-safety.test.ts fix: escape chat transcript role delimiters (#2156) 2026-05-19 15:37:35 +08:00
native-folder-dialog.test.ts Fix Windows link code folder dialog (#698) 2026-05-07 17:27:01 +08:00
orbit-agent-summary.test.ts fix(daemon): preserve Orbit no-artifact explanation (#1576) 2026-05-13 22:13:18 +08:00
orbit.test.ts Add Trae CLI as an ACP coding-agent adapter (#2729) 2026-05-23 15:17:42 +00:00
origin-validation.test.ts chore(deps): upgrade express 4 -> 5 in daemon (#2311) 2026-05-26 03:16:48 +00:00
parser.test.ts feat(daemon): Critique Theater Phase 6.2 (artifact extraction + endpoint) (#1085) 2026-05-10 23:59:04 +08:00
pdf-export.test.ts feat(desktop): export artifacts directly to PDF (#532) 2026-05-08 23:42:12 +08:00
pi-rpc.test.ts fix(daemon): typecheck leaf modules (#943) 2026-05-08 20:01:25 +08:00
pitch-deck-manifest-required-inputs.test.ts fix(daemon,web): block pitch-deck placeholder publishes and unbreak framework decks (#2384) 2026-05-20 16:20:34 +08:00
plugins-apply.test.ts chore: align namespace lifecycle packaging 2026-05-14 16:35:46 +08:00
plugins-asset-route.test.ts fix(plugins): reject symlinked plugin assets (#2036) 2026-05-26 07:03:22 +00:00
plugins-atom-bodies.test.ts feat(plugins): atom SKILL.md body loader + renderActiveStageBlock (spec §23.4) 2026-05-09 13:15:52 +00:00
plugins-atom-registry.test.ts feat(daemon, web): implement plugin folder installation and enhance atom worker registry 2026-05-12 21:38:45 +08:00
plugins-atoms-info.test.ts feat(plugins): od atoms info <id> + Phase 6/7/8 catalog promotion 2026-05-09 16:53:09 +00:00
plugins-auto-surfaces.test.ts feat(plugins): auto-derive choice surface for diff-review (Phase 8 entry slice) 2026-05-09 15:30:45 +00:00
plugins-build-test.test.ts feat(plugins): build-test atom shell-out runner (Phase 7 entry slice) 2026-05-09 14:30:36 +00:00
plugins-bundled-atom-prompts-default.test.ts feat(daemon): flip OD_BUNDLED_ATOM_PROMPTS default to ON (Phase 4) 2026-05-09 16:15:31 +00:00
plugins-bundled-atoms-roster.test.ts feat(plugins): Phase 6 + 7 + 8 atom SKILL.md substrate 2026-05-09 14:22:18 +00:00
plugins-bundled-scenarios-roster.test.ts feat(daemon, web): implement plugin sharing project creation and enhance CLI functionality 2026-05-13 07:01:12 +08:00
plugins-bundled.test.ts feat(plugins): add login and whoami commands for GitHub CLI authentication 2026-05-14 07:25:05 +08:00
plugins-canon.test.ts feat(plugins): od plugin canon <snapshotId> show prompt block (Phase 4) 2026-05-09 17:10:04 +00:00
plugins-code-import.test.ts feat(plugins): code-import atom repo walker (Phase 7 entry slice) 2026-05-09 14:33:53 +00:00
plugins-code-migration-e2e.test.ts test(plugins): full code-migration pipeline e2e smoke test (Phase 7-8) 2026-05-09 15:55:57 +00:00
plugins-connector-gate.test.ts feat(genui): introduce GenUI surface management and event handling 2026-05-09 18:44:04 +08:00
plugins-design-extract.test.ts feat(plugins): design-extract atom impl (Phase 6/7 entry slice) 2026-05-09 15:08:11 +00:00
plugins-diff-review-genui-bridge.test.ts feat(plugins): wire diff-review GenUI response \u2192 review/decision.json (Phase 8) 2026-05-09 15:48:21 +00:00
plugins-diff-review.test.ts feat(plugins): diff-review atom impl (Phase 7-8 entry slice) 2026-05-09 15:16:53 +00:00
plugins-diff.test.ts feat(plugins): od plugin diff <a> <b> (Phase 4 author tooling) 2026-05-09 16:48:58 +00:00
plugins-discovery-question-form-contract.test.ts Fix Simple Deck discovery form contract (#2602) 2026-05-22 14:05:24 +08:00
plugins-doctor-route.test.ts fix: validate plugin connector refs in doctor (#2164) 2026-05-24 16:28:00 +00:00
plugins-dod-e2e.test.ts feat(daemon, web): enhance plugin input handling and subcategory filtering 2026-05-12 22:09:26 +08:00
plugins-e2e-fixture.test.ts feat(plugins): introduce plugin system with installation and management capabilities 2026-05-09 18:24:44 +08:00
plugins-events-buffer.test.ts feat(plugins): plugin event ring buffer + SSE tail (Phase 4) 2026-05-09 17:55:39 +00:00
plugins-events-producers.test.ts feat(plugins): more event producer hooks (Phase 4) 2026-05-09 18:04:56 +00:00
plugins-events-purge.test.ts feat(plugins): od plugin events purge admin escape hatch (Phase 4) 2026-05-09 18:31:58 +00:00
plugins-events-stats.test.ts feat(plugins): od plugin events snapshot/stats + tail filters (Phase 4) 2026-05-09 18:10:50 +00:00
plugins-export.test.ts feat(plugins): od plugin scaffold + od plugin export (Phase 4 author tooling) 2026-05-09 12:22:16 +00:00
plugins-figma-extract.test.ts feat(plugins): figma-extract asset rasterisation second pass (Phase 6 entry slice) 2026-05-09 15:40:13 +00:00
plugins-figma-migration-e2e.test.ts test(plugins): figma-migration pipeline e2e smoke (Phase 6 entry slice) 2026-05-09 16:02:40 +00:00
plugins-genui-component.test.ts feat(plugins): od.genui.surfaces[].component manifest field (Phase 4) 2026-05-09 13:37:20 +00:00
plugins-genui-spec-enrichment.test.ts feat(daemon): enrich API responses with surface specs and add new flags 2026-05-11 20:27:05 +08:00
plugins-handoff-persist.test.ts feat(plugins): runAndPersistHandoff() + auto-handoff from diff-review bridge 2026-05-09 16:00:50 +00:00
plugins-handoff-pipeline.test.ts feat(plugins): runHandoffAtom() pipeline-driven bridge (Phase 8 entry slice) 2026-05-09 15:53:30 +00:00
plugins-handoff.test.ts feat(plugins): handoff atom + ArtifactManifest provenance fields 2026-05-09 14:48:29 +00:00
plugins-headless-run.test.ts Fix plugin publish and Open Design PR workflow UX (#2564) 2026-05-21 19:21:17 +08:00
plugins-installer-archive.test.ts Fix GitHub rate-limit fallback for marketplace plugins (#2064) 2026-05-18 18:30:15 +08:00
plugins-installer.test.ts feat(plugins): add registry protocol and enhance plugin management features 2026-05-14 08:55:36 +08:00
plugins-local-skill.test.ts feat(daemon, web): enhance plugin handling and UI integration 2026-05-12 20:42:40 +08:00
plugins-lockfile.test.ts feat(plugins): add registry protocol and enhance plugin management features 2026-05-14 08:55:36 +08:00
plugins-marketplace-doctor.test.ts feat(plugins): add registry protocol and enhance plugin management features 2026-05-14 08:55:36 +08:00
plugins-marketplaces.test.ts Garnet hemisphere (#1702) 2026-05-14 21:12:50 +08:00
plugins-pack.test.ts feat(plugins): od plugin pack <folder> author distribution archive (Phase 4) 2026-05-09 16:27:36 +00:00
plugins-patch-edit-atomic.test.ts feat(plugins): patch-edit atomic file writes (Phase 7 safety patch) 2026-05-09 16:38:46 +00:00
plugins-patch-edit.test.ts chore: align namespace lifecycle packaging 2026-05-14 16:35:46 +08:00
plugins-pipeline-runner.test.ts feat(daemon, web): implement plugin folder installation and enhance atom worker registry 2026-05-12 21:38:45 +08:00
plugins-preview-fallback.test.ts feat(daemon, web): enhance plugin preview handling and add new templates 2026-05-13 20:58:24 +08:00
plugins-preview-route.test.ts [codex] Polish home composer working-directory controls (#2468) 2026-05-21 00:22:46 +08:00
plugins-publish.test.ts fix(plugins): wire Open Design "Open Design PR" button end-to-end (#2182) 2026-05-19 15:26:59 +08:00
plugins-rewrite-plan.test.ts feat(plugins): rewrite-plan atom impl (Phase 7 entry slice) 2026-05-09 15:10:47 +00:00
plugins-scaffold.test.ts feat(plugins): od plugin scaffold + od plugin export (Phase 4 author tooling) 2026-05-09 12:22:16 +00:00
plugins-scenario-fallback.test.ts feat(plugins): wire bundled-scenario pipeline fallback through apply (spec §23.3.3) 2026-05-09 15:05:54 +00:00
plugins-search.test.ts feat(plugins): od plugin search + filters on od plugin list (Phase 4) 2026-05-09 16:33:48 +00:00
plugins-simulate.test.ts feat(plugins): od plugin simulate <id> pipeline dry-run (Phase 4) 2026-05-09 17:25:51 +00:00
plugins-snapshot-diff.test.ts feat(plugins): od plugin snapshots show / diff debugging tools (Phase 4) 2026-05-09 17:03:29 +00:00
plugins-snapshot-gc.test.ts feat(plugins): OD_SNAPSHOT_RETENTION_DAYS referenced-row TTL (PB2) 2026-05-09 14:07:02 +00:00
plugins-snapshots.test.ts feat(plugins): add login and whoami commands for GitHub CLI authentication 2026-05-14 07:25:05 +08:00
plugins-stats.test.ts feat(plugins): od plugin manifest <id> + od plugin sources (Phase 4) 2026-05-09 18:25:15 +00:00
plugins-token-map.test.ts feat(plugins): token-map atom impl (Phase 6/7 entry slice) 2026-05-09 15:24:22 +00:00
plugins-tool-token-gate.test.ts feat(plugins): trust mutation + connector tool-token gate 2026-05-09 11:14:51 +00:00
plugins-trust.test.ts feat(plugins): trust mutation + connector tool-token gate 2026-05-09 11:14:51 +00:00
plugins-until.test.ts feat(genui): introduce GenUI surface management and event handling 2026-05-09 18:44:04 +08:00
plugins-upgrade.test.ts chore: align namespace lifecycle packaging 2026-05-14 16:35:46 +08:00
plugins-validate.test.ts feat(plugins): od plugin validate <folder> author-side lint (Phase 4) 2026-05-09 16:21:57 +00:00
plugins-verify.test.ts feat(plugins,daemon): doctor --strict + db vacuum (Phase 4 + 5) 2026-05-09 17:47:28 +00:00
project-archive.test.ts Improve responsive preview and design handoff outputs (#1224) 2026-05-12 14:18:33 +08:00
project-classifiers.test.ts fix: serve python files as text (#947) 2026-05-08 21:10:22 +08:00
project-design-system-routes.test.ts [codex] Land design system GitHub intake handoff (#2187) 2026-05-19 14:30:17 +08:00
project-file-range.test.ts feat(daemon): HTTP 206 range request support for video/audio files Fixes #784 (#1105) 2026-05-10 12:16:52 +08:00
project-file-rename.test.ts feat: add design file rename support (#894) 2026-05-09 21:24:36 +08:00
project-plugin-manifest.test.ts fix(daemon): reject unsafe plugin manifest names (#2757) 2026-05-23 12:53:39 +08:00
project-status.test.ts fix(web): freeze completed run durations across conversations (#1351) 2026-05-14 14:25:37 +08:00
project-watchers.test.ts fix: ignore generated project dirs before watching (#2838) 2026-05-25 06:32:45 +00:00
projects-routes.test.ts Consolidate chat comments preview on main (#2906) 2026-05-26 10:31:19 +00:00
projects-stub-guard.test.ts feat(daemon): guard against agent-emitted stub artifact regressions (#1171) 2026-05-11 19:59:37 +08:00
proxy-routes.test.ts Fix Gemini BYOK model URL normalization (#2761) 2026-05-24 03:23:36 +00:00
qa-cta-hierarchy.test.ts feat(daemon): add CTA hierarchy static QA pass (refs #2251) (#2427) 2026-05-22 16:53:14 +08:00
qoder-stream.test.ts fix(daemon): typecheck leaf modules (#943) 2026-05-08 20:01:25 +08:00
redact.test.ts [codex] Improve Claude Code exit diagnostics (#1267) 2026-05-12 00:08:31 +08:00
registry-backends.test.ts feat(plugins): add registry protocol and enhance plugin management features 2026-05-14 08:55:36 +08:00
research-cli.test.ts feat: agent-callable research command and /search (#615) 2026-05-08 10:33:44 +08:00
research-contract.test.ts feat: agent-callable research command and /search (#615) 2026-05-08 10:33:44 +08:00
research.test.ts feat: agent-callable research command and /search (#615) 2026-05-08 10:33:44 +08:00
resolve-data-dir.test.ts fix: batch of small bug fixes (#283, #275, #390) (#530) 2026-05-07 11:17:02 +08:00
routine-routes.test.ts [codex] Add automation templates and proposal workflows (#2193) 2026-05-19 16:35:28 +08:00
routines.test.ts test: expand Memory and Routines coverage (#1521) 2026-05-14 14:48:40 +08:00
run-artifacts.test.ts feat(analytics): full design-system event family + DS run variant (#2706) 2026-05-22 17:18:57 +08:00
run-result.test.ts fix(analytics): app_version=0.0.0 + media providers clicks + lock run_finished error_code (#2453) 2026-05-20 21:50:11 +08:00
runs.test.ts fix(daemon): restore full assistant turn after mid-flight reload reattach (#2383) 2026-05-22 18:47:12 +08:00
sanitize-name.test.ts fix(daemon): preserve non-ASCII filenames on multipart upload (#166) 2026-04-30 19:49:43 +08:00
server-cors.test.ts test: expand home entry and html preview coverage (#2992) 2026-05-26 14:48:35 +00:00
server-keepalive.test.ts fix(daemon): widen HTTP keep-alive on the daemon listener (#2557) 2026-05-26 04:03:44 +00:00
server-paths.test.ts Migrate beta release publishing to R2 (#805) 2026-05-07 19:13:52 +08:00
setup.ts Fix Windows connector CLI tests (#2809) 2026-05-24 14:42:28 +00:00
sidecar-server.test.ts Centralize daemon startup (#2054) 2026-05-18 17:08:17 +08:00
sidecar-startup.test.ts Centralize daemon startup (#2054) 2026-05-18 17:08:17 +08:00
sidecar-status-snapshot.test.ts Centralize daemon startup (#2054) 2026-05-18 17:08:17 +08:00
skill-asset-rewrite.test.ts feat(skills): open-design-landing rename, kami skills, landing OG (#428) 2026-05-04 19:22:46 +08:00
skill-id-aliases.test.ts fix(daemon): typecheck leaf modules (#943) 2026-05-08 20:01:25 +08:00
skill-plugin-candidates.test.ts Formalize skill artifacts into plugins (#3085) 2026-05-27 08:26:00 +00:00
skills-delete-route.test.ts feat: generic skills + split skills/design-templates + finalize-design API (#955) 2026-05-11 17:48:34 +08:00
skills.test.ts Merge origin/main into release/v0.8.0 2026-05-23 12:17:18 +08:00
sse-response.test.ts fix(daemon): typecheck leaf modules (#943) 2026-05-08 20:01:25 +08:00
static-resource-routes.test.ts fix(daemon): resolve imported design systems in user catalog (#3014) 2026-05-26 15:00:25 +00:00
static-spa-fallback.test.ts [codex] Add automation templates and proposal workflows (#2193) 2026-05-19 16:35:28 +08:00
storage-db-inspect.test.ts feat(daemon): od daemon db status SQLite inventory (Phase 5) 2026-05-09 17:39:20 +00:00
storage-db-verify.test.ts feat(daemon): od daemon db verify SQLite integrity check (Phase 5) 2026-05-09 18:16:41 +00:00
storage.test.ts feat(daemon): S3ProjectStorage live impl via AWS SigV4 (Phase 5) 2026-05-09 16:10:05 +00:00
structured-streams.test.ts fix: preserve Claude tool inputs (#1476) 2026-05-13 11:25:02 +08:00
swift-colors.test.ts Capture native (Swift) source in the GitHub design import (#2847) 2026-05-25 05:17:47 +00:00
system-prompt-template.test.ts [codex] Land design system GitHub intake handoff (#2187) 2026-05-19 14:30:17 +08:00
telemetry-message-finalization.test.ts fix(daemon): surface discovery form answers to agents (#2071) 2026-05-20 10:58:51 +08:00
tool-tokens.test.ts Add live artifacts and Composio connector catalog (#381) 2026-05-05 16:42:11 +08:00
tools-connectors-cli.test.ts Fix Windows connector CLI tests (#2809) 2026-05-24 14:42:28 +00:00
tools-live-artifacts-cli.test.ts Add live artifacts and Composio connector catalog (#381) 2026-05-05 16:42:11 +08:00
transcript-export.test.ts feat(web): "Resume conversation in new chat" UI — #462 Commit B (companion to #1718) (#2264) 2026-05-20 13:28:27 +08:00
uncaught-fatal-shutdown.test.ts feat(observability): web lifecycle telemetry + stable installationId migration (#2527) 2026-05-21 15:37:48 +08:00
update-apply-observations.test.ts Support nightly and preview package identity (#2437) 2026-05-20 19:46:39 +08:00
user-facing-agent-label.test.ts fix(daemon): hide agent executable paths from chat status (#2874) (#3046) 2026-05-27 06:22:56 +00:00
version-route.test.ts fix(daemon): restore startServer Promise contract — return url / { url, server } (#268) 2026-05-02 20:56:06 +08:00
xai-credentials.test.ts feat: integrate xAI SuperGrok subscription as a credential source for Grok media + X search (#2134) 2026-05-19 11:10:34 +08:00
xai-oauth-server.test.ts feat: integrate xAI SuperGrok subscription as a credential source for Grok media + X search (#2134) 2026-05-19 11:10:34 +08:00
xai-oauth.test.ts feat: integrate xAI SuperGrok subscription as a credential source for Grok media + X search (#2134) 2026-05-19 11:10:34 +08:00
xai-routes.test.ts feat: integrate xAI SuperGrok subscription as a credential source for Grok media + X search (#2134) 2026-05-19 11:10:34 +08:00
xai-tokens.test.ts feat: integrate xAI SuperGrok subscription as a credential source for Grok media + X search (#2134) 2026-05-19 11:10:34 +08:00