jiarung
fc2aeb017c
Merge branch 'main' into fix/token-usage-input-output-breakdown
2026-03-16 12:13:03 +08:00
Vincent Koc
093e51f2b3
Security: lazy-load channel audit provider helpers
2026-03-15 21:09:41 -07:00
Peter Steinberger
c4a5fd8465
docs: update channel setup wording
2026-03-15 21:07:18 -07:00
Peter Steinberger
0f43dc4680
test: fix fetch mock typing
2026-03-15 21:07:05 -07:00
Peter Steinberger
53ccc78c63
refactor: rename setup helper surfaces
2026-03-15 21:06:55 -07:00
Vincent Koc
350b42d342
Status: lazy-load text scan helpers
2026-03-15 21:03:55 -07:00
Peter Steinberger
0218045818
test: silence vitest warning noise
2026-03-15 21:02:31 -07:00
Vincent Koc
522dda1971
Docs: refresh generated config baseline
2026-03-15 21:00:03 -07:00
Vincent Koc
270ba54c47
Status: lazy-load channel security and summaries
2026-03-15 21:00:03 -07:00
Vincent Koc
7d5e26b4a2
Tests: stabilize bundle MCP env on Windows
2026-03-15 21:00:03 -07:00
Vincent Koc
31e6cb0df6
Nostr: break setup-surface import cycle
2026-03-15 21:00:03 -07:00
Christopher Chamaletsos
d9fb50e777
fix: format default model label as 'model · provider' for consistency
...
The default option showed 'Default (openai/gpt-5.2)' while individual
options used the friendlier 'gpt-5.2 · openai' format.
2026-03-15 20:59:38 -07:00
Christopher Chamaletsos
01456f95bc
fix: control UI sends correct provider prefix when switching models
...
The model selector was using just the model ID (e.g. "gpt-5.2") as the
option value. When sent to sessions.patch, the server would fall back to
the session's current provider ("anthropic") yielding "anthropic/gpt-5.2"
instead of "openai/gpt-5.2".
Now option values use "provider/model" format, and resolveModelOverrideValue
and resolveDefaultModelValue also return the full provider-prefixed key so
selected state stays consistent.
2026-03-15 20:59:38 -07:00
Peter Steinberger
a33caab280
refactor(plugins): move auth and model policy to providers
2026-03-15 20:59:06 -07:00
jiarung
6f85d77f63
Merge branch 'main' into fix/token-usage-input-output-breakdown
2026-03-16 11:58:02 +08:00
Vincent Koc
ca2f046668
Status: route JSON through lean command
2026-03-15 20:56:44 -07:00
Vincent Koc
1f50fed3b2
Agents: skip eager context warmup for status commands
2026-03-15 20:52:31 -07:00
Vincent Koc
92d5307074
Status: lazy-load channel summary helpers
2026-03-15 20:52:31 -07:00
Peter Steinberger
0eaf03f55b
fix: update feishu setup adapter import
2026-03-15 20:46:29 -07:00
Peter Steinberger
dfc237c319
docs: update channel setup docs
2026-03-15 20:44:26 -07:00
Peter Steinberger
98dcbd3e7e
build: add setup entrypoints for migrated channel plugins
2026-03-15 20:44:26 -07:00
Peter Steinberger
371366e9eb
feat: add synology chat setup wizard
2026-03-15 20:44:26 -07:00
Peter Steinberger
de503dbcbb
refactor: move setup fallback into setup registry
2026-03-15 20:44:25 -07:00
Peter Steinberger
77d0ff629c
refactor: rename channel setup flow seam
2026-03-15 20:44:25 -07:00
Vincent Koc
ca6dbc0f0a
Gateway: lazy-load SSH status helpers
2026-03-15 20:40:22 -07:00
Peter Steinberger
aa28d1c711
feat: add firecrawl onboarding search plugin
2026-03-16 03:38:58 +00:00
Peter Steinberger
be8fef3840
docs: expand openshell sandbox docs
2026-03-15 20:35:56 -07:00
Peter Steinberger
ae7f18e503
feat: add remote openshell sandbox mode
2026-03-15 20:28:19 -07:00
Vincent Koc
3b26da4b82
CLI: route gateway status before program registration
2026-03-15 20:26:58 -07:00
Peter Steinberger
8ab01c5c93
refactor(core): land plugin auth and startup cleanup
2026-03-15 20:12:37 -07:00
Vincent Koc
f71f44576a
Status: lazy-load read-only account inspectors
2026-03-15 20:10:43 -07:00
jiarung
d2b7b46604
fix(usage-log): increase lock stale window to 30 s to prevent active-lock steals
...
appendRecord rewrites the full token-usage.json on every write, so lock
hold time grows with file size and disk speed. The previous stale: 5_000
was too tight: on large histories or slow disks a write can legitimately
take longer than 5 s, allowing a concurrent waiter to treat the still-
active lock as stale, reclaim it, and run an overlapping read-modify-write
cycle that silently drops the earlier writer's entry.
The risk is amplified by the attempt path where recordTokenUsage is fired
without awaiting, so multiple concurrent runs can legitimately overlap.
Fix:
• Raise stale to 30_000 ms — gives ample headroom for large files on
slow disks while still reclaiming crashed-process locks within 30 s.
• Match the retry budget: 150 retries × 200 ms ≈ 30 s with jitter,
so waiters exhaust retries only when the holder exceeds the stale
window (i.e., is genuinely stuck or has crashed).
2026-03-16 03:07:58 +00:00
Vincent Koc
986b772a89
Status: scope JSON plugin preload to configured channels
2026-03-15 20:05:54 -07:00
Peter Steinberger
d8b927ee6a
feat: add openshell sandbox backend
2026-03-15 20:03:22 -07:00
Peter Steinberger
bc6ca4940b
fix: drop duplicate channel setup import
2026-03-15 19:58:22 -07:00
Peter Steinberger
46482a283a
feat: add nostr setup and unify channel setup discovery
2026-03-15 19:58:22 -07:00
Peter Steinberger
84c0326f4d
refactor: move group access into setup wizard
2026-03-15 19:58:22 -07:00
Vincent Koc
d8e138c743
Gateway: add presence-only probe mode for status
2026-03-15 19:56:08 -07:00
Josh Avant
a2cb81199e
secrets: harden read-only SecretRef command paths and diagnostics ( #47794 )
...
* secrets: harden read-only SecretRef resolution for status and audit
* CLI: add SecretRef degrade-safe regression coverage
* Docs: align SecretRef status and daemon probe semantics
* Security audit: close SecretRef review gaps
* Security audit: preserve source auth SecretRef configuredness
* changelog
Signed-off-by: joshavant <830519+joshavant@users.noreply.github.com>
---------
Signed-off-by: joshavant <830519+joshavant@users.noreply.github.com>
2026-03-15 21:55:24 -05:00
Peter Steinberger
3f12e90f3e
fix(ci): repair security and route test fixtures
2026-03-15 19:54:00 -07:00
Peter Steinberger
65ec4843e8
fix: tighten outbound channel/plugin resolution
2026-03-16 02:52:01 +00:00
Peter Steinberger
a97e1e1611
fix(plugins): tighten lazy setup typing
2026-03-15 19:47:58 -07:00
Vincent Koc
fdfefcaa11
Status: skip unused channel issue scan in JSON mode
2026-03-15 19:43:42 -07:00
Vincent Koc
dd203c8eee
Zalouser: split setup adapter helpers
2026-03-15 19:39:38 -07:00
Peter Steinberger
b580d142cd
refactor(plugins): split lightweight channel setup modules
2026-03-15 19:38:19 -07:00
Vincent Koc
88b8151c52
Zalo: split setup adapter helpers
2026-03-15 19:37:25 -07:00
Tak Hoffman
b37085984d
fixed main?
2026-03-15 21:36:56 -05:00
Vincent Koc
61bcdcca9c
Feishu: split setup adapter helpers
2026-03-15 19:35:25 -07:00
Ayaan Zaidi
c08796b039
fix: add Telegram topic-edit action ( #47798 )
2026-03-16 08:03:22 +05:30
Ayaan Zaidi
ac5e97097e
fix(telegram): normalize topic-edit targets
2026-03-16 08:03:22 +05:30