openclaw/src/agents
stain lu ecfaf64526
fix: align host tilde paths with OS home (#62804) (thanks @stainlu)
* fix(tools): expand tilde in host edit/write paths (non-workspace mode)

* test: use it.runIf for visible skip when tmpdir is not under home

* fix(tools): address Codex P2 review on tilde host edit/write

Responds to two P2 findings from chatgpt-codex-connector on #62804:

1. Tests never ran in CI. The it.runIf(tmpdirUnderHome) guard always
   skipped on Linux runners where os.tmpdir() is /tmp, outside $HOME, so
   the regression tests reported green without executing. Tmpdirs now use
   the test-isolated HOME (process.env.HOME from test/test-env.ts) so
   tests run in every environment and match what expandHomePrefix
   resolves, keeping them hermetic.

2. Edit recovery path resolution was inconsistent. resolveEditPath
   inlined os.homedir() for tilde expansion, bypassing OPENCLAW_HOME,
   while the write/edit operations use expandHomePrefix. Under a custom
   OPENCLAW_HOME, wrapEditToolWithRecovery's readback targeted a
   different file than the edit actually touched, so successful edits
   could be reported as failures. resolveEditPath now uses the same
   expandHomePrefix helper.

* test(tools): verify tilde expansion honors OPENCLAW_HOME override

The prior tests covered tilde expansion but only under the default test
home, which matches os.homedir(). That passed whether the production code
used expandHomePrefix() or inlined os.homedir() — the behaviors only
diverge when OPENCLAW_HOME is set to a path outside $HOME.

Adds four tests that set OPENCLAW_HOME to a temp dir explicitly outside
$HOME and verify that write/mkdir/read/access tilde operations resolve
against OPENCLAW_HOME, not os.homedir(). These would fail if
pi-tools.read.ts or pi-tools.host-edit.ts reverted to os.homedir(),
directly covering the Codex P2 feedback about OPENCLAW_HOME consistency.

Uses the same env snapshot/restore pattern as test/helpers/temp-home.ts.

* Agents: resolve host tilde paths against OS home

* fix: align host tilde paths with OS home (#62804) (thanks @stainlu)

* fix: keep the changelog entry in the active block (#62804) (thanks @stainlu)

---------

Co-authored-by: Ayaan Zaidi <hi@obviy.us>
2026-04-16 14:37:55 +05:30
..
auth-profiles perf(auth-profiles): narrow source check path imports 2026-04-13 17:23:59 +01:00
cli-runner perf(agents): lazy-load cli runner seams 2026-04-13 20:43:58 +01:00
command fix(agents): normalize cli transcript api field 2026-04-16 09:30:31 +05:30
harness fix(active-memory): stop caller timeouts from continuing failover (#65046) 2026-04-11 20:20:37 -05:00
pi-embedded-helpers fix(agents): classify connection-mismatch replay errors as replay-invalid (#66475) 2026-04-15 22:49:11 +03:00
pi-embedded-runner fix: tighten trusted tool media passthrough (#67303) 2026-04-15 13:12:44 -06:00
pi-hooks Fix dreaming replay, repair polluted artifacts, and gate wiki tabs (#65138) 2026-04-12 00:25:11 -05:00
sandbox test: bound docker fs bridge probes 2026-04-13 20:49:39 -07:00
schema fix: sanitize Gemini tool schema required fields (#64284) (thanks @xxxxxmax) 2026-04-10 15:01:37 +01:00
skills test: fix upstream type drift 2026-04-15 19:31:10 +01:00
test-helpers perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
tools fix(context-window): Tighten context limits and bound memory excerpts (#67277) 2026-04-15 13:06:02 -05:00
acp-binding-architecture.guardrail.test.ts
acp-spawn-parent-stream.test.ts fix(acp): suppress commentary relay leakage 2026-04-11 13:36:20 +01:00
acp-spawn-parent-stream.ts fix(utils): bypass delivery context wrapper for shared consumers 2026-04-11 17:26:38 +01:00
acp-spawn.test.ts test(agents): update Matrix ACP delivery expectation 2026-04-12 16:22:58 +01:00
acp-spawn.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
agent-command.live-model-switch.test.ts perf(agents): lazy-load session store updates 2026-04-13 21:07:50 +01:00
agent-command.ts fix(agents): preserve cli session metadata before transcript persist (#67490) 2026-04-16 09:30:31 +05:30
agent-paths.test.ts
agent-paths.ts
agent-scope-config.ts fix(context-window): Tighten context limits and bound memory excerpts (#67277) 2026-04-15 13:06:02 -05:00
agent-scope.test.ts fix(context-window): Tighten context limits and bound memory excerpts (#67277) 2026-04-15 13:06:02 -05:00
agent-scope.ts fix(context-window): Tighten context limits and bound memory excerpts (#67277) 2026-04-15 13:06:02 -05:00
announce-idempotency.ts
anthropic-payload-log.test.ts
anthropic-payload-log.ts
anthropic-payload-policy.test.ts fix(cache): enable prompt cache retention for Anthropic Vertex AI (#60888) 2026-04-05 08:07:02 +01:00
anthropic-payload-policy.ts fix(cache): enable prompt cache retention for Anthropic Vertex AI (#60888) 2026-04-05 08:07:02 +01:00
anthropic-transport-stream.test.ts fix: guard Anthropic Messages max tokens (#66664) 2026-04-14 15:05:04 -07:00
anthropic-transport-stream.ts fix: guard Anthropic Messages max tokens (#66664) 2026-04-14 15:05:04 -07:00
anthropic-vertex-stream.test.ts test: speed up stream and bash tool tests 2026-04-08 00:09:07 +01:00
anthropic-vertex-stream.ts refactor: move plugin setup and memory capabilities to registries 2026-04-05 14:53:53 +01:00
anthropic.setup-token.live.test.ts docs(test): refresh stale model refs 2026-04-04 08:05:49 +01:00
api-key-rotation.ts
apply-patch-update.ts
apply-patch.test.ts
apply-patch.ts
auth-health.test.ts
auth-health.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
auth-profiles.chutes.test.ts test: mock auth profile external overlay in oauth tests 2026-04-09 01:56:13 +01:00
auth-profiles.cooldown-auto-expiry.test.ts
auth-profiles.doctor.test.ts feat(qwen): add qwen provider and video generation 2026-04-04 19:34:56 +01:00
auth-profiles.ensureauthprofilestore.test.ts perf: trim agent test runtime imports 2026-04-11 13:55:07 +01:00
auth-profiles.external-cli-sync.test.ts test: isolate agentic suite smoke tests 2026-04-09 01:38:24 +01:00
auth-profiles.getsoonestcooldownexpiry.test.ts docs(test): refresh stale model refs 2026-04-04 08:05:49 +01:00
auth-profiles.markauthprofilefailure.test.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
auth-profiles.readonly-sync.test.ts test: speed up auth profile store tests 2026-04-07 23:17:39 +01:00
auth-profiles.resolve-auth-profile-order.does-not-prioritize-lastgood-round-robin-ordering.test.ts
auth-profiles.resolve-auth-profile-order.fixtures.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
auth-profiles.resolve-auth-profile-order.normalizes-z-ai-aliases-auth-order.test.ts
auth-profiles.resolve-auth-profile-order.orders-by-lastused-no-explicit-order-exists.test.ts test: trim heavy imports and harden ci checks 2026-04-10 19:23:10 +01:00
auth-profiles.resolve-auth-profile-order.uses-stored-profiles-no-config-exists.test.ts
auth-profiles.runtime.ts
auth-profiles.store-cache.test.ts test: speed up auth profile store tests 2026-04-07 23:17:39 +01:00
auth-profiles.store.save.test.ts perf(agents): remove slow browser and auth test paths 2026-04-07 07:50:17 +01:00
auth-profiles.ts perf(pdf): remove media/runtime lookup overhead 2026-04-07 05:58:16 +01:00
bash-process-registry.test-helpers.ts
bash-process-registry.test.ts
bash-process-registry.ts fix: preserve Telegram topic routing for exec completions (#64580) 2026-04-11 15:47:53 -07:00
bash-tools.build-docker-exec-args.test.ts
bash-tools.descriptions.ts perf: reduce test import overhead 2026-04-10 23:09:37 +01:00
bash-tools.exec-approval-followup.test.ts refactor: simplify exec approval followup delivery 2026-04-02 17:19:42 +01:00
bash-tools.exec-approval-followup.ts fix(reply): bypass heavy error helper imports 2026-04-11 21:47:40 +01:00
bash-tools.exec-approval-request.test.ts test: reduce agent test import churn 2026-04-03 04:41:09 +01:00
bash-tools.exec-approval-request.ts chore: enable no-unnecessary-type-arguments 2026-04-10 20:14:49 +01:00
bash-tools.exec-foreground-failures.test.ts test: isolate agentic suite smoke tests 2026-04-09 01:38:24 +01:00
bash-tools.exec-host-gateway.test.ts fix: repair latest main gates 2026-04-06 20:31:34 +01:00
bash-tools.exec-host-gateway.ts fix: this is a real approval boundary bypass that tur (#323) (#62078) 2026-04-06 13:13:35 -06:00
bash-tools.exec-host-node.test.ts fix: repair latest main gates 2026-04-06 20:31:34 +01:00
bash-tools.exec-host-node.ts chore: enable no-unnecessary-type-arguments 2026-04-10 20:14:49 +01:00
bash-tools.exec-host-shared.test.ts test: stabilize full-suite execution 2026-04-08 19:40:57 +01:00
bash-tools.exec-host-shared.ts test: stabilize full-suite execution 2026-04-08 19:40:57 +01:00
bash-tools.exec-runtime.test.ts fix: preserve Telegram topic routing for exec completions (#64580) 2026-04-11 15:47:53 -07:00
bash-tools.exec-runtime.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
bash-tools.exec-types.ts fix: make elevated full truthful 2026-04-11 01:19:32 +01:00
bash-tools.exec.approval-id.test.ts test(agents): trim hot replay approval suites 2026-04-15 00:29:09 +01:00
bash-tools.exec.background-abort.test.ts test: speed up stream and bash tool tests 2026-04-08 00:09:07 +01:00
bash-tools.exec.path.test.ts test: stabilize vitest full-suite runner 2026-04-10 19:17:39 +01:00
bash-tools.exec.pty-cleanup.test.ts test: speed up stream and bash tool tests 2026-04-08 00:09:07 +01:00
bash-tools.exec.pty-fallback-failure.test.ts test: speed up stream and bash tool tests 2026-04-08 00:09:07 +01:00
bash-tools.exec.pty-fallback.test.ts test: speed up stream and bash tool tests 2026-04-08 00:09:07 +01:00
bash-tools.exec.pty.test.ts perf: optimize test import surfaces 2026-04-10 23:48:03 +01:00
bash-tools.exec.script-preflight.test.ts test(agents): fix tsgo typing regressions 2026-04-12 17:02:24 +01:00
bash-tools.exec.ts fix: preserve Telegram topic routing for exec completions (#64580) 2026-04-11 15:47:53 -07:00
bash-tools.process-send-keys.test.ts test: move send-keys validation to helper 2026-04-11 12:43:16 +01:00
bash-tools.process-send-keys.ts test: move send-keys validation to helper 2026-04-11 12:43:16 +01:00
bash-tools.process.poll-timeout.test.ts fix(ci): clean poll-timeout test merge artifact 2026-04-06 17:06:22 +01:00
bash-tools.process.send-keys.test.ts test: move send-keys validation to helper 2026-04-11 12:43:16 +01:00
bash-tools.process.supervisor.test.ts test: reduce agent test import churn 2026-04-03 04:41:09 +01:00
bash-tools.process.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
bash-tools.schemas.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
bash-tools.shared.test.ts
bash-tools.shared.ts fix(cycles): reduce remaining static import seams 2026-04-11 02:46:41 +01:00
bash-tools.test.ts test(agents): share notify heartbeat wake helper 2026-04-12 16:43:39 +01:00
bash-tools.ts perf: reduce test import overhead 2026-04-10 23:09:37 +01:00
bootstrap-budget.test.ts
bootstrap-budget.ts refactor: dedupe agent trimmed readers 2026-04-08 00:09:41 +01:00
bootstrap-cache.test.ts test: reduce agent test import churn 2026-04-03 04:41:09 +01:00
bootstrap-cache.ts
bootstrap-files.test.ts fix: respect disabled heartbeat guidance 2026-04-08 00:51:13 +01:00
bootstrap-files.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
bootstrap-hooks.test.ts
bootstrap-hooks.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
btw.test.ts fix: stabilize Codex harness landing checks 2026-04-10 21:22:16 +01:00
btw.ts fix(cycles): split reply payload and option contracts 2026-04-11 22:24:55 +01:00
bundle-mcp-shared.test-harness.ts refactor: dedupe repeated test helpers 2026-04-08 09:58:22 +01:00
bundle-mcp.test-harness.ts refactor: dedupe repeated test helpers 2026-04-08 09:58:22 +01:00
cache-trace.test.ts fix(ci): await async provider test registration 2026-04-04 09:28:43 +01:00
cache-trace.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
channel-tools.test.ts test: dedupe core test teardown paths 2026-04-03 07:14:58 +01:00
channel-tools.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
chutes-oauth.flow.test.ts
chutes-oauth.test.ts
chutes-oauth.ts refactor: dedupe bluebubbles and zalouser readers 2026-04-07 08:40:34 +01:00
claude-cli-runner.ts Revert "refactor(cli): remove custom cli backends" 2026-04-06 13:40:42 +01:00
cli-auth-epoch.test.ts Revert "refactor(cli): remove custom cli backends" 2026-04-06 13:40:42 +01:00
cli-auth-epoch.ts chore: enable consistent-return 2026-04-10 20:56:43 +01:00
cli-backends.test.ts test: inject cli backend fixtures 2026-04-10 16:33:37 +01:00
cli-backends.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
cli-credentials.test.ts Revert "refactor(cli): remove custom cli backends" 2026-04-06 13:40:42 +01:00
cli-credentials.ts refactor: dedupe agent error formatting 2026-04-07 02:03:34 +01:00
cli-output.test.ts fix(trace command): Improve trace raw diagnostics and trace command UX (#66089) 2026-04-13 14:26:57 -05:00
cli-output.ts fix(trace command): Improve trace raw diagnostics and trace command UX (#66089) 2026-04-13 14:26:57 -05:00
cli-runner.bundle-mcp.e2e.test.ts fix: stabilize docker live tests 2026-04-06 19:31:16 +01:00
cli-runner.helpers.test.ts fix: pass system prompt to codex cli 2026-04-08 18:15:10 +01:00
cli-runner.reliability.test.ts fix(trace command): Improve trace raw diagnostics and trace command UX (#66089) 2026-04-13 14:26:57 -05:00
cli-runner.runtime.ts Revert "refactor(cli): remove bundled cli text providers" 2026-04-06 13:40:41 +01:00
cli-runner.spawn.test.ts test: trim agents shard waits 2026-04-10 21:07:12 +01:00
cli-runner.test-support.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
cli-runner.ts perf(agents): lazy-load cli runner seams 2026-04-13 20:43:58 +01:00
cli-session.test.ts Revert "refactor(cli): remove custom cli backends" 2026-04-06 13:40:42 +01:00
cli-session.ts refactor: dedupe helper alias readers 2026-04-07 08:40:34 +01:00
cli-watchdog-defaults.ts
codex-native-web-search.shared.ts perf(tests): trim hot wizard and infra setup work 2026-04-14 22:42:32 +01:00
codex-native-web-search.test.ts
codex-native-web-search.ts perf(tests): trim hot wizard and infra setup work 2026-04-14 22:42:32 +01:00
command-poll-backoff.runtime.ts
command-poll-backoff.test.ts
command-poll-backoff.ts
compaction-real-conversation.ts
compaction.identifier-policy.test.ts
compaction.identifier-preservation.test.ts test: trim agents importActual mocks 2026-04-03 20:00:35 +01:00
compaction.retry.test.ts docs(test): refresh stale model refs 2026-04-04 08:05:49 +01:00
compaction.summarize-fallback.test.ts Tests: use timeout-classed compaction failure 2026-04-08 00:39:22 +01:00
compaction.test.ts fix: preserve compaction split after trailing tool results 2026-04-04 22:34:05 +05:30
compaction.token-sanitize.test.ts chore(agents): drop stale lint comments 2026-04-06 15:59:22 +01:00
compaction.tool-result-details.test.ts docs(test): refresh stale model refs 2026-04-04 08:05:49 +01:00
compaction.ts feat: add pluggable compaction provider registry (#56224) 2026-04-07 10:55:34 -07:00
configured-provider-fallback.ts fix(providers): stabilize runtime normalization hooks 2026-04-04 19:34:56 +01:00
console-sanitize.ts
content-blocks.test.ts
content-blocks.ts
context-cache.ts
context-runtime-state.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
context-window-guard.test.ts Agents: clarify local model context preflight (#66236) 2026-04-14 15:38:10 +10:00
context-window-guard.ts Agents: clarify local model context preflight (#66236) 2026-04-14 15:38:10 +10:00
context.eager-warmup.test.ts tests: document config mock choice for eager warmup 2026-04-09 01:35:15 +01:00
context.lookup.test.ts test: speed up agent runtime helper tests 2026-04-08 00:30:22 +01:00
context.test.ts test: avoid context discovery in fast unit tests 2026-04-11 02:46:13 +01:00
context.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
copilot-dynamic-headers.ts fix(github-copilot): send IDE auth headers on runtime requests (#60755) 2026-04-04 17:22:19 +09:00
current-time.ts
custom-api-registry.test.ts
custom-api-registry.ts
date-time.ts fix: remove em dashes from prompt text 2026-04-05 18:51:33 +01:00
defaults.ts refactor(providers): remove core default and usage bias 2026-04-04 07:19:29 +01:00
docs-path.ts
embedded-agent.ts feat: add pluggable agent harness registry 2026-04-10 21:22:16 +01:00
embedded-pi-lsp.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
embedded-pi-mcp.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
exec-approval-result.test.ts refactor(agent): share exec parser and runtime context codec 2026-04-03 00:15:43 +09:00
exec-approval-result.ts refactor: dedupe agent lowercase helpers 2026-04-07 17:50:37 +01:00
exec-defaults.test.ts fix: a sandboxed agent can request host node in an ex (#384) (#63880) 2026-04-10 10:40:27 -06:00
exec-defaults.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
execution-contract.test.ts test(qa-lab): seed broken-turn recovery scenarios (#66416) 2026-04-14 09:03:49 +01:00
execution-contract.ts test(qa-lab): seed broken-turn recovery scenarios (#66416) 2026-04-14 09:03:49 +01:00
failover-error.test.ts fix: classify invalid-model fallback errors (#50028) 2026-04-14 20:32:29 +03:00
failover-error.ts perf(agents): narrow failover helper imports 2026-04-13 17:21:21 +01:00
failover-policy.test.ts Agents: allow cooldown probe for timeout failover reason 2026-04-10 13:52:37 +05:30
failover-policy.ts Agents: allow cooldown probe for timeout failover reason 2026-04-10 13:52:37 +05:30
fast-mode.test.ts
fast-mode.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
github-copilot-token.test.ts fix(github-copilot): send IDE auth headers on runtime requests (#60755) 2026-04-04 17:22:19 +09:00
github-copilot-token.ts refactor: dedupe agent lowercase helpers 2026-04-07 17:50:37 +01:00
glob-pattern.ts
google-gemini-switch.live.test.ts
google-transport-stream.test.ts test(agents): share gemini model fixture 2026-04-12 16:38:25 +01:00
google-transport-stream.ts fix(agents): preserve malformed function-call arguments instead of silent {} replacement (#61956) 2026-04-10 16:20:26 -07:00
heartbeat-system-prompt.test.ts fix: respect disabled heartbeat guidance 2026-04-08 00:51:13 +01:00
heartbeat-system-prompt.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
identity-avatar.test.ts fix(avatar): check ui.assistant.avatar in resolveAvatarSource (#60778) 2026-04-05 00:36:02 +03:00
identity-avatar.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
identity-file.test.ts [Fix] agents.create RPC: support model param, write identity to config (#61577) 2026-04-10 14:36:22 +08:00
identity-file.ts [Fix] agents.create RPC: support model param, write identity to config (#61577) 2026-04-10 14:36:22 +08:00
identity.human-delay.test.ts
identity.per-channel-prefix.test.ts
identity.test.ts
identity.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
image-sanitization.test.ts
image-sanitization.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
internal-event-contract.ts fix(gateway): accept music generation internal events 2026-04-06 02:18:15 +01:00
internal-events.ts fix(agents): carry async media wake attachments structurally 2026-04-06 03:03:53 +01:00
internal-runtime-context.test.ts refactor(agent): share exec parser and runtime context codec 2026-04-03 00:15:43 +09:00
internal-runtime-context.ts refactor(agent): share exec parser and runtime context codec 2026-04-03 00:15:43 +09:00
lanes.test.ts
lanes.ts
live-auth-keys.test.ts test: harden provider mock isolation 2026-04-08 19:59:36 +01:00
live-auth-keys.ts test: stabilize full-suite execution 2026-04-08 19:40:57 +01:00
live-cache-regression-baseline.ts ci: gate releases on live cache floors 2026-04-04 15:44:34 +09:00
live-cache-regression-runner.ts refactor: dedupe agent lowercase helpers 2026-04-07 17:50:37 +01:00
live-cache-regression.live.test.ts ci: gate releases on live cache floors 2026-04-04 15:44:34 +09:00
live-cache-test-support.ts fix(ci): unblock agent typing and cache startup metadata 2026-04-04 07:04:17 +01:00
live-model-errors.test.ts fix: classify openrouter json 404 model errors 2026-04-13 19:53:55 +01:00
live-model-errors.ts fix: restore model-scoped deprecation fallback matching 2026-04-10 13:57:00 +05:30
live-model-filter.ts test: cap broad live model sweeps 2026-04-09 01:37:55 +01:00
live-model-switch-error.ts refactor: trim cron session startup imports 2026-04-03 16:03:10 +01:00
live-model-switch.test.ts Feat: Add Active Memory recall plugin (#63286) 2026-04-09 11:27:37 -05:00
live-model-switch.ts fix(control-ui): preserve configured model metadata in picker (#61382) 2026-04-09 16:28:43 +05:30
live-target-matcher.test.ts test: stabilize agent auth and approval suites 2026-04-07 05:46:13 +01:00
live-target-matcher.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
live-test-helpers.test.ts
live-test-helpers.ts
mcp-config-shared.ts
mcp-http.ts
mcp-stdio.ts
mcp-transport-config.test.ts
mcp-transport-config.ts refactor: dedupe reply lowercase helpers 2026-04-07 11:18:18 +01:00
mcp-transport.ts refactor: dedupe agent trimmed readers 2026-04-08 00:09:42 +01:00
media-generation-task-status-shared.ts refactor: dedupe agent lowercase helpers 2026-04-07 17:50:37 +01:00
memory-search.test.ts feat: LM Studio Integration (#53248) 2026-04-13 15:22:44 +08:00
memory-search.ts refactor: remove redundant memory config conversions 2026-04-10 23:11:00 +01:00
minimax-docs.test.ts refactor: remove core test extension leaks 2026-04-05 19:54:57 +01:00
minimax-vlm.normalizes-api-key.test.ts
minimax-vlm.ts fix: add 60s timeout to MiniMax VLM fetch call 2026-04-04 20:15:13 +09:00
minimax.live.test.ts
model-alias-lines.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
model-allowlist-ref.ts refactor(providers): centralize provider model policy 2026-04-04 06:16:48 +01:00
model-auth-env-vars.ts feat(plugins): support provider auth aliases 2026-04-08 19:03:04 +01:00
model-auth-env.ts test: trim heavy imports and harden ci checks 2026-04-10 19:23:10 +01:00
model-auth-label.test.ts
model-auth-label.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
model-auth-markers.test.ts test: isolate model auth module state 2026-04-09 01:44:31 +01:00
model-auth-markers.ts fix(auth): resolve custom env markers dynamically 2026-04-07 15:17:31 +01:00
model-auth-runtime-shared.ts
model-auth.profiles.test.ts test(agents): fix tsgo typing regressions 2026-04-12 17:02:24 +01:00
model-auth.test.ts fix(secrets): align SecretRef inspect/strict behavior across preload/runtime paths (#66818) 2026-04-14 17:59:28 -05:00
model-auth.ts fix(secrets): align SecretRef inspect/strict behavior across preload/runtime paths (#66818) 2026-04-14 17:59:28 -05:00
model-catalog.runtime.ts
model-catalog.test-harness.ts lint: enable no extraneous class 2026-04-11 01:45:06 +01:00
model-catalog.test.ts lint: enable no extraneous class 2026-04-11 01:45:06 +01:00
model-catalog.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
model-catalog.types.ts fix(cycles): split residual shared type seams 2026-04-11 02:46:40 +01:00
model-compat.test.ts feat(codex): add gpt-5.4-pro forward compat (#66453) 2026-04-14 11:05:24 +01:00
model-fallback-auth.runtime.ts perf(agents): keep model fallback auth runtime cold 2026-04-13 16:50:30 +01:00
model-fallback-observation.ts fix: tighten codex app-server lifecycle 2026-04-12 16:15:01 +01:00
model-fallback.probe.test.ts test: mock model fallback source check 2026-04-13 20:49:39 -07:00
model-fallback.run-embedded.e2e.test.ts fix(cycles): bypass context engine and config barrels 2026-04-11 23:12:24 +01:00
model-fallback.test.ts fix: classify invalid-model fallback errors (#50028) 2026-04-14 20:32:29 +03:00
model-fallback.ts perf(agents): use lightweight model fallback selection helpers 2026-04-13 18:12:09 +01:00
model-fallback.types.ts fix(cycles): cut madge back-edges in agent and cron types 2026-04-12 12:40:25 +01:00
model-ref-profile.test.ts fix(model-ref): recompute suffix after @YYYYMMDD + add @8bit test 2026-04-06 13:18:59 +01:00
model-ref-profile.ts fix(model-ref): recompute suffix after @YYYYMMDD + add @8bit test 2026-04-06 13:18:59 +01:00
model-ref-shared.ts refactor: dedupe path lowercase helpers 2026-04-07 15:53:50 +01:00
model-scan.test.ts
model-scan.ts refactor: dedupe agent trimmed readers 2026-04-08 00:09:41 +01:00
model-selection-cli.ts fix(runtime): split cli provider and abort seams 2026-04-11 21:16:50 +01:00
model-selection-display.test.ts docs(test): refresh stale model refs 2026-04-04 08:05:49 +01:00
model-selection-display.ts refactor: share session model resolution helpers 2026-04-03 19:37:56 +09:00
model-selection-normalize.ts Agents: keep static model normalization without runtime hooks 2026-04-07 12:15:00 +08:00
model-selection-resolve.ts perf(cron): use lightweight model selection resolver 2026-04-13 18:12:09 +01:00
model-selection.plugin-runtime.test.ts Agents: keep static model normalization without runtime hooks 2026-04-07 12:15:00 +08:00
model-selection.test.ts test: isolate agent runtime mocks 2026-04-10 18:06:49 +01:00
model-selection.ts perf(agents): isolate thinking default helper 2026-04-13 18:39:38 +01:00
model-suppression.runtime.ts
model-suppression.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
model-thinking-default.ts fix(ci): align cron and session tests with runtime 2026-04-13 22:37:25 +01:00
model-tool-support.test.ts
model-tool-support.ts
models-config-state.ts fix: stabilize agent and config isolation 2026-04-07 15:28:46 +01:00
models-config.applies-config-env-vars.test.ts perf(agents): extract fast models-config env seam 2026-04-07 04:13:41 +01:00
models-config.e2e-harness.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
models-config.file-mode.test.ts test: exercise models json file mode without provider discovery 2026-04-08 14:32:07 +01:00
models-config.fills-missing-provider-apikey-from-env-var.test.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
models-config.merge.test.ts test: speed up agent auth config tests 2026-04-08 00:30:22 +01:00
models-config.merge.ts refactor: dedupe agent trimmed readers 2026-04-08 00:09:42 +01:00
models-config.normalizes-gemini-3-ids-preview-google-providers.test.ts test: keep model reasoning override coverage on merge helpers 2026-04-08 16:23:58 +01:00
models-config.plan.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
models-config.preserves-explicit-reasoning-override.test.ts test: keep model reasoning override coverage on merge helpers 2026-04-08 16:23:58 +01:00
models-config.providers.anthropic-vertex.test.ts test(agents): share anthropic vertex adc fixture 2026-04-12 16:32:26 +01:00
models-config.providers.auth-aliases.test.ts perf: trim agent test runtime imports 2026-04-11 13:55:07 +01:00
models-config.providers.auth-provenance.test.ts feat: LM Studio Integration (#53248) 2026-04-13 15:22:44 +08:00
models-config.providers.cloudflare-ai-gateway.test.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
models-config.providers.discovery-auth.test.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
models-config.providers.google-antigravity.test.ts test: refresh release verification baselines 2026-04-14 13:42:03 +01:00
models-config.providers.implicit.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
models-config.providers.live-filter.test.ts fix: improve claude cli live discovery 2026-04-06 18:49:59 +01:00
models-config.providers.minimax.test.ts test: speed up minimax auth provenance fixtures 2026-04-05 16:22:32 +01:00
models-config.providers.moonshot.test.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
models-config.providers.normalize-keys.test.ts feat: LM Studio Integration (#53248) 2026-04-13 15:22:44 +08:00
models-config.providers.normalize.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
models-config.providers.nvidia.test.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
models-config.providers.ollama.test.ts perf: trim agent test runtime imports 2026-04-11 13:55:07 +01:00
models-config.providers.plugin-allowlist-compat.test.ts test: trim provider compatibility cold starts 2026-04-05 15:44:29 +01:00
models-config.providers.policy.lookup.test.ts plugins: keep google provider policy lightweight 2026-04-09 01:48:48 +01:00
models-config.providers.policy.lookup.ts plugins: keep google provider policy lightweight 2026-04-09 01:48:48 +01:00
models-config.providers.policy.runtime.ts refactor: split provider config policy hooks 2026-04-05 17:17:16 +01:00
models-config.providers.policy.test.ts fix: stabilize agent and config isolation 2026-04-07 15:28:46 +01:00
models-config.providers.policy.ts refactor: split provider config policy hooks 2026-04-05 17:17:16 +01:00
models-config.providers.qianfan.test.ts test: harden provider mock isolation 2026-04-08 19:59:36 +01:00
models-config.providers.secret-helpers.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
models-config.providers.secrets.bedrock-apikey.test.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
models-config.providers.secrets.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
models-config.providers.source-managed.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
models-config.providers.static.test.ts test: stabilize provider normalization lanes 2026-04-05 13:56:52 +01:00
models-config.providers.static.ts refactor: remove remaining contract path leaks 2026-04-05 20:59:56 +01:00
models-config.providers.stepfun.test.ts test: tighten provider catalog fixture types 2026-04-05 17:33:01 +01:00
models-config.providers.ts refactor: move plugin setup and memory capabilities to registries 2026-04-05 14:53:53 +01:00
models-config.providers.vercel-ai-gateway.test.ts test: speed up model config provider tests 2026-04-08 00:09:07 +01:00
models-config.runtime-source-snapshot.test.ts test: stabilize agent auth and config suites 2026-04-06 19:52:42 +01:00
models-config.runtime.ts
models-config.skips-writing-models-json-no-env-token.test.ts test: speed up models config env provider coverage 2026-04-06 01:21:29 +01:00
models-config.test-utils.ts
models-config.ts test: exercise models json file mode without provider discovery 2026-04-08 14:32:07 +01:00
models-config.uses-first-github-copilot-profile-env-tokens.test.ts test: replace models-config matrix with narrow coverage 2026-04-09 01:39:43 +01:00
models-config.write-serialization.test.ts test: speed up model config provider tests 2026-04-08 00:09:07 +01:00
models.profiles.live.test.ts test: isolate Docker live profile-key auth 2026-04-15 06:31:20 -07:00
moonshot.live.test.ts
music-generation-task-status.ts fix(ci): repair type and extension regressions 2026-04-06 17:06:22 +01:00
openai-completions-compat.test.ts fix(ollama): enable streaming usage for openai-compat (#66439) 2026-04-14 09:57:42 +01:00
openai-completions-compat.ts fix(ollama): enable streaming usage for openai-compat (#66439) 2026-04-14 09:57:42 +01:00
openai-completions-string-content.ts fix: support inferrs string-only completions 2026-04-07 15:55:20 +01:00
openai-reasoning-compat.live.test.ts fix(agents): normalize mini openai reasoning 2026-04-14 22:26:47 +01:00
openai-reasoning-compat.ts perf(tests): trim hot wizard and infra setup work 2026-04-14 22:42:32 +01:00
openai-reasoning-effort.ts fix: normalize OpenAI minimal reasoning 2026-04-13 23:09:21 +01:00
openai-responses-payload-policy.test.ts fix(agents): refresh runtime tool and subagent coverage 2026-04-04 20:06:32 +01:00
openai-responses-payload-policy.ts refactor: dedupe provider string readers 2026-04-07 05:06:54 +01:00
openai-responses.reasoning-replay.test.ts docs(test): refresh stale model refs 2026-04-04 08:05:49 +01:00
openai-tool-schema.ts refactor: dedupe shared string readers 2026-04-07 02:03:33 +01:00
openai-transport-stream.test.ts fix: handle OpenRouter Qwen3 reasoning_details streams (#66905) (thanks @bladin) 2026-04-15 08:15:58 +05:30
openai-transport-stream.ts fix: handle OpenRouter Qwen3 reasoning_details streams (#66905) (thanks @bladin) 2026-04-15 08:15:58 +05:30
openai-ws-connection.test.ts docs(test): refresh stale model refs 2026-04-04 08:05:49 +01:00
openai-ws-connection.ts feat(msteams): add federated credential support (certificate + managed identity) (#53615) 2026-04-11 13:29:22 -05:00
openai-ws-message-conversion.test.ts fix: normalize cached prompt token accounting 2026-04-06 16:11:51 -05:00
openai-ws-message-conversion.ts fix(agents): preserve malformed function-call arguments instead of silent {} replacement (#61956) 2026-04-10 16:20:26 -07:00
openai-ws-request.ts fix(agents): normalize mini openai reasoning 2026-04-14 22:26:47 +01:00
openai-ws-stream.e2e.test.ts test(agents): share websocket tool followup helper 2026-04-12 16:35:01 +01:00
openai-ws-stream.test.ts fix(agents): normalize mini openai reasoning 2026-04-14 22:26:47 +01:00
openai-ws-stream.ts fix(cycles): split provider runtime model types 2026-04-11 22:50:45 +01:00
openai-ws-types.ts fix: normalize OpenAI minimal reasoning 2026-04-13 23:09:21 +01:00
openclaw-gateway-tool.test.ts Guard dangerous gateway config mutations (#62006) 2026-04-13 20:59:39 -06:00
openclaw-plugin-tools.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
openclaw-tools.agents.test.ts perf(agents): trim fast tool test seams 2026-04-07 05:58:16 +01:00
openclaw-tools.browser-plugin.integration.test.ts fix(feishu): enforce workspace-only localRoots in docx upload actions [AI-assisted] (#62369) 2026-04-07 10:35:03 -06:00
openclaw-tools.camera.test.ts test: simplify typed conversions 2026-04-11 01:34:25 +01:00
openclaw-tools.generation.test-support.ts test(agents): share generation tool registration helper 2026-04-12 11:19:15 +01:00
openclaw-tools.image-generation.test.ts test(agents): share generation tool registration helper 2026-04-12 11:19:15 +01:00
openclaw-tools.nodes-workspace-guard.test.ts test: narrow nodes workspace guard imports 2026-04-10 15:37:48 +01:00
openclaw-tools.nodes-workspace-guard.ts test: narrow nodes workspace guard imports 2026-04-10 15:37:48 +01:00
openclaw-tools.owner-authorization.test.ts test: keep openclaw tools registration policy pure 2026-04-08 15:31:21 +01:00
openclaw-tools.pdf-registration.test.ts test: keep pdf and update-plan registration tests pure 2026-04-08 16:15:28 +01:00
openclaw-tools.plugin-context.test.ts fix(feishu): enforce workspace-only localRoots in docx upload actions [AI-assisted] (#62369) 2026-04-07 10:35:03 -06:00
openclaw-tools.plugin-context.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
openclaw-tools.registration.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
openclaw-tools.runtime.ts
openclaw-tools.session-status.test.ts fix: extract shared session status runtime (#65807) 2026-04-13 11:51:26 +02:00
openclaw-tools.sessions-visibility.test.ts test: simplify typed conversions 2026-04-11 01:34:25 +01:00
openclaw-tools.sessions.test.ts fix(agents): preserve announce threadId on sessions.list fallback (#63506) 2026-04-09 16:02:56 -07:00
openclaw-tools.subagents.scope.test.ts
openclaw-tools.subagents.sessions-spawn-applies-thinking-default.test.ts perf: optimize test import surfaces 2026-04-10 23:48:03 +01:00
openclaw-tools.subagents.sessions-spawn-depth-limits.test.ts test: simplify typed conversions 2026-04-11 01:34:25 +01:00
openclaw-tools.subagents.sessions-spawn.allowlist.test.ts test(agents): trim subagent spawn config duplication 2026-04-12 16:30:31 +01:00
openclaw-tools.subagents.sessions-spawn.cron-note.test.ts perf: optimize test import surfaces 2026-04-10 23:48:03 +01:00
openclaw-tools.subagents.sessions-spawn.lifecycle.test.ts refactor: split manifest command alias helpers 2026-04-10 17:37:31 +01:00
openclaw-tools.subagents.sessions-spawn.model.test.ts test: fold sessions timeout checks into pure coverage 2026-04-11 08:15:19 +01:00
openclaw-tools.subagents.sessions-spawn.test-harness.ts test(agents): isolate shared subagent state 2026-04-14 22:49:31 +01:00
openclaw-tools.subagents.steer-failure-clears-suppression.test.ts
openclaw-tools.subagents.test-harness.ts fix(ci): repair tsgo test harnesses 2026-04-06 17:16:01 +01:00
openclaw-tools.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
openclaw-tools.update-plan.test.ts agents: GPT-5.4 runtime completion rollup (#65219) 2026-04-12 16:36:11 -07:00
openclaw-tools.video-generation.test.ts test(agents): share generation tool registration helper 2026-04-12 11:19:15 +01:00
owner-display.test.ts fix(config): stop owner-display barrel cycles 2026-04-09 02:08:02 +01:00
owner-display.ts fix(config): stop owner-display barrel cycles 2026-04-09 02:08:02 +01:00
path-policy.test.ts
path-policy.ts
payload-redaction.ts refactor: dedupe agent lowercase helpers 2026-04-07 17:50:37 +01:00
pi-auth-credentials.ts fix(cycles): continue seam extraction 2026-04-11 10:43:22 +01:00
pi-auth-json.test.ts test: keep model catalog auth-json tests off provider scans 2026-04-09 04:11:07 +01:00
pi-auth-json.ts
pi-bundle-lsp-runtime.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
pi-bundle-mcp-materialize.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
pi-bundle-mcp-names.test.ts
pi-bundle-mcp-names.ts refactor: dedupe agent lowercase helpers 2026-04-07 17:50:37 +01:00
pi-bundle-mcp-runtime.test.ts test: simplify typed conversions 2026-04-11 01:34:25 +01:00
pi-bundle-mcp-runtime.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
pi-bundle-mcp-test-harness.ts refactor: dedupe repeated test helpers 2026-04-08 09:58:22 +01:00
pi-bundle-mcp-tools.materialize.test.ts test(agents): share bundle mcp runtime fixture 2026-04-12 16:28:27 +01:00
pi-bundle-mcp-tools.ts
pi-bundle-mcp-types.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
pi-compaction-constants.ts fix(gateway): cap compaction reserve floor to context window for small models (#65671) 2026-04-15 01:08:11 +08:00
pi-embedded-block-chunker.test.ts fix: clamp pi embedded fenced chunk splits 2026-04-05 09:09:26 +01:00
pi-embedded-block-chunker.ts fix: clamp pi embedded fenced chunk splits 2026-04-05 09:09:26 +01:00
pi-embedded-error-observation.test.ts openai-codex: gate scope failures to codex 2026-04-11 01:19:32 +01:00
pi-embedded-error-observation.ts openai-codex: polish auth review fixes 2026-04-11 01:19:32 +01:00
pi-embedded-helpers.buildbootstrapcontextfiles.test.ts Feat: Add Active Memory recall plugin (#63286) 2026-04-09 11:27:37 -05:00
pi-embedded-helpers.formatassistanterrortext.test.ts fix(agents): classify connection-mismatch replay errors as replay-invalid (#66475) 2026-04-15 22:49:11 +03:00
pi-embedded-helpers.isbillingerrormessage.test.ts fix(agents): classify connection-mismatch replay errors as replay-invalid (#66475) 2026-04-15 22:49:11 +03:00
pi-embedded-helpers.sanitize-session-messages-images.removes-empty-assistant-text-blocks-but-preserves.test.ts docs(test): refresh stale model refs 2026-04-04 08:05:49 +01:00
pi-embedded-helpers.sanitizeuserfacingtext.test.ts chore(agents): drop stale lint comments 2026-04-06 15:59:22 +01:00
pi-embedded-helpers.ts fix(agents): extract user-facing text sanitizer 2026-04-11 21:47:21 +01:00
pi-embedded-helpers.validate-turns.test.ts test(agents): share validate turns helpers 2026-04-12 11:09:17 +01:00
pi-embedded-messaging.ts fix(agents): split messaging send types 2026-04-11 20:42:19 +01:00
pi-embedded-messaging.types.ts fix(agents): split messaging send types 2026-04-11 20:42:19 +01:00
pi-embedded-payloads.ts
pi-embedded-runner-extraparams-moonshot.test.ts test(agents): share extra params payload helper 2026-04-12 11:02:03 +01:00
pi-embedded-runner-extraparams-openrouter.test.ts test(agents): import stream fn in openrouter extraparams test 2026-04-12 11:13:12 +01:00
pi-embedded-runner-extraparams-resolve.test.ts perf(test): split extra params resolver coverage 2026-04-06 06:45:05 +01:00
pi-embedded-runner-extraparams.live.test.ts docs(test): refresh stale model refs 2026-04-04 08:05:49 +01:00
pi-embedded-runner-extraparams.test-support.ts test(agents): share extra params payload helper 2026-04-12 11:02:03 +01:00
pi-embedded-runner-extraparams.test.ts test(agents): trim extraparams anthropic passthrough cost 2026-04-15 12:28:08 +01:00
pi-embedded-runner.anthropic-tool-replay.live.test.ts test: cover bedrock signed thinking replay paths 2026-04-12 07:26:37 +01:00
pi-embedded-runner.buildembeddedsandboxinfo.test.ts fix(runtime): tighten auth-scope and full-access hints 2026-04-11 01:19:32 +01:00
pi-embedded-runner.bundle-mcp.e2e.test.ts test: trim agent e2e partial mocks 2026-04-03 20:42:29 +01:00
pi-embedded-runner.cache.live.test.ts fix: stabilize codex auth ownership and ws fallback cache 2026-04-04 20:03:15 +09:00
pi-embedded-runner.compaction-safety-timeout.test.ts test: stub image provider discovery in generation tool tests 2026-04-08 11:20:29 +01:00
pi-embedded-runner.createsystempromptoverride.test.ts
pi-embedded-runner.e2e.test.ts fix(cycles): bypass context engine and config barrels 2026-04-11 23:12:24 +01:00
pi-embedded-runner.get-dm-history-limit-from-session-key.falls-back-provider-default-per-dm-not.test.ts
pi-embedded-runner.get-dm-history-limit-from-session-key.returns-undefined-sessionkey-is-undefined.test.ts
pi-embedded-runner.guard.test.ts
pi-embedded-runner.guard.waitforidle-before-flush.test.ts
pi-embedded-runner.history-limit-from-session-key.test.ts
pi-embedded-runner.limithistoryturns.test.ts
pi-embedded-runner.openai-tool-id-preservation.test.ts test(agents): mock provider hook runtime in replay suites 2026-04-14 20:29:58 +01:00
pi-embedded-runner.resolvesessionagentids.test.ts
pi-embedded-runner.run-embedded-pi-agent.auth-profile-rotation.e2e.test.ts test: align failover source model expectation 2026-04-14 00:16:03 +01:00
pi-embedded-runner.sanitize-session-history.policy.test.ts test(agents): mock provider hook runtime in replay suites 2026-04-14 20:29:58 +01:00
pi-embedded-runner.sanitize-session-history.test-harness.ts test(agents): mock provider hook runtime in replay suites 2026-04-14 20:29:58 +01:00
pi-embedded-runner.sanitize-session-history.test.ts test(agents): mock provider hook runtime in replay suites 2026-04-14 20:29:58 +01:00
pi-embedded-runner.splitsdktools.test.ts
pi-embedded-runner.ts fix(agents): split messaging send types 2026-04-11 20:42:19 +01:00
pi-embedded-runtime.types.ts fix(cycles): split plugin runtime contract leaf types 2026-04-11 15:39:32 +01:00
pi-embedded-subscribe.block-reply-rejections.test.ts
pi-embedded-subscribe.code-span-awareness.test.ts
pi-embedded-subscribe.compaction-test-helpers.ts
pi-embedded-subscribe.e2e-harness.ts
pi-embedded-subscribe.handlers.compaction.runtime.ts refactor: lazy load compaction store updates 2026-04-04 01:07:28 +09:00
pi-embedded-subscribe.handlers.compaction.test.ts perf: trim agent test runtime imports 2026-04-11 13:55:07 +01:00
pi-embedded-subscribe.handlers.compaction.ts agents: address execution correctness review fixes 2026-04-11 01:27:31 +01:00
pi-embedded-subscribe.handlers.lifecycle.compaction-reconcile.test.ts Refactor: centralize native approval lifecycle assembly (#62135) 2026-04-07 14:40:26 -04:00
pi-embedded-subscribe.handlers.lifecycle.test.ts test(agents): share lifecycle warn assertion 2026-04-12 11:03:43 +01:00
pi-embedded-subscribe.handlers.lifecycle.ts fix: finalize OpenAI replay liveness landing 2026-04-11 02:58:31 +01:00
pi-embedded-subscribe.handlers.messages.test.ts Reply: preserve phased block metadata 2026-04-14 23:44:41 -04:00
pi-embedded-subscribe.handlers.messages.ts Reply: preserve phased block metadata 2026-04-14 23:44:41 -04:00
pi-embedded-subscribe.handlers.tools.media.test.ts fix: tighten trusted tool media passthrough (#67303) 2026-04-15 13:12:44 -06:00
pi-embedded-subscribe.handlers.tools.test.ts agents: split GPT-5 prompt and retry behavior (#65597) 2026-04-12 18:52:22 -07:00
pi-embedded-subscribe.handlers.tools.ts fix: tighten trusted tool media passthrough (#67303) 2026-04-15 13:12:44 -06:00
pi-embedded-subscribe.handlers.ts Matrix: restore ordered progress delivery with explicit streaming modes (#59266) 2026-04-01 19:35:03 -04:00
pi-embedded-subscribe.handlers.types.ts fix: tighten trusted tool media passthrough (#67303) 2026-04-15 13:12:44 -06:00
pi-embedded-subscribe.lifecycle-billing-error.test.ts
pi-embedded-subscribe.openai-responses.test-helpers.ts refactor: dedupe repeated test helpers 2026-04-08 09:58:22 +01:00
pi-embedded-subscribe.promise.ts Matrix: restore ordered progress delivery with explicit streaming modes (#59266) 2026-04-01 19:35:03 -04:00
pi-embedded-subscribe.raw-stream.ts
pi-embedded-subscribe.reply-tags.test.ts
pi-embedded-subscribe.shared-types.ts fix(cycles): split embedded subscribe shared types 2026-04-11 16:35:07 +01:00
pi-embedded-subscribe.subscribe-embedded-pi-session.calls-onblockreplyflush-before-tool-execution-start-preserve.test.ts Matrix: restore ordered progress delivery with explicit streaming modes (#59266) 2026-04-01 19:35:03 -04:00
pi-embedded-subscribe.subscribe-embedded-pi-session.does-not-append-text-end-content-is.test.ts Fix commentary/final answer phase separation 2026-04-06 03:03:18 +09:00
pi-embedded-subscribe.subscribe-embedded-pi-session.does-not-call-onblockreplyflush-callback-is-not.test.ts
pi-embedded-subscribe.subscribe-embedded-pi-session.does-not-duplicate-text-end-repeats-full.test.ts Fix commentary/final answer phase separation 2026-04-06 03:03:18 +09:00
pi-embedded-subscribe.subscribe-embedded-pi-session.does-not-emit-duplicate-block-replies-text.test.ts
pi-embedded-subscribe.subscribe-embedded-pi-session.emits-block-replies-text-end-does-not.test.ts refactor: dedupe repeated test helpers 2026-04-08 09:58:22 +01:00
pi-embedded-subscribe.subscribe-embedded-pi-session.emits-reasoning-as-separate-message-enabled.test.ts
pi-embedded-subscribe.subscribe-embedded-pi-session.filters-final-suppresses-output-without-start-tag.test.ts
pi-embedded-subscribe.subscribe-embedded-pi-session.includes-canvas-action-metadata-tool-summaries.test.ts
pi-embedded-subscribe.subscribe-embedded-pi-session.keeps-assistanttexts-final-answer-block-replies-are.test.ts
pi-embedded-subscribe.subscribe-embedded-pi-session.keeps-indented-fenced-blocks-intact.test.ts
pi-embedded-subscribe.subscribe-embedded-pi-session.reopens-fenced-blocks-splitting-inside-them.test.ts
pi-embedded-subscribe.subscribe-embedded-pi-session.splits-long-single-line-fenced-blocks-reopen.test.ts
pi-embedded-subscribe.subscribe-embedded-pi-session.streams-soft-chunks-paragraph-preference.test.ts
pi-embedded-subscribe.subscribe-embedded-pi-session.subscribeembeddedpisession.test.ts fix: tighten trusted tool media passthrough (#67303) 2026-04-15 13:12:44 -06:00
pi-embedded-subscribe.subscribe-embedded-pi-session.suppresses-commentary-phase-output.test.ts fix(agents): suppress commentary-phase output leaks (#61282) 2026-04-05 13:04:12 +02:00
pi-embedded-subscribe.subscribe-embedded-pi-session.suppresses-message-end-block-replies-message-tool.test.ts Matrix: restore ordered progress delivery with explicit streaming modes (#59266) 2026-04-01 19:35:03 -04:00
pi-embedded-subscribe.subscribe-embedded-pi-session.waits-multiple-compaction-retries-before-resolving.test.ts
pi-embedded-subscribe.tools.extract.test.ts
pi-embedded-subscribe.tools.media.test.ts fix: tighten trusted tool media passthrough (#67303) 2026-04-15 13:12:44 -06:00
pi-embedded-subscribe.tools.test.ts
pi-embedded-subscribe.tools.ts fix: tighten trusted tool media passthrough (#67303) 2026-04-15 13:12:44 -06:00
pi-embedded-subscribe.ts fix: tighten trusted tool media passthrough (#67303) 2026-04-15 13:12:44 -06:00
pi-embedded-subscribe.types.ts fix: tighten trusted tool media passthrough (#67303) 2026-04-15 13:12:44 -06:00
pi-embedded-utils.strip-model-special-tokens.test.ts
pi-embedded-utils.test.ts fix(Gateway ): strip tool_call and tool_result XML blocks from assistant visible text 2026-04-06 14:44:09 +01:00
pi-embedded-utils.ts fix(reply): bypass heavy error helper imports 2026-04-11 21:47:40 +01:00
pi-embedded.runtime.ts fix: unify reply lifecycle across stop, rotation, and restart (#61267) (thanks @dutifulbob) 2026-04-05 19:32:27 +02:00
pi-embedded.ts feat: add pluggable agent harness registry 2026-04-10 21:22:16 +01:00
pi-mcp-style.cache.live.test.ts docs(test): refresh stale model refs 2026-04-04 08:05:49 +01:00
pi-model-discovery-runtime.ts perf(agents): trim pi model discovery auth tests 2026-04-07 04:13:41 +01:00
pi-model-discovery.auth.test.ts fix: stabilize rebased test gates 2026-04-10 12:14:36 +01:00
pi-model-discovery.compat.e2e.test.ts lint: enable no extraneous class 2026-04-11 01:45:06 +01:00
pi-model-discovery.synthetic-auth.test.ts test: speed up model config provider tests 2026-04-08 00:09:07 +01:00
pi-model-discovery.ts fix(cycles): continue seam extraction 2026-04-11 10:43:22 +01:00
pi-project-settings.bundle.test.ts
pi-project-settings.test.ts
pi-project-settings.ts fix(gateway): cap compaction reserve floor to context window for small models (#65671) 2026-04-15 01:08:11 +08:00
pi-settings.test.ts fix(gateway): cap compaction reserve floor to context window for small models (#65671) 2026-04-15 01:08:11 +08:00
pi-settings.ts fix(gateway): cap compaction reserve floor to context window for small models (#65671) 2026-04-15 01:08:11 +08:00
pi-tool-definition-adapter.after-tool-call.fires-once.test.ts test: speed up agent runtime helper tests 2026-04-08 00:30:22 +01:00
pi-tool-definition-adapter.after-tool-call.test.ts
pi-tool-definition-adapter.logging.test.ts refactor: align agent tool params with upstream pi 2026-04-05 20:36:47 +01:00
pi-tool-definition-adapter.test.ts fix: tighten trusted tool media passthrough (#67303) 2026-04-15 13:12:44 -06:00
pi-tool-definition-adapter.ts fix: tighten trusted tool media passthrough (#67303) 2026-04-15 13:12:44 -06:00
pi-tool-handler-state.test-helpers.ts fix(ci): stabilize auto reply and agentic tests 2026-04-11 02:15:25 +01:00
pi-tools-agent-config.exec.test.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
pi-tools-agent-config.test.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
pi-tools.abort.ts
pi-tools.before-tool-call.e2e.test.ts test(agents): share approval abort helper 2026-04-12 11:14:33 +01:00
pi-tools.before-tool-call.integration.e2e.test.ts chore(agents): drop stale lint comments 2026-04-06 15:59:22 +01:00
pi-tools.before-tool-call.runtime.ts
pi-tools.before-tool-call.ts chore: enable no-unnecessary-type-arguments 2026-04-10 20:14:49 +01:00
pi-tools.create-openclaw-coding-tools.adds-claude-style-aliases-schemas-without-dropping-b.test.ts Tests: align pnpm test expectations with main (#67001) 2026-04-15 18:31:23 +08:00
pi-tools.create-openclaw-coding-tools.adds-claude-style-aliases-schemas-without-dropping-c.test.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
pi-tools.create-openclaw-coding-tools.adds-claude-style-aliases-schemas-without-dropping-d.test.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
pi-tools.create-openclaw-coding-tools.adds-claude-style-aliases-schemas-without-dropping-e.test.ts refactor: align agent tool params with upstream pi 2026-04-05 20:36:47 +01:00
pi-tools.create-openclaw-coding-tools.adds-claude-style-aliases-schemas-without-dropping-f.test.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
pi-tools.create-openclaw-coding-tools.adds-claude-style-aliases-schemas-without-dropping-g.test.ts test: harden beta release gates 2026-04-15 19:28:49 +01:00
pi-tools.deferred-followup-guidance.test.ts perf: reduce test import overhead 2026-04-10 23:09:37 +01:00
pi-tools.deferred-followup.ts perf: reduce test import overhead 2026-04-10 23:09:37 +01:00
pi-tools.host-edit.ts fix: align host tilde paths with OS home (#62804) (thanks @stainlu) 2026-04-16 14:37:55 +05:30
pi-tools.message-provider-policy.test.ts test: keep agent policy tests off broad tool construction 2026-04-08 11:38:24 +01:00
pi-tools.message-provider-policy.ts test: keep agent policy tests off broad tool construction 2026-04-08 11:38:24 +01:00
pi-tools.model-provider-collision.test.ts fix(agents): move lean local-model mode behind experimental flag 2026-04-15 11:41:28 +01:00
pi-tools.params.test.ts refactor: align agent tool params with upstream pi 2026-04-05 20:36:47 +01:00
pi-tools.params.ts refactor: align agent tool params with upstream pi 2026-04-05 20:36:47 +01:00
pi-tools.policy.test.ts
pi-tools.policy.ts perf(tests): avoid bundled channel cold-loads in hot paths 2026-04-15 00:11:43 +01:00
pi-tools.read.host-edit-access.test.ts test: trim more agent partial mocks 2026-04-03 20:06:42 +01:00
pi-tools.read.host-edit-recovery.test.ts fix: align host tilde paths with OS home (#62804) (thanks @stainlu) 2026-04-16 14:37:55 +05:30
pi-tools.read.host-tilde-expansion.test.ts fix: align host tilde paths with OS home (#62804) (thanks @stainlu) 2026-04-16 14:37:55 +05:30
pi-tools.read.ts fix: align host tilde paths with OS home (#62804) (thanks @stainlu) 2026-04-16 14:37:55 +05:30
pi-tools.read.workspace-root-guard.test.ts Agents: fix Windows drive path join for read/sandbox tools (#54039) (#66193) 2026-04-14 02:20:25 +01:00
pi-tools.safe-bins.test.ts test(agents): isolate shared subagent state 2026-04-14 22:49:31 +01:00
pi-tools.sandbox-mounted-paths.workspace-only.test.ts test: keep pi fs workspace tests on fs tool factories 2026-04-08 17:06:23 +01:00
pi-tools.schema.test.ts fix: sanitize required fields in tool schemas for Gemini compatibility 2026-04-10 15:01:37 +01:00
pi-tools.schema.ts refactor: dedupe agent lowercase helpers 2026-04-07 17:50:37 +01:00
pi-tools.ts fix(agents): move lean local-model mode behind experimental flag 2026-04-15 11:41:28 +01:00
pi-tools.types.ts refactor(lint): tighten channel and config defaults 2026-04-06 17:06:18 +01:00
pi-tools.whatsapp-login-gating.test.ts test: speed up focused pi-tools tool tests 2026-04-05 12:53:15 +01:00
pi-tools.workspace-only-false.test.ts test: keep pi fs workspace tests on fs tool factories 2026-04-08 17:06:23 +01:00
pi-tools.workspace-paths.test.ts test: fix abort cascade and workspace edit inputs 2026-04-05 23:33:23 +01:00
plugin-text-transforms.test.ts feat: add plugin text transforms 2026-04-11 02:17:39 +01:00
plugin-text-transforms.ts fix(cycles): cut madge back-edges in agent and cron types 2026-04-12 12:40:25 +01:00
plugin-tool-delivery-defaults.ts fix(utils): bypass delivery context wrapper for shared consumers 2026-04-11 17:26:38 +01:00
prompt-cache-stability.ts refactor: dedupe agent lowercase helpers 2026-04-07 17:50:37 +01:00
prompt-composition.test.ts test: move prompt composition fixtures into test helpers 2026-04-06 18:10:10 +01:00
provider-attribution.test.ts Agents: log proxy route summary (#64754) 2026-04-11 21:30:58 +10:00
provider-attribution.ts Agents: log proxy route summary (#64754) 2026-04-11 21:30:58 +10:00
provider-auth-aliases.ts perf: trim agent test runtime imports 2026-04-11 13:55:07 +01:00
provider-headers.live.test.ts docs(test): refresh stale model refs 2026-04-04 08:05:49 +01:00
provider-id.ts feat(plugins): support provider auth aliases 2026-04-08 19:03:04 +01:00
provider-model-normalization.runtime.ts
provider-request-config.test.ts fix: restore main type gates 2026-04-10 12:14:36 +01:00
provider-request-config.ts fix: restore allowPrivateNetwork for self-hosted STT endpoints (#66692) (thanks @jhsmith409) 2026-04-15 08:05:37 +05:30
provider-stream.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
provider-transport-fetch.test.ts feat(msteams): add federated credential support (certificate + managed identity) (#53615) 2026-04-11 13:29:22 -05:00
provider-transport-fetch.ts fix(agents): narrow debug proxy URL override 2026-04-12 00:22:32 +01:00
provider-transport-stream.test.ts test(providers): cover transport family matrix 2026-04-04 23:14:02 +09:00
provider-transport-stream.ts fix(agents): close cache boundary transport gaps 2026-04-04 17:20:23 +09:00
pty-dsr.ts
pty-keys.test.ts
pty-keys.ts refactor: dedupe agent lowercase helpers 2026-04-07 17:50:37 +01:00
queued-file-writer.ts
run-wait.test.ts fix(agents): stabilize subagent lifecycle 2026-04-12 16:07:46 +01:00
run-wait.ts fix(agents): stabilize subagent lifecycle 2026-04-12 16:07:46 +01:00
runtime-auth-refresh.test.ts
runtime-auth-refresh.ts
runtime-plugins.test.ts test: reload runtime plugins module per test 2026-04-05 06:06:12 +01:00
runtime-plugins.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
sandbox-agent-config.agent-specific-sandbox-config.e2e.test.ts test: trim more agent e2e partial mocks 2026-04-03 20:50:57 +01:00
sandbox-create-args.test.ts
sandbox-explain.test.ts
sandbox-media-paths.test.ts
sandbox-media-paths.ts
sandbox-merge.test.ts
sandbox-paths.test.ts fix(security): include Matrix avatar params in sandbox media normalization + preserve mxc:// URLs + log gmail watcher stop failures [AI-assisted] (#64701) 2026-04-14 12:22:29 -04:00
sandbox-paths.ts fix(security): include Matrix avatar params in sandbox media normalization + preserve mxc:// URLs + log gmail watcher stop failures [AI-assisted] (#64701) 2026-04-14 12:22:29 -04:00
sandbox-paths.windows-drive-resolve.test.ts Agents: fix Windows drive path join for read/sandbox tools (#54039) (#66193) 2026-04-14 02:20:25 +01:00
sandbox-skills.test.ts
sandbox-tool-policy.test.ts fix(policy): preserve restrictive tool allowlists (#58476) 2026-04-02 12:55:36 -06:00
sandbox-tool-policy.ts fix(policy): preserve restrictive tool allowlists (#58476) 2026-04-02 12:55:36 -06:00
sandbox.resolveSandboxContext.test.ts
sandbox.ts
sanitize-for-prompt.test.ts fix(browser): gate sandbox noVNC helper auth 2026-04-10 18:01:26 +01:00
sanitize-for-prompt.ts
self-hosted-provider-defaults.ts
session-async-task-status.ts refactor: dedupe agent trimmed readers 2026-04-08 00:09:41 +01:00
session-dirs.ts
session-file-repair.test.ts
session-file-repair.ts
session-raw-append-message.ts refactor: break runtime import cycles 2026-04-09 03:56:22 +01:00
session-slug.test.ts test: reduce agent test import churn 2026-04-03 04:41:09 +01:00
session-slug.ts
session-tool-result-guard-wrapper.ts fix(context-window): Tighten context limits and bound memory excerpts (#67277) 2026-04-15 13:06:02 -05:00
session-tool-result-guard.test.ts fix(context-window): Tighten context limits and bound memory excerpts (#67277) 2026-04-15 13:06:02 -05:00
session-tool-result-guard.tool-result-persist-hook.test.ts fix(context-window): Tighten context limits and bound memory excerpts (#67277) 2026-04-15 13:06:02 -05:00
session-tool-result-guard.transcript-events.test.ts
session-tool-result-guard.ts fix(context-window): Tighten context limits and bound memory excerpts (#67277) 2026-04-15 13:06:02 -05:00
session-tool-result-state.ts
session-transcript-repair.attachments.test.ts fix(tests): restore ci type and format checks 2026-04-12 14:13:57 +03:00
session-transcript-repair.test.ts test(agents): share aborted transcript fixture 2026-04-12 10:55:23 +01:00
session-transcript-repair.ts fix: clear replay lint regressions 2026-04-12 07:26:37 +01:00
session-write-lock.test.ts fix(agents): stop leaking session lock exit listeners (#65469) 2026-04-12 18:22:12 +01:00
session-write-lock.ts fix(agents): stop leaking session lock exit listeners (#65469) 2026-04-12 18:22:12 +01:00
sessions-spawn-hooks.test.ts test(agents): trim subagent spawn config duplication 2026-04-12 16:30:31 +01:00
shell-utils.test.ts
shell-utils.ts
simple-completion-runtime.selection.test.ts test: refresh simple completion provider fallback 2026-04-05 08:57:04 +01:00
simple-completion-runtime.test.ts docs(test): refresh stale model refs 2026-04-04 08:05:49 +01:00
simple-completion-runtime.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
simple-completion-transport.test.ts test: stabilize agent auth and config suites 2026-04-06 19:52:42 +01:00
simple-completion-transport.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
skills-clawhub.test.ts
skills-clawhub.ts refactor: dedupe agent error formatting 2026-04-07 02:03:34 +01:00
skills-install-download.ts fix(agents): split skill install result types 2026-04-09 07:45:18 +01:00
skills-install-extract.ts refactor: dedupe agent error formatting 2026-04-07 02:03:34 +01:00
skills-install-fallback.test.ts Tests: align pnpm test expectations with main (#67001) 2026-04-15 18:31:23 +08:00
skills-install-output.ts
skills-install-tar-verbose.ts
skills-install-uv-python-env-override.poc.test.ts fix(skills): block UV_PYTHON in workspace dotenv and harden uv installer env [AI] (#59178) 2026-04-03 06:50:43 -07:00
skills-install.download-test-utils.ts
skills-install.download.test.ts test: simplify skills download tar args 2026-04-11 00:46:59 +01:00
skills-install.test-mocks.ts test: trim helper partial mocks 2026-04-03 21:34:42 +01:00
skills-install.test.ts test: trim more agent partial mocks 2026-04-03 20:06:42 +01:00
skills-install.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
skills-install.types.ts fix(agents): split skill install result types 2026-04-09 07:45:18 +01:00
skills-status.test.ts test: remove duplicate gateway server coverage 2026-04-10 21:15:57 +01:00
skills-status.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
skills.agents-skills-directory.test.ts test(agents): share skills home env helper 2026-04-12 11:26:55 +01:00
skills.build-workspace-skills-prompt.applies-bundled-allowlist-without-affecting-workspace-skills.test.ts
skills.build-workspace-skills-prompt.prefers-workspace-skills-managed-skills.test.ts test: move node pairing authz to pure coverage 2026-04-11 08:18:35 +01:00
skills.build-workspace-skills-prompt.syncs-merged-skills-into-target-workspace.test.ts fix: skip sandbox skill copy junk (#61090) (thanks @joelnishanth) 2026-04-05 08:42:58 +05:30
skills.buildworkspaceskillsnapshot.test.ts fix(agents): isolate skills tests from personal home (#65456) 2026-04-12 19:44:50 +03:00
skills.buildworkspaceskillstatus.test.ts
skills.bundled-frontmatter.test.ts fix(skills): add missing opening --- to taskflow and taskflow-inbox-triage SKILL.md frontmatter (openclaw#64469) 2026-04-10 14:59:55 -05:00
skills.compact-skill-paths.test.ts
skills.e2e-test-helpers.test.ts
skills.e2e-test-helpers.ts
skills.env-path-guidance.test.ts
skills.loadworkspaceskillentries.test.ts fix: clarify escaped skill path warnings 2026-04-12 10:53:31 -07:00
skills.resolveskillspromptforrun.test.ts fix(skills): unify runtime inclusion and available_skills exposure policy (#60852) 2026-04-05 01:30:22 +03:00
skills.sherpa-onnx-tts-bin.test.ts
skills.summarize-skill-description.test.ts
skills.test-helpers.ts refactor: localize workspace skill prompt contract 2026-04-04 01:07:28 +09:00
skills.test.ts fix(context-window): Tighten context limits and bound memory excerpts (#67277) 2026-04-15 13:06:02 -05:00
skills.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
spawned-context.test.ts
spawned-context.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
stable-stringify.ts
stream-message-shared.ts
subagent-announce-capture.ts test(agents): extract fast subagent capture seam 2026-04-07 03:49:40 +01:00
subagent-announce-delivery.runtime.ts refactor: break runtime import cycles 2026-04-09 03:56:22 +01:00
subagent-announce-delivery.test.ts perf(agents): isolate subagent announce origin helper 2026-04-06 03:20:31 +01:00
subagent-announce-delivery.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
subagent-announce-dispatch.test.ts
subagent-announce-dispatch.ts
subagent-announce-origin.ts fix(agents): stabilize subagent lifecycle 2026-04-12 16:07:46 +01:00
subagent-announce-output.ts chore: enable no-unnecessary-type-arguments 2026-04-10 20:14:49 +01:00
subagent-announce-queue.test.ts
subagent-announce-queue.ts
subagent-announce.capture-completion-reply.test.ts test(agents): extract fast subagent capture seam 2026-04-07 03:49:40 +01:00
subagent-announce.format.e2e.test.ts fix(agents): stabilize subagent lifecycle 2026-04-12 16:07:46 +01:00
subagent-announce.registry.runtime.ts test: reduce subagent announce import overhead 2026-04-03 16:03:32 +01:00
subagent-announce.runtime.ts refactor: break runtime import cycles 2026-04-09 03:56:22 +01:00
subagent-announce.test-support.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
subagent-announce.test.ts test: align session status runtime and agent expectations 2026-04-06 14:05:01 +01:00
subagent-announce.timeout.test.ts fix(agents): extend subagent announce timeout 2026-04-06 03:03:53 +01:00
subagent-announce.ts fix(agents): stabilize subagent lifecycle 2026-04-12 16:07:46 +01:00
subagent-attachments.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
subagent-capabilities.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
subagent-control.test.ts
subagent-control.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
subagent-depth.test.ts
subagent-depth.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
subagent-lifecycle-events.ts
subagent-list.test.ts perf: reduce agents test import overhead 2026-04-13 01:26:44 +01:00
subagent-list.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
subagent-orphan-recovery.test.ts test(agents): share orphan recovery resume helpers 2026-04-12 10:01:26 +01:00
subagent-orphan-recovery.ts fix(cycles): reduce remaining static import seams 2026-04-11 02:46:41 +01:00
subagent-registry-announce-read.ts fix(cycles): add remaining seam files 2026-04-11 10:43:22 +01:00
subagent-registry-cleanup.test.ts fix: stabilize subagent cleanup retries 2026-04-12 16:59:27 +01:00
subagent-registry-cleanup.ts fix: stabilize subagent cleanup retries 2026-04-12 16:59:27 +01:00
subagent-registry-completion.test.ts test: reduce agent test import churn 2026-04-03 04:41:09 +01:00
subagent-registry-completion.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
subagent-registry-helpers.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
subagent-registry-lifecycle.test.ts test(agents): share registry lifecycle controller setup 2026-04-12 10:05:20 +01:00
subagent-registry-lifecycle.ts test(agents): isolate shared subagent state 2026-04-14 22:49:31 +01:00
subagent-registry-memory.ts
subagent-registry-queries.test.ts
subagent-registry-queries.ts fix(utils): bypass delivery context wrapper for shared consumers 2026-04-11 17:26:38 +01:00
subagent-registry-read.ts refactor: dedupe subagent session metrics 2026-04-06 20:45:31 +01:00
subagent-registry-run-manager.ts test(agents): isolate shared subagent state 2026-04-14 22:49:31 +01:00
subagent-registry-runtime.ts fix(cycles): continue seam extraction 2026-04-11 10:43:22 +01:00
subagent-registry-state.ts
subagent-registry-steer-runtime.ts fix(cycles): reduce remaining static import seams 2026-04-11 02:46:41 +01:00
subagent-registry.announce-loop-guard.test.ts test: stabilize agent auth and approval suites 2026-04-07 05:46:13 +01:00
subagent-registry.archive.e2e.test.ts fix(subagents): retry archived session deletes after sweep failures (#61801) 2026-04-10 16:34:27 -07:00
subagent-registry.lifecycle-retry-grace.e2e.test.ts fix(agents): stabilize subagent lifecycle 2026-04-12 16:07:46 +01:00
subagent-registry.mocks.shared.ts fix(agents): refresh runtime tool and subagent coverage 2026-04-04 20:06:32 +01:00
subagent-registry.nested.e2e.test.ts test: trim agent e2e partial mocks 2026-04-03 20:42:29 +01:00
subagent-registry.persistence.resume.test.ts test(agents): share subagent persistence fixtures 2026-04-12 10:52:28 +01:00
subagent-registry.persistence.test-support.ts test(agents): share subagent persistence fixtures 2026-04-12 10:52:28 +01:00
subagent-registry.persistence.test.ts test(agents): share subagent persistence fixtures 2026-04-12 10:52:28 +01:00
subagent-registry.runtime.ts refactor: lazy load subagent registry runtime hooks 2026-04-04 01:07:28 +09:00
subagent-registry.steer-restart.test.ts test(agents): stabilize steer restart ordering 2026-04-13 01:25:45 +01:00
subagent-registry.store.ts fix: normalize subagent registry session keys 2026-04-10 19:29:41 -05:00
subagent-registry.test-helpers.ts perf(test): trim subagent command imports 2026-04-06 06:03:25 +01:00
subagent-registry.test.ts test: avoid plugin fallback in agents tests 2026-04-10 16:00:08 +01:00
subagent-registry.ts test(agents): isolate shared subagent state 2026-04-14 22:49:31 +01:00
subagent-registry.types.ts fix(utils): bypass delivery context wrapper for shared consumers 2026-04-11 17:26:38 +01:00
subagent-requester-store-key.ts perf(agents): remove spawn hook announce import tax 2026-04-07 07:13:56 +01:00
subagent-session-key.ts refactor: dedupe helper alias readers 2026-04-07 08:40:34 +01:00
subagent-session-metrics.ts refactor: dedupe subagent session metrics 2026-04-06 20:45:31 +01:00
subagent-spawn-accepted-note.ts perf: optimize test import surfaces 2026-04-10 23:48:03 +01:00
subagent-spawn-plan.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
subagent-spawn-thinking.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
subagent-spawn.attachments.test.ts perf: trim agent test runtime imports 2026-04-11 13:55:07 +01:00
subagent-spawn.model-session.test.ts
subagent-spawn.runtime.ts fix(utils): bypass delivery context wrapper for shared consumers 2026-04-11 17:26:38 +01:00
subagent-spawn.test-helpers.ts refactor: dedupe shared trim readers 2026-04-07 07:36:11 +01:00
subagent-spawn.test.ts test: move spawn and doctor coverage to owners 2026-04-11 07:54:19 +01:00
subagent-spawn.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
subagent-spawn.types.ts fix(cycles): continue shared seam extraction 2026-04-11 02:46:41 +01:00
subagent-spawn.workspace.test.ts test(agents): share subagent spawn workspace fixture 2026-04-12 10:56:43 +01:00
subagent-system-prompt.ts fix(utils): bypass delivery context wrapper for shared consumers 2026-04-11 17:26:38 +01:00
system-prompt-cache-boundary.test.ts fix(agents): stabilize prompt cache fingerprints (#60731) 2026-04-04 16:20:36 +09:00
system-prompt-cache-boundary.ts fix(agents): stabilize prompt cache fingerprints (#60731) 2026-04-04 16:20:36 +09:00
system-prompt-contribution.ts feat(agents): add provider-owned system prompt contributions 2026-04-05 14:05:41 +01:00
system-prompt-override.test.ts feat(agents): add prompt override and heartbeat controls 2026-04-07 07:34:50 +01:00
system-prompt-override.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
system-prompt-params.test.ts feat(ui): render assistant directives and add embed tag (#64104) 2026-04-11 07:32:53 -05:00
system-prompt-params.ts feat(ui): render assistant directives and add embed tag (#64104) 2026-04-11 07:32:53 -05:00
system-prompt-report.test.ts refactor(agents): use structured tool definitions 2026-04-05 13:26:34 +01:00
system-prompt-report.ts refactor(agents): use structured tool definitions 2026-04-05 13:26:34 +01:00
system-prompt-stability.test.ts
system-prompt.memory.test.ts feat(memory-wiki): add belief-layer digests and compat migration 2026-04-07 08:56:24 +01:00
system-prompt.test.ts feat(ui): render assistant directives and add embed tag (#64104) 2026-04-11 07:32:53 -05:00
system-prompt.ts feat(ui): render assistant directives and add embed tag (#64104) 2026-04-11 07:32:53 -05:00
system-prompt.types.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
timeout.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
tool-call-id.test.ts test(agents): share replay-safe signed turn assertions 2026-04-12 09:53:27 +01:00
tool-call-id.ts fix: reserve preserved signed replay ids by owner 2026-04-12 07:26:37 +01:00
tool-catalog.test.ts feat: add music generation tooling 2026-04-06 01:47:14 +01:00
tool-catalog.ts feat: add music generation tooling 2026-04-06 01:47:14 +01:00
tool-description-presets.ts feat(agents): add experimental structured plan updates 2026-04-05 14:08:43 +01:00
tool-description-summary.ts refactor: dedupe agent trimmed readers 2026-04-08 00:09:41 +01:00
tool-display-common.ts refactor: dedupe agent trimmed readers 2026-04-08 00:09:41 +01:00
tool-display-config.ts feat: add music generation tooling 2026-04-06 01:47:14 +01:00
tool-display-exec-shell.ts chore: enable consistent-return 2026-04-10 20:56:43 +01:00
tool-display-exec.ts refactor: dedupe tool display record helper 2026-04-06 23:22:04 +01:00
tool-display-record.ts refactor: dedupe shared record coercers 2026-04-07 02:03:33 +01:00
tool-display.test.ts
tool-display.ts refactor: dedupe agent lowercase helpers 2026-04-07 17:50:37 +01:00
tool-error-summary.ts refactor: dedupe agent lowercase helpers 2026-04-07 13:01:23 +01:00
tool-fs-policy.test.ts
tool-fs-policy.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
tool-images.log.test.ts perf: trim agent test runtime imports 2026-04-11 13:55:07 +01:00
tool-images.test.ts test: shrink oversized image fixture 2026-04-11 06:10:01 +01:00
tool-images.ts lint: enable small oxlint rules 2026-04-11 02:15:21 +01:00
tool-loop-detection.test.ts fix: stop repeated unknown-tool loops (#65922) 2026-04-13 17:42:11 +02:00
tool-loop-detection.ts fix: stop repeated unknown-tool loops (#65922) 2026-04-13 17:42:11 +02:00
tool-mutation.test.ts agents: split GPT-5 prompt and retry behavior (#65597) 2026-04-12 18:52:22 -07:00
tool-mutation.ts agents: split GPT-5 prompt and retry behavior (#65597) 2026-04-12 18:52:22 -07:00
tool-policy-match.ts
tool-policy-pipeline.test.ts chore(agents): drop stale lint comments 2026-04-06 15:59:22 +01:00
tool-policy-pipeline.ts fix(agents): suppress profile allowlist warnings 2026-04-03 19:55:05 +09:00
tool-policy-shared.ts refactor: dedupe agent lowercase helpers 2026-04-07 13:01:23 +01:00
tool-policy.conformance.ts
tool-policy.plugin-only-allowlist.test.ts fix(policy): preserve restrictive tool allowlists (#58476) 2026-04-02 12:55:36 -06:00
tool-policy.test.ts chore(agents): drop stale lint comments 2026-04-06 15:59:22 +01:00
tool-policy.ts refactor: dedupe agent lowercase helpers 2026-04-07 12:18:22 +01:00
tools-effective-inventory.test.ts test: speed up effective tools inventory test 2026-04-08 01:44:13 +01:00
tools-effective-inventory.ts fix(core): align channel runtime and inventory types 2026-04-11 21:03:44 +01:00
tools-effective-inventory.types.ts fix(agents): split effective tool inventory types 2026-04-11 20:24:20 +01:00
trace-base.ts
transcript-policy.policy.test.ts test(agents): mock provider hook runtime in replay suites 2026-04-14 20:29:58 +01:00
transcript-policy.test.ts test(agents): mock provider hook runtime in replay suites 2026-04-14 20:29:58 +01:00
transcript-policy.ts perf(plugins): split provider hook runtime seam 2026-04-14 17:01:05 +01:00
transport-message-transform.ts refactor: dedupe shared helper branches 2026-04-08 15:58:45 +01:00
transport-stream-shared.test.ts refactor(providers): share transport stream helpers 2026-04-04 03:49:09 +09:00
transport-stream-shared.ts style: apply oxformat cleanup 2026-04-11 01:17:51 +01:00
usage.normalization.test.ts
usage.test.ts fix: return real usage for OpenAI-compatible chat completions (#62986) (thanks @Lellansin) 2026-04-10 21:46:24 +05:30
usage.ts fix: return real usage for OpenAI-compatible chat completions (#62986) (thanks @Lellansin) 2026-04-10 21:46:24 +05:30
video-generation-task-status.test.ts refactor(video): share async task status helpers 2026-04-06 01:18:39 +01:00
video-generation-task-status.ts fix(ci): repair type and extension regressions 2026-04-06 17:06:22 +01:00
workspace-dir.ts
workspace-dirs.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
workspace-run.test.ts
workspace-run.ts fix(cycles): bulk extract leaf type surfaces 2026-04-11 13:26:50 +01:00
workspace-templates.test.ts
workspace-templates.ts
workspace.bootstrap-cache.test.ts
workspace.defaults.test.ts
workspace.load-extra-bootstrap-files.test.ts
workspace.test.ts fix(heartbeat): widen empty-detection to skip API calls for comment-only HEARTBEAT.md (#61690) (#63434) 2026-04-10 20:53:23 +08:00
workspace.ts [Fix] agents.create RPC: support model param, write identity to config (#61577) 2026-04-10 14:36:22 +08:00
xai.live.test.ts
zai.live.test.ts