Peter Steinberger
0f9ea0229a
test(infra): dedupe install-source fixtures and cover npm pack parsing
2026-02-21 21:40:39 +00:00
Peter Steinberger
f9e21d5720
test(infra): dedupe gateway-lock setup and cover guard paths
2026-02-21 21:40:39 +00:00
Peter Steinberger
b01335830d
test(pairing): dedupe fixture writers and expand store coverage
2026-02-21 21:40:39 +00:00
Peter Steinberger
c45ef5f8b5
test(line): dedupe event fixtures and cover room postback routing
2026-02-21 21:40:39 +00:00
Peter Steinberger
1794f42ac0
test(config): dedupe io fixture wiring and cover legacy config-path override
2026-02-21 21:40:39 +00:00
Peter Steinberger
d35a8b48f5
test(infra): dedupe archive case setup and cover packed-root multi-dir failure
2026-02-21 21:40:39 +00:00
Peter Steinberger
544a1142b0
test(agents): dedupe skill helper fixtures and cover empty-body rendering
2026-02-21 21:40:39 +00:00
Peter Steinberger
822688dc13
test(infra): dedupe store temp fixtures and cover json5 voicewake sanitization
2026-02-21 21:40:39 +00:00
Peter Steinberger
a418c6db06
test(agents): dedupe agent-path fixtures and cover env override precedence
2026-02-21 21:40:39 +00:00
Peter Steinberger
6fd31fc0b0
test(browser): dedupe invalid-path assertions and cover blank path rejection
2026-02-21 21:40:39 +00:00
Peter Steinberger
2000dcdcd0
test(memory): dedupe temp-dir lifecycle hooks and cover overlapping path dedupe
2026-02-21 21:40:39 +00:00
Peter Steinberger
6051dc10ff
test(scripts): dedupe a2ui temp fixture and cover skip-missing env path
2026-02-21 21:40:39 +00:00
Peter Steinberger
d6c2fd5453
test(web): dedupe logout fixture setup and cover non-legacy oauth removal
2026-02-21 21:40:39 +00:00
Peter Steinberger
bdfb979940
test(cli): dedupe camera fetch stubs and cover empty-body download rejection
2026-02-21 21:40:39 +00:00
Peter Steinberger
31a0449f69
test(core): dedupe temp dirs in utils tests and cover lid lookup error fallback
2026-02-21 21:40:39 +00:00
Peter Steinberger
c93fc3786c
test(infra): dedupe brew fixtures and cover explicit brew file precedence
2026-02-21 21:40:39 +00:00
Peter Steinberger
2042a69211
test(infra): dedupe dotenv fixture setup and cover fallback-only load
2026-02-21 21:40:39 +00:00
Peter Steinberger
c394c5fa99
test(daemon): dedupe schtasks install fixture and cover empty env omission
2026-02-21 21:40:39 +00:00
Peter Steinberger
d015dc9216
test(cron): dedupe run-log temp fixtures and cover invalid line filtering
2026-02-21 21:40:39 +00:00
Peter Steinberger
7036352d94
test(config): dedupe temp roots and cover legacy state-dir fallback
2026-02-21 21:40:39 +00:00
Peter Steinberger
5d61afb362
test(commands): dedupe signal install extract fixture and cover zip extract
2026-02-21 21:40:39 +00:00
Peter Steinberger
3274a1b804
test(gateway): dedupe control-ui fixture setup and cover query asset 404
2026-02-21 21:40:39 +00:00
Peter Steinberger
8f1b467646
test(agents): dedupe exec preflight fixtures and cover quoted-path skip
2026-02-21 21:40:39 +00:00
Peter Steinberger
8f11868cc2
test(gateway): dedupe boot workspace setup and cover boot failures
2026-02-21 21:40:38 +00:00
Peter Steinberger
0e49eec056
test(commands): dedupe auth-sync fixture and cover invalid profile handling
2026-02-21 21:40:38 +00:00
Peter Steinberger
e978297c28
test(agents): dedupe workspace template temp roots and cover fallback resolution
2026-02-21 21:40:38 +00:00
Peter Steinberger
c481b22245
test(reply): reuse compaction fixture setup and cover numeric fallback defaults
2026-02-21 21:40:38 +00:00
Peter Steinberger
1bbeedfab2
test(infra): dedupe heartbeat ghost reminder temp/mocks setup
2026-02-21 21:40:38 +00:00
Peter Steinberger
ac6c344d9b
test(browser): dedupe fixture lifecycle and cover directory-path rejection
2026-02-21 21:40:38 +00:00
Peter Steinberger
626d8e9f62
test(web): dedupe temp dir setup in web auto-reply utils tests
2026-02-21 21:40:38 +00:00
kumarabhirup
109b88b93c
web: restore functional features dropped by design merge
...
Restore backend/logic features that were incorrectly auto-merged from the
design branch:
- Spreadsheet viewer (xlsx, csv, ods, etc.) and xlsx dependency
- HTML iframe viewer with source toggle
- Directory picker modal for workspace creation
- Workspace registry for custom-path workspaces
- Session auto-discovery for orphaned sessions
- Workspace init seeding (CRM objects, DuckDB, templates, bootstrap files)
- Symlink resolution and showHidden in tree/browse routes
- Upload to workspace assets/ instead of hidden ~/.ironclaw/uploads/
- Webpack dev watcher config (next.config.ts)
- router.push for back-button navigation history
2026-02-21 13:10:32 -08:00
Val Alexander
b703ea3675
fix: prevent compaction "prompt too long" errors ( #22921 )
...
* includes: prompt overhead in compaction safeguard calculation.
Subtracts SUMMARIZATION_OVERHEAD_TOKENS from maxChunkTokens in both the main summarization path and the dropped-messages summarization path.
This ensures the chunk budget leaves room for the prompt overhead that generateSummary wraps around each chunk.
* adds: budget for overhead tokens to use an effectiveMax instead of maxTokens naïvely.
- Added `SUMMARIZATION_OVERHEAD_TOKENS = 4096` — a budget for the tokens that `generateSummary` adds on top of the serialized conversation (system prompt, `<conversation>` tags, summarization instructions, `<previous-summary>` block, and reasoning: "high" thinking budget).
- `chunkMessagesByMaxTokens` now divides `maxTokens` by `SAFETY_MARGIN` (1.2) before comparing against estimated token counts. Previously, the safety margin was only used in `computeAdaptiveChunkRatio` and `isOversizedForSummary` but not in the actual chunking loop — so chunks could be built that fit the estimated budget but exceeded the real budget once the API tokenized them properly.
2026-02-21 14:42:18 -06:00
kumarabhirup
db4c90b37d
Merge remote-tracking branch 'origin/markrachapoom/design' into kumareth/workspaces
...
Co-authored-by: Cursor <cursoragent@cursor.com>
# Conflicts:
# apps/web/app/api/chat/subagent-stream/route.ts
# apps/web/app/api/workspace/watch/route.ts
# apps/web/app/components/chat-panel.tsx
# apps/web/app/components/subagent-panel.tsx
# apps/web/lib/subagent-runs.ts
# apps/web/tsconfig.tsbuildinfo
2026-02-21 12:40:07 -08:00
kumarabhirup
536ae59667
web: add interactive messaging UI to subagent panel
...
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-21 12:32:59 -08:00
kumarabhirup
7cdcf61639
web: support subagent sessions in chat and stop API routes
2026-02-21 12:32:37 -08:00
kumarabhirup
54d048bfb9
web: merge subagent-stream into unified stream route
2026-02-21 12:32:32 -08:00
kumarabhirup
e267fe7df4
web: export stream parser and add user-message event type
2026-02-21 12:32:27 -08:00
kumarabhirup
7d762b2b75
web: refactor subagent-runs to use direct gateway subscription with interactive messaging
2026-02-21 12:32:21 -08:00
kumarabhirup
3ee2528b75
web: filter silent-reply tokens and remove subagent event routing from parent stream
2026-02-21 12:32:16 -08:00
kumarabhirup
f3ae8127da
web: filter leaked NO_REPLY tokens in chat message display
2026-02-21 12:32:10 -08:00
Onur Solmaz
ac633366ce
docs: add Onur Solmaz to contributors ( #22890 )
2026-02-21 21:00:26 +01:00
Peter Steinberger
518dbbf4c6
test: avoid template-literal temp path in runner fixture
2026-02-21 20:49:38 +01:00
Peter Steinberger
302fa03f41
fix(test): skip test-utils files in temp path guard
2026-02-21 20:48:52 +01:00
Peter Steinberger
48ddb1cc81
fix(ci): stabilize install smoke in docker
2026-02-21 20:39:34 +01:00
Peter Steinberger
549549f6a0
fix(ci): sync plugin versions and harden install smoke
2026-02-21 20:18:37 +01:00
Peter Steinberger
a20c773251
test(media): dedupe auto-e2e temp/env setup and cover no-binary path
2026-02-21 19:17:01 +00:00
Peter Steinberger
b889a5d516
test(cli): dedupe temp dirs in camera tests and cover non-ok url responses
2026-02-21 19:17:01 +00:00
Peter Steinberger
0ecb07e6d1
test(cli): dedupe acp secret file setup and cover password flag collisions
2026-02-21 19:17:01 +00:00
Peter Steinberger
4f835c4c0d
test(media): dedupe temp roots and cover directory attachment rejection
2026-02-21 19:17:01 +00:00
Peter Steinberger
9ebfc99c1b
refactor(test): dedupe temp media fixture setup in apply e2e
2026-02-21 19:17:01 +00:00