@agenit/cli 1.1.0 → 1.1.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/CHANGELOG.md +20 -0
- package/cli.js +2303 -1097
- package/config/flow.toml +396 -0
- package/package.json +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
3
3
|
All notable changes to `@agenit/cli` are documented here. The project
|
|
4
4
|
follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
+
## [1.1.1] - 2026-05-08
|
|
7
|
+
|
|
8
|
+
A patch bump on top of 1.1.0 covering the rebuild after the
|
|
9
|
+
end-of-session summarizer landed.
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- Bundle now ships a `dist/config/` directory containing a default
|
|
14
|
+
`flow.toml` so a fresh install has working `[routing]`,
|
|
15
|
+
`[advisor]`, and `[session]` defaults out of the box without the
|
|
16
|
+
user having to copy anything from the repo.
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- Squad runner config plumbing — `helperTimeoutPlannerSecs` and
|
|
21
|
+
`reducerModel` now flow correctly from `[squad]` in `flow.toml`
|
|
22
|
+
through `SquadRunConfig` to the helper dispatcher. Existing
|
|
23
|
+
configs without these keys keep the prior behaviour
|
|
24
|
+
(`helperTimeoutSecs × 3` for planner, planner model for reducer).
|
|
25
|
+
|
|
6
26
|
## [1.1.0] - 2026-05-08
|
|
7
27
|
|
|
8
28
|
A minor bump because this batch is dominated by new user-facing
|