@kendoo.agentdesk/agentdesk 0.28.1 → 0.28.2
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 +7 -0
- package/cli/config.mjs +1 -1
- package/cli/engine/agents/index.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,13 @@ All user-facing changes to AgentDesk. Each entry is tagged:
|
|
|
8
8
|
|
|
9
9
|
Internal refactors, infrastructure changes, and architectural notes are not listed here.
|
|
10
10
|
|
|
11
|
+
## [0.28.2] — 2026-09-18
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- `[UI]` The session feed no longer prints a line for every file read, search, and shell command. Consecutive tool actions collapse into a single expandable "N actions" line, so the feed reads as a team conversation instead of a tool-call transcript.
|
|
15
|
+
- `[UI]` The team status bar is now docked at the bottom of the session view and no longer scrolls away with the conversation. The message list scrolls independently above it.
|
|
16
|
+
- `[CLI]` Added Fable 5.1 as a selectable per-phase model, and updated the Opus/Sonnet model labels in project settings.
|
|
17
|
+
|
|
11
18
|
## [0.28.1] — 2026-09-17
|
|
12
19
|
|
|
13
20
|
### Fixed
|
package/cli/config.mjs
CHANGED
|
@@ -22,7 +22,7 @@ const DEFAULTS = {
|
|
|
22
22
|
projectAgents: [],
|
|
23
23
|
screenshots: true,
|
|
24
24
|
// Model per phase — override the phase default.
|
|
25
|
-
// Keys: INTAKE, PLAN, EXECUTION, REVIEW, SUMMARY. Values: "default" | "opus" | "sonnet" | "haiku".
|
|
25
|
+
// Keys: INTAKE, PLAN, EXECUTION, REVIEW, SUMMARY. Values: "default" | "opus" | "sonnet" | "haiku" | "fable".
|
|
26
26
|
// Missing entry or "default" falls back to the phase default
|
|
27
27
|
// (sonnet for INTAKE/PLAN/EXECUTION, haiku for REVIEW/SUMMARY).
|
|
28
28
|
phaseModels: {},
|
|
@@ -33,7 +33,7 @@ export const PHASE_ROSTER = Object.freeze({
|
|
|
33
33
|
const CUSTOM_AGENT_PHASES = new Set(["PLAN", "EXECUTION"]);
|
|
34
34
|
|
|
35
35
|
// Today's defaults: REVIEW and SUMMARY on haiku, the rest on the CLI default.
|
|
36
|
-
// `phaseModels` values are "opus" | "sonnet" | "haiku" | "default" | undefined.
|
|
36
|
+
// `phaseModels` values are "opus" | "sonnet" | "haiku" | "fable" | "default" | undefined.
|
|
37
37
|
export function modelForPhase(phase, phaseModels = {}) {
|
|
38
38
|
const choice = phaseModels?.[phase];
|
|
39
39
|
if (choice && choice !== "default") return choice;
|