@kendoo.agentdesk/agentdesk 0.15.3 → 0.15.5

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +53 -0
  2. package/package.json +6 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,53 @@
1
+ # Changelog
2
+
3
+ All user-facing changes to AgentDesk. Each entry is tagged:
4
+
5
+ - `[CLI]` — affects the `agentdesk` command-line tool
6
+ - `[UI]` — affects the dashboard at agentdesk.live
7
+ - `[Both]` — affects both
8
+
9
+ Internal refactors, infrastructure changes, and architectural notes are not listed here.
10
+
11
+ ## [0.15.5] — 2026-04-18
12
+
13
+ ### Added
14
+ - `[UI]` "What's new" release-notes drawer in the dashboard. Click the daemon version badge or pick "What's new" from the avatar menu. Shows user-facing changes only; internal rationale stays in the repo.
15
+
16
+ ## [0.15.4] — 2026-04-18
17
+
18
+ ### Added
19
+ - `[Both]` This changelog. Each entry is tagged by audience and scoped to user-facing changes; internal rationale lives separately in the repo.
20
+
21
+ ## [0.15.3] — 2026-04-18
22
+
23
+ ### Changed
24
+ - `[Both]` Agents now verify outcomes with direct observation before reporting "done" / "deployed" / "fixed" / "works" — reading the command output, fetching the live endpoint, loading the page. Intermediate signals (CI green, DB row present) are no longer treated as proof of user-visible outcome.
25
+ - `[Both]` The REVIEW phase actively audits the execution phase's claims and flags unverified ones, returning the team to EXECUTION to produce evidence.
26
+
27
+ ## [0.15.2] — 2026-04-18
28
+
29
+ ### Fixed
30
+ - `[UI]` Project settings page was not showing saved phase-model values after refresh and on the wire returned swapped fields for phase models and update time. Saves were always persisting correctly; only the read path was broken.
31
+
32
+ ## [0.15.1] — 2026-04-18
33
+
34
+ ### Changed
35
+ - `[UI]` Settings page now surfaces save failures inline and re-syncs state from the server after a successful save, so the values you see match what's stored.
36
+
37
+ ## [0.15.0] — 2026-04-18
38
+
39
+ ### Added
40
+ - `[Both]` Phased mode now has five phases: Intake, Plan, Execution, **Review**, **Summary**.
41
+ - **Review** is a read-only completeness check — it verifies the implementation meets requirements, flags missed documentation updates or silently-deferred scope, and does not modify code. If gaps are found, the team is returned to Execution once before continuing.
42
+ - **Summary** owns all final tracker writes — task comments, transitioning to "In Review", session protocol. Execution no longer writes the final summary.
43
+ - `[UI]` Project settings expose model pickers for all five phases. Review and Summary default to Haiku 4.5; all other phases keep their existing default. Every phase is overridable.
44
+
45
+ ## [0.14.5] — 2026-04-18
46
+
47
+ ### Added
48
+ - `[CLI]` Daemon startup banner shows the running CLI version.
49
+
50
+ ## [0.14.4] — 2026-04-18
51
+
52
+ ### Changed
53
+ - `[UI]` Phased mode is now the default when starting a session from the dashboard, so per-phase model settings apply without an extra toggle.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kendoo.agentdesk/agentdesk",
3
- "version": "0.15.3",
3
+ "version": "0.15.5",
4
4
  "description": "AI team orchestrator for Claude Code — run collaborative agent sessions from your terminal",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,7 +10,8 @@
10
10
  "bin/",
11
11
  "cli/",
12
12
  "prompts/",
13
- "README.md"
13
+ "README.md",
14
+ "CHANGELOG.md"
14
15
  ],
15
16
  "engines": {
16
17
  "node": ">=18"
@@ -21,7 +22,9 @@
21
22
  "server": "node server/index.mjs",
22
23
  "build": "vite build",
23
24
  "preview": "vite preview",
24
- "test": "node --test tests/server.test.mjs tests/agents.test.mjs tests/homepage.test.mjs"
25
+ "test": "node --test tests/server.test.mjs tests/agents.test.mjs tests/homepage.test.mjs",
26
+ "lint:changelog": "node scripts/lint-changelog.mjs",
27
+ "prepublishOnly": "node scripts/lint-changelog.mjs"
25
28
  },
26
29
  "dependencies": {
27
30
  "@radix-ui/react-avatar": "^1.1.11",