Peter Steinberger
553d17618a
test: tighten cli transcript session file assertion
2026-05-09 01:15:59 +01:00
Shakker
e2b2ebd86a
test: clear fetch guard timeout sentinel
2026-05-09 01:14:34 +01:00
Peter Steinberger
917684dee8
test: simplify gateway live profile parsing
2026-05-09 01:14:13 +01:00
Shakker
b945680f7e
test: clear feishu drive cleanup timers
2026-05-09 01:12:43 +01:00
Shakker
d857b83d5a
test: clear feishu outbound cleanup timer
2026-05-09 01:11:48 +01:00
Vincent Koc
858a4471bd
fix(cli): clarify operator command errors
2026-05-09 08:11:34 +08:00
Shakker
b2645c7354
test: clear feishu comment handler timer
2026-05-09 01:11:00 +01:00
Peter Steinberger
91eecba6e5
test: simplify openai live model parsing
2026-05-09 01:10:38 +01:00
Shakker
7e6771a6b0
test: clear feishu comment dispatcher timer
2026-05-09 01:09:54 +01:00
Peter Steinberger
7e733bedab
test: simplify copilot live text extraction
2026-05-09 01:09:27 +01:00
Vincent Koc
05414e2ac3
fix(cli): explain plugin and secrets failures
2026-05-09 08:08:26 +08:00
Peter Steinberger
d47b64609c
test: simplify xai live error messages
2026-05-09 01:08:12 +01:00
Shakker
c008c54f9e
test: clear chat refresh macrotask timers
2026-05-09 01:07:27 +01:00
Shakker
cc027d49c3
test: clear refresh tab macrotask timers
2026-05-09 01:06:04 +01:00
Vincent Koc
d326694069
docs(changelog): note cli recovery copy
2026-05-09 08:05:06 +08:00
Vincent Koc
bb0332bfbf
fix(cli): guide lookup misses
2026-05-09 08:05:06 +08:00
Vincent Koc
f09bb6d75c
fix(cli): improve config recovery copy
2026-05-09 08:05:06 +08:00
Vincent Koc
938cc3628c
fix(cli): guide common command errors
2026-05-09 08:05:06 +08:00
Vincent Koc
23d5e630cd
fix(cli): add parser value examples
2026-05-09 08:05:05 +08:00
Vincent Koc
66113d6c15
docs(cli): sharpen root help copy
2026-05-09 08:05:05 +08:00
Vincent Koc
3500a0bffa
fix(cli): improve guardrail messages
2026-05-09 08:05:05 +08:00
Vincent Koc
ebd59f1e01
fix(cli): clarify startup failures
2026-05-09 08:05:05 +08:00
Vincent Koc
f06b77c0d4
fix(cli): explain parser errors
2026-05-09 08:05:04 +08:00
Shakker
c0bad2eda5
test: clear node invoke connect timeout
2026-05-09 01:04:49 +01:00
Peter Steinberger
37611ef89a
test: simplify openai ws summary extraction
2026-05-09 01:03:54 +01:00
Shakker
a24e76e9c7
test: clear gateway node hello timeout
2026-05-09 01:03:13 +01:00
Vincent Koc
a834175e01
chore(imessage): remove bluebubbles code comments
2026-05-09 08:03:02 +08:00
Peter Steinberger
6dfbee78e4
test: simplify launchd event parsing
2026-05-09 01:02:42 +01:00
Shakker
2157c2537f
test: clear qa bus abort timeout guard
2026-05-09 01:02:10 +01:00
Shakker
c9e85fdbd6
test: clear ollama stream timeout guard
2026-05-09 01:01:04 +01:00
Shakker
105cc8d18a
test: clear browser open tab timeout guard
2026-05-09 00:59:36 +01:00
Vincent Koc
fad6066926
changelog: split c6d4f1fab8 Discord/Gateway entry by area
2026-05-09 07:59:19 +08:00
Peter Steinberger
06f8093e68
test: simplify openshell failure message assembly
2026-05-09 00:58:46 +01:00
Shakker
4cbc723f3a
test: clear sdk e2e timeout guards
2026-05-09 00:58:17 +01:00
Peter Steinberger
e3a3093fdb
test: simplify cache live trace parsing
2026-05-09 00:57:28 +01:00
Shakker
5fe5c6484a
test: clear plugin cleanup guard timer
2026-05-09 00:56:27 +01:00
Peter Steinberger
fc74dc5dec
test: simplify pi runner session jsonl parsing
2026-05-09 00:56:03 +01:00
Shakker
8f856c1489
test: tighten session cost polling
2026-05-09 00:54:14 +01:00
Shakker
34649d3257
test: use vitest polling for session memory
2026-05-09 00:53:00 +01:00
Vincent Koc
6aa7e371e4
test(memory): avoid control-regex lint
2026-05-09 07:52:36 +08:00
Peter Steinberger
5377e952ca
test: simplify nodes media path collection
2026-05-09 00:52:06 +01:00
Vincent Koc
3ba2ce6694
fix(plugins): avoid managed npm prefix on Windows
...
Fixes #78514 .
2026-05-09 07:51:49 +08:00
Shakker
becfeb48b4
test: isolate launcher compile cache temp
2026-05-09 00:50:44 +01:00
Peter Steinberger
47099da937
test: simplify manual compaction text extraction
2026-05-09 00:49:06 +01:00
Peter Steinberger
93ba934620
test: simplify dispatch block text collection
2026-05-09 00:47:22 +01:00
Peter Steinberger
265a47d21e
test: dedupe codex transcript mirror parsing
2026-05-09 00:45:27 +01:00
Nandana Dileep
5adbbaa3cb
fix(scripts): avoid DEP0190 when spawning .cmd files on Windows
...
Use the shared Windows cmd.exe command-line builder for `.cmd` and `.bat` UI runner launches so Node.js v24 no longer sees `spawn(file, args, { shell: true })` and emits DEP0190.
The launcher keeps ordinary `.exe`/`.com` and non-Windows paths on direct argv spawning, while Windows command scripts now run through `cmd.exe /d /s /c` with `shell: false` and `windowsVerbatimArguments: true`.
Local and CI verification passed, including focused UI runner tests, build, check, Real behavior proof, and ClawSweeper gates.
Co-authored-by: Nandana Dileep <nandanadileep@users.noreply.github.com >
Co-authored-by: Brad Groux <3053586+BradGroux@users.noreply.github.com >
2026-05-08 18:45:20 -05:00
Vincent Koc
ccfbd96082
test(memory): normalize styled CLI status assertions
2026-05-09 07:44:13 +08:00
Peter Steinberger
f55fdc6ae5
test: simplify host hook context joining
2026-05-09 00:43:30 +01:00
Shakker
ffb83a57e5
test: gate run-node postbuild lock
2026-05-09 00:42:43 +01:00