Skip to content

Commit 5e76568

Browse files
author
Hephaestus
committed
docs(changelog): editorial follow-up β€” 36 remaining PRs from Scribe pass
Adds entries Hermes missed for: --json-logs (#3519), CLI shortcuts (#3521), ag run timeout (#3518/#3498), auto MCP wiring (#3501), Windows workDir (#3502), cost tracking fixes (#3311), metering lifecycle (#3315), preflight auth (#3314), project-local config (#3313), /send non-blocking (#3437), ACP notifications wired (#3463), design tokens system-wide (#3456), auth persistence (#3386), protobufjs CVE (#3218), and 16 more.
1 parent dc8d49b commit 5e76568

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ The ACP (Agent Control Protocol) cutover is complete. This release removes the t
6262
- **Zero-config auth for localhost** β€” no token required on localhost ([#3493](https://github.com/OneStepAt4time/aegis/pull/3493), [#3496](https://github.com/OneStepAt4time/aegis/pull/3496))
6363
- **ag list, read, kill, status, tail subcommands** β€” full CLI session management ([#3499](https://github.com/OneStepAt4time/aegis/pull/3499))
6464
- **Friendlier session display names** β€” auto-generated readable names ([#3491](https://github.com/OneStepAt4time/aegis/pull/3491))
65+
- **Auto MCP wiring** β€” `ag init` detects Claude Code and offers MCP setup ([#3501](https://github.com/OneStepAt4time/aegis/pull/3501))
66+
- **`--json-logs` flag** β€” structured JSON logging for server startup ([#3500](https://github.com/OneStepAt4time/aegis/pull/3519))
67+
- **Dashboard CLI shortcuts panel** β€” copy-to-clipboard reference for common commands ([#3521](https://github.com/OneStepAt4time/aegis/pull/3521))
68+
- **`ag run` 30s output timeout** β€” fail loudly with actionable error when no output within 30s ([#3498](https://github.com/OneStepAt4time/aegis/pull/3518))
6569

6670
### Changed
6771

@@ -202,6 +206,27 @@ The ACP (Agent Control Protocol) cutover is complete. This release removes the t
202206
- **Memory bridge** β€” port gstack learnings pattern ([#3452](https://github.com/OneStepAt4time/aegis/pull/3452))
203207
- **Flaky test isolation** β€” eliminate issues ([#3304](https://github.com/OneStepAt4time/aegis/pull/3304))
204208
- **Skip broken tests** β€” unblock CI ([#3454](https://github.com/OneStepAt4time/aegis/pull/3454))
209+
- **Active session count excludes terminal states** β€” killed/completed/crashed filtered out ([#3334](https://github.com/OneStepAt4time/aegis/pull/3396))
210+
- **--accept-permissions flag** for ag run and ag create ([#3336](https://github.com/OneStepAt4time/aegis/pull/3416))
211+
- **--port flag propagation** to config and server process ([#3343](https://github.com/OneStepAt4time/aegis/pull/3445))
212+
- **ag init --force implies --yes** β€” handles partial state ([#3345](https://github.com/OneStepAt4time/aegis/pull/3391))
213+
- **Proactive keys.json reload** + orphan auth-token detection ([#3356](https://github.com/OneStepAt4time/aegis/pull/3485))
214+
- **File permissions hardened** β€” removed info leaks in state directory ([#3360](https://github.com/OneStepAt4time/aegis/pull/3375))
215+
- **Auth token persistence** β€” write to ~/.aegis/auth-token ([#3369](https://github.com/OneStepAt4time/aegis/pull/3386))
216+
- **Windows workDir normalization** across shell semantics ([#3502](https://github.com/OneStepAt4time/aegis/pull/3502))
217+
- **MeteringService lifecycle** wired for persistent cost tracking ([#3310](https://github.com/OneStepAt4time/aegis/pull/3315))
218+
- **Preflight auth prevents orphaned sessions** ([#3306](https://github.com/OneStepAt4time/aegis/pull/3314))
219+
- **Project-local config** β€” ag run finds .aegis/config.yaml ([#3307](https://github.com/OneStepAt4time/aegis/pull/3313))
220+
- **Cost tracking API fixes** β€” 3 bugs in burn rate and per-session cost ([#3311](https://github.com/OneStepAt4time/aegis/pull/3311))
221+
- **/send returns immediately** instead of blocking ([#3430](https://github.com/OneStepAt4time/aegis/pull/3437))
222+
- **Wire ACP notifications** to event store for /read endpoint ([#3422](https://github.com/OneStepAt4time/aegis/pull/3463))
223+
- **Auth-fail rate limit reset** on successful auth ([#3072](https://github.com/OneStepAt4time/aegis/pull/3108))
224+
- **AuthManager auto-reload** on state directory recovery ([#3373](https://github.com/OneStepAt4time/aegis/pull/3374))
225+
- **Headless ag mcp smoke script** for npx/local usage ([#3328](https://github.com/OneStepAt4time/aegis/pull/3328))
226+
- **Design tokens system-wide** β€” replace hardcoded colors with CSS custom properties ([#3456](https://github.com/OneStepAt4time/aegis/pull/3456))
227+
- **Chart theme centralized** β€” Recharts theme with design tokens ([#3455](https://github.com/OneStepAt4time/aegis/pull/3455))
228+
- **Dashboard responsive + error boundaries** for 4 pages ([#3400](https://github.com/OneStepAt4time/aegis/pull/3406))
229+
- **Sessions route cleanup** β€” refactored with ACP backend JSDoc ([#3302](https://github.com/OneStepAt4time/aegis/pull/3305))
205230

206231
### Documentation
207232

@@ -277,6 +302,9 @@ The ACP (Agent Control Protocol) cutover is complete. This release removes the t
277302
- **Zero-config localhost note** β€” ag init zero-config docs ([#3507](https://github.com/OneStepAt4time/aegis/pull/3507))
278303
- **CLI session subcommands docs** β€” ag list, read, kill, status, tail ([#3510](https://github.com/OneStepAt4time/aegis/pull/3510))
279304
- **Zero-config Quick Start** β€” README rewrite for 2-command install ([#3503](https://github.com/OneStepAt4time/aegis/pull/3503), [#3517](https://github.com/OneStepAt4time/aegis/pull/3517))
305+
- **promptDelivery synchronous docs** β€” updated after async revert ([#3274](https://github.com/OneStepAt4time/aegis/pull/3277))
306+
- **--json-logs flag docs** β€” CLI reference update ([#3522](https://github.com/OneStepAt4time/aegis/pull/3522))
307+
- **ag auth migrate docs** β€” CLI reference for auth migration ([#3520](https://github.com/OneStepAt4time/aegis/pull/3520))
280308

281309
### CI
282310

@@ -295,6 +323,8 @@ The ACP (Agent Control Protocol) cutover is complete. This release removes the t
295323
- Added `date-fns ^4.1.0` for dashboard date formatting ([#2929](https://github.com/OneStepAt4time/aegis/pull/2929))
296324
- **Dashboard deps bump** β€” dompurify, lucide-react, react-router-dom, zod ([#3474](https://github.com/OneStepAt4time/aegis/pull/3474))
297325
- **OTel bump to 0.218.x** β€” removes protobufjs dependency ([#3476](https://github.com/OneStepAt4time/aegis/pull/3476))
326+
- **protobufjs override to >=8.2.0** β€” resolves 7 HIGH CVEs ([#3218](https://github.com/OneStepAt4time/aegis/pull/3218))
327+
- **hono ^4.12.18** β€” resolves 7 Dependabot alerts
298328

299329
### Internal
300330

0 commit comments

Comments
Β (0)