mixdog 0.9.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/scripts/session-ingest-smoke.mjs +2 -2
- package/src/headless-role.mjs +1 -1
- package/src/lib/mixdog-debug.cjs +0 -22
- package/src/lib/plugin-paths.cjs +1 -7
- package/src/lib/rules-builder.cjs +2 -2
- package/src/mixdog-session-runtime.mjs +0 -1
- package/src/repl.mjs +0 -2
- package/src/runtime/agent/orchestrator/internal-roles.mjs +1 -1
- package/src/runtime/agent/orchestrator/providers/anthropic-oauth.mjs +27 -49
- package/src/runtime/agent/orchestrator/providers/anthropic.mjs +5 -20
- package/src/runtime/agent/orchestrator/providers/openai-compat.mjs +8 -27
- package/src/runtime/agent/orchestrator/providers/openai-oauth-ws.mjs +52 -182
- package/src/runtime/agent/orchestrator/providers/openai-oauth.mjs +8 -30
- package/src/runtime/agent/orchestrator/providers/retry-classifier.mjs +258 -0
- package/src/runtime/agent/orchestrator/tools/bash-session.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/builtin/arg-guard.mjs +0 -8
- package/src/runtime/agent/orchestrator/tools/builtin/bash-tool.mjs +1 -44
- package/src/runtime/channels/index.mjs +0 -30
- package/src/runtime/channels/lib/cli-worker-host.mjs +1 -8
- package/src/runtime/channels/lib/config.mjs +0 -1
- package/src/runtime/channels/lib/drop-trace.mjs +1 -1
- package/src/runtime/channels/lib/executor.mjs +0 -3
- package/src/runtime/channels/lib/memory-client.mjs +0 -38
- package/src/runtime/channels/lib/output-forwarder.mjs +1 -8
- package/src/runtime/channels/lib/runtime-paths.mjs +0 -6
- package/src/runtime/channels/lib/session-discovery.mjs +0 -4
- package/src/runtime/channels/lib/tool-format.mjs +0 -1
- package/src/runtime/channels/lib/transcript-discovery.mjs +1 -10
- package/src/runtime/lib/keychain-cjs.cjs +0 -1
- package/src/runtime/memory/data/runtime-manifest.json +6 -7
- package/src/runtime/memory/index.mjs +3 -24
- package/src/runtime/memory/lib/llm-worker-host.mjs +0 -4
- package/src/runtime/memory/lib/memory-ops-policy.mjs +0 -1
- package/src/runtime/memory/lib/runtime-fetcher.mjs +43 -18
- package/src/runtime/memory/lib/session-ingest.mjs +9 -7
- package/src/runtime/search/index.mjs +2 -7
- package/src/runtime/search/lib/config.mjs +0 -4
- package/src/runtime/search/lib/state.mjs +1 -15
- package/src/runtime/search/lib/web-tools.mjs +0 -1
- package/src/runtime/shared/child-spawn-gate.mjs +0 -6
- package/src/standalone/seeds.mjs +1 -11
- package/src/tui/App.jsx +35 -12
- package/src/tui/components/PromptInput.jsx +63 -2
- package/src/tui/components/ToolExecution.jsx +7 -2
- package/src/tui/components/tool-output-format.mjs +156 -22
- package/src/tui/components/tool-output-format.test.mjs +93 -1
- package/src/tui/dist/index.mjs +473 -116
- package/src/tui/markdown/format-token.mjs +267 -108
- package/src/tui/markdown/format-token.test.mjs +105 -9
- package/src/tui/theme.mjs +10 -0
- package/src/vendor/statusline/bin/statusline-lib.mjs +0 -623
- package/vendor/ink/build/ink.js +54 -8
- package/src/hooks/lib/permission-rules.cjs +0 -170
- package/src/hooks/lib/settings-loader.cjs +0 -112
- package/src/lib/hook-pipe-path.cjs +0 -10
- package/src/runtime/channels/lib/hook-pipe-server.mjs +0 -671
package/src/tui/theme.mjs
CHANGED
|
@@ -67,6 +67,7 @@ const mixdogPalette = {
|
|
|
67
67
|
// Markdown extras (fenced fences / inline links / emphasis) — warm dark base.
|
|
68
68
|
mdCodeBlockBorder: 'rgb(110,110,110)', // ``` fence + lang label rule
|
|
69
69
|
mdCodeBlockBg: 'rgb(34,35,40)', // code-block background band (distinct from bg)
|
|
70
|
+
mdCodeSpanBg: 'rgb(42,43,48)', // inline codespan background (subtle lift from block bg)
|
|
70
71
|
mdLink: 'rgb(47,127,255)', // link URL (suggestion blue)
|
|
71
72
|
mdLinkText: 'rgb(138,190,183)', // link label (teal accent)
|
|
72
73
|
mdStrong: 'rgb(235,159,127)', // **bold** warm amber
|
|
@@ -118,6 +119,7 @@ const piDarkPalette = {
|
|
|
118
119
|
codeBlock: 'rgb(181,189,104)',
|
|
119
120
|
mdCodeBlockBorder: 'rgb(96,104,116)',
|
|
120
121
|
mdCodeBlockBg: 'rgb(32,36,44)',
|
|
122
|
+
mdCodeSpanBg: 'rgb(40,44,52)',
|
|
121
123
|
mdLink: 'rgb(95,135,255)',
|
|
122
124
|
mdLinkText: 'rgb(138,190,183)',
|
|
123
125
|
mdStrong: 'rgb(181,189,104)',
|
|
@@ -176,6 +178,7 @@ const claudeDarkPalette = {
|
|
|
176
178
|
mdListBullet: 'rgb(177,185,249)',
|
|
177
179
|
mdCodeBlockBorder: 'rgb(120,120,120)',
|
|
178
180
|
mdCodeBlockBg: 'rgb(34,35,40)',
|
|
181
|
+
mdCodeSpanBg: 'rgb(42,43,48)',
|
|
179
182
|
mdLink: 'rgb(177,185,249)',
|
|
180
183
|
mdLinkText: 'rgb(150,200,210)',
|
|
181
184
|
mdStrong: 'rgb(235,159,127)',
|
|
@@ -239,6 +242,7 @@ const draculaPalette = {
|
|
|
239
242
|
mdListBullet: 'rgb(189,147,249)',
|
|
240
243
|
mdCodeBlockBorder: 'rgb(68,71,90)',
|
|
241
244
|
mdCodeBlockBg: 'rgb(60,63,79)',
|
|
245
|
+
mdCodeSpanBg: 'rgb(68,71,87)',
|
|
242
246
|
mdLink: 'rgb(139,233,253)',
|
|
243
247
|
mdLinkText: 'rgb(255,121,198)', // pink
|
|
244
248
|
mdStrong: 'rgb(255,184,108)', // orange
|
|
@@ -301,6 +305,7 @@ const tokyonightPalette = {
|
|
|
301
305
|
mdListBullet: 'rgb(130,170,255)',
|
|
302
306
|
mdCodeBlockBorder: 'rgb(84,92,126)',
|
|
303
307
|
mdCodeBlockBg: 'rgb(45,47,64)',
|
|
308
|
+
mdCodeSpanBg: 'rgb(53,55,72)',
|
|
304
309
|
mdLink: 'rgb(130,170,255)',
|
|
305
310
|
mdLinkText: 'rgb(134,225,252)', // cyan
|
|
306
311
|
mdStrong: 'rgb(255,150,108)', // orange
|
|
@@ -363,6 +368,7 @@ const nordPalette = {
|
|
|
363
368
|
mdListBullet: 'rgb(136,192,208)',
|
|
364
369
|
mdCodeBlockBorder: 'rgb(67,76,94)',
|
|
365
370
|
mdCodeBlockBg: 'rgb(64,71,87)',
|
|
371
|
+
mdCodeSpanBg: 'rgb(72,79,95)',
|
|
366
372
|
mdLink: 'rgb(129,161,193)',
|
|
367
373
|
mdLinkText: 'rgb(143,188,187)',
|
|
368
374
|
mdStrong: 'rgb(235,203,139)',
|
|
@@ -425,6 +431,7 @@ const gruvboxPalette = {
|
|
|
425
431
|
mdListBullet: 'rgb(131,165,152)',
|
|
426
432
|
mdCodeBlockBorder: 'rgb(80,73,69)',
|
|
427
433
|
mdCodeBlockBg: 'rgb(60,58,52)',
|
|
434
|
+
mdCodeSpanBg: 'rgb(68,66,60)',
|
|
428
435
|
mdLink: 'rgb(142,192,124)',
|
|
429
436
|
mdLinkText: 'rgb(184,187,38)',
|
|
430
437
|
mdStrong: 'rgb(254,128,25)',
|
|
@@ -487,6 +494,7 @@ const catppuccinPalette = {
|
|
|
487
494
|
mdListBullet: 'rgb(137,180,250)',
|
|
488
495
|
mdCodeBlockBorder: 'rgb(49,50,68)',
|
|
489
496
|
mdCodeBlockBg: 'rgb(49,50,68)',
|
|
497
|
+
mdCodeSpanBg: 'rgb(57,58,76)',
|
|
490
498
|
mdLink: 'rgb(137,180,250)',
|
|
491
499
|
mdLinkText: 'rgb(137,220,235)', // sky
|
|
492
500
|
mdStrong: 'rgb(250,179,135)', // peach
|
|
@@ -549,6 +557,7 @@ const everforestPalette = {
|
|
|
549
557
|
mdListBullet: 'rgb(167,192,128)',
|
|
550
558
|
mdCodeBlockBorder: 'rgb(52,63,68)',
|
|
551
559
|
mdCodeBlockBg: 'rgb(62,71,78)',
|
|
560
|
+
mdCodeSpanBg: 'rgb(70,79,86)',
|
|
552
561
|
mdLink: 'rgb(167,192,128)',
|
|
553
562
|
mdLinkText: 'rgb(131,192,146)', // cyan
|
|
554
563
|
mdStrong: 'rgb(230,152,117)', // orange
|
|
@@ -616,6 +625,7 @@ const whitePalette = {
|
|
|
616
625
|
mdListBullet: 'rgb(9,105,218)',
|
|
617
626
|
mdCodeBlockBorder: 'rgb(200,206,212)',
|
|
618
627
|
mdCodeBlockBg: 'rgb(232,232,236)',
|
|
628
|
+
mdCodeSpanBg: 'rgb(240,240,244)',
|
|
619
629
|
mdLink: 'rgb(9,105,218)',
|
|
620
630
|
mdLinkText: 'rgb(0,92,197)',
|
|
621
631
|
mdStrong: 'rgb(130,80,8)',
|