@kendoo.agentdesk/agentdesk 0.20.6 → 0.22.0
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 +36 -0
- package/README.md +28 -4
- package/bin/agentdesk.mjs +12 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -13,6 +13,42 @@ Internal refactors, infrastructure changes, and architectural notes are not list
|
|
|
13
13
|
### Added
|
|
14
14
|
- `[UI]` Private-session sharing flow. When someone visits a session URL they don't own, they now see a friendly "Shh… this one's private" page with a one-click "Request access" button instead of a blank error. The session owner sees pending requests in a new header inbox and can grant viewer access for just that session or the whole project. Viewer-granted sessions show up in the teammate's sidebar tagged as a viewer.
|
|
15
15
|
|
|
16
|
+
## [0.22.0] — 2026-05-23
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- `[CLI]` `agentdesk team` now defaults to phased mode so per-phase model overrides actually apply. Previously the whole session ran in a single process, which meant the model configured for INTAKE was silently overridden by EXECUTION's model (or vice versa). The fix routes each phase through its own Claude process, honoring per-phase model selection. Pass `--single-process` (or `--no-phased`) to opt back into single-process behavior.
|
|
20
|
+
- `[Both]` Daemon-cancelled sessions now report `status="stopped"` (terminal) instead of `"complete"`. The dashboard renders Stopped in red and surfaces Error and Canceled distinctly instead of collapsing them into a generic "Disconnected" badge.
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- `[CLI]` New CLI-created tasks auto-assign to the connected user across Jira, Linear, and GitHub. No more "no assignee" tasks landing on the tracker after team kickoff.
|
|
24
|
+
- `[CLI]` Orchestrator prints the resolved model per phase to stderr — useful when verifying per-phase overrides are actually taking effect.
|
|
25
|
+
- `[CLI]` Stream parser detects phase markers per-line (canonical `# PHASE: <NAME>`, heading-style, and natural-language transitions) so the dashboard timeline doesn't get stuck on long-running phases.
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
- `[UI]` Daemon `heartbeat` now bumps `lastActivityAt` for the user's active sessions and revives stale ones — prevents misleading "CLI Offline" indicators during deep tool work when the CLI process is alive but Claude is busy in a long bash or edit run.
|
|
29
|
+
- `[UI]` `ProjectSettingsPage` copy reflects that per-phase models always apply now (was previously hedged from the days when single-process runs ignored the override).
|
|
30
|
+
|
|
31
|
+
## [0.21.0] — 2026-04-28
|
|
32
|
+
|
|
33
|
+
Mobile-design wave plus session-UI polish. Versions `0.20.4` through `0.20.6` were intermediate publishes during the same wave on the same day and are superseded by `0.21.0`.
|
|
34
|
+
|
|
35
|
+
### Added
|
|
36
|
+
- `[UI]` Full mobile design rolled out across the dashboard, Sessions list, Run screen, composer, and chat surfaces (AD-14 through AD-25). Includes hybrid design tokens, typography aligned with claude/design, mobile chat status bar, magazine-style Sessions header, and bigger chat text on mobile.
|
|
37
|
+
- `[UI]` Topbar mono breadcrumb and ⌘↵ hint on the Run Team page.
|
|
38
|
+
- `[UI]` Transcript run banner and completion footer with article-width body.
|
|
39
|
+
- `[UI]` Composer "›" prefix and a keyboard hint row surfacing the ⌘↵ binding.
|
|
40
|
+
|
|
41
|
+
### Changed
|
|
42
|
+
- `[UI]` Dashboard is now a 2-column layout (metric strip on top, team foot on bottom).
|
|
43
|
+
- `[UI]` `SessionList` restyle — sharper visuals, selected-only highlighting (no more "row hover lights up every other row").
|
|
44
|
+
|
|
45
|
+
### Fixed
|
|
46
|
+
- `[UI]` AgentDesk wordmark font no longer regresses to the wrong typeface after the design-token rollout.
|
|
47
|
+
- `[UI]` Settings form state now resets when you switch projects (was previously carrying stale fields from the prior project).
|
|
48
|
+
|
|
49
|
+
### Removed
|
|
50
|
+
- `[UI]` Unused `SessionStats` component.
|
|
51
|
+
|
|
16
52
|
## [0.20.3] — 2026-04-19
|
|
17
53
|
|
|
18
54
|
### Fixed
|
package/README.md
CHANGED
|
@@ -21,7 +21,31 @@ You can also add **custom agents** (e.g., a Security Engineer or DevOps speciali
|
|
|
21
21
|
|
|
22
22
|
## Getting Started
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
The fastest way to try AgentDesk is the **Claude Code plugin**. It runs the phased loop (intake → plan → execute → review → summary) entirely inside your existing Claude Code session — no signup, no daemon, no extra install.
|
|
25
|
+
|
|
26
|
+
### Quickstart — Claude Code plugin
|
|
27
|
+
|
|
28
|
+
Inside any Claude Code session:
|
|
29
|
+
|
|
30
|
+
```text
|
|
31
|
+
/plugin marketplace add anthropics/claude-plugins-community
|
|
32
|
+
/plugin install agentdesk@claude-community
|
|
33
|
+
/agentdesk <your task or tracker URL>
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Five sub-agents run in sequence with a dedicated review pass before SUMMARY produces the final report. State persists in `.agentdesk/session-memory.md`.
|
|
37
|
+
|
|
38
|
+
**What the plugin covers:** the phased workflow, one task at a time, in your terminal. Zero-account, in-process.
|
|
39
|
+
|
|
40
|
+
**What needs the full CLI + dashboard (below):** session history, dashboard visibility, multi-session parallelism, team coordination, tracker integration (Jira/Linear/GitHub write-back), and the long-running daemon.
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
### Full setup — CLI + dashboard
|
|
45
|
+
|
|
46
|
+
For session history, team workflows, and tracker integration, install the AgentDesk CLI and connect it to your `agentdesk.live` account.
|
|
47
|
+
|
|
48
|
+
#### 1. Install
|
|
25
49
|
|
|
26
50
|
```bash
|
|
27
51
|
npm i -g @kendoo.agentdesk/agentdesk
|
|
@@ -29,7 +53,7 @@ npm i -g @kendoo.agentdesk/agentdesk
|
|
|
29
53
|
|
|
30
54
|
Requires [Claude Code](https://claude.ai/code) and [Node.js](https://nodejs.org/) 18+.
|
|
31
55
|
|
|
32
|
-
|
|
56
|
+
#### 2. Sign in
|
|
33
57
|
|
|
34
58
|
```bash
|
|
35
59
|
agentdesk login
|
|
@@ -37,7 +61,7 @@ agentdesk login
|
|
|
37
61
|
|
|
38
62
|
Opens your browser to [agentdesk.live](https://agentdesk.live) where you sign up or log in (email/password or Google). Your API key is saved automatically.
|
|
39
63
|
|
|
40
|
-
|
|
64
|
+
#### 3. Set up your project
|
|
41
65
|
|
|
42
66
|
```bash
|
|
43
67
|
agentdesk init
|
|
@@ -71,7 +95,7 @@ All menus use arrow-key navigation with color highlighting; Ctrl-C exits cleanly
|
|
|
71
95
|
|
|
72
96
|
`.agentdesk.json` is kept in sync with the server: every CLI run fetches the authoritative config and rewrites the local file as a credential-free snapshot. Credentials live only on the server, encrypted. If a local edit disagreed with the server's value, a one-line warning lists the overridden fields.
|
|
73
97
|
|
|
74
|
-
|
|
98
|
+
#### 4. Run a team session
|
|
75
99
|
|
|
76
100
|
Work on an existing task:
|
|
77
101
|
|
package/bin/agentdesk.mjs
CHANGED
|
@@ -79,7 +79,9 @@ if (!command || command === "help" || command === "--help") {
|
|
|
79
79
|
Options:
|
|
80
80
|
--description, -d Task description or requirements
|
|
81
81
|
--cwd Working directory (defaults to current)
|
|
82
|
-
--
|
|
82
|
+
--single-process Run the whole team session in one Claude process on the EXECUTION model.
|
|
83
|
+
Default is phased mode (INTAKE → PLAN → EXECUTION → REVIEW → SUMMARY),
|
|
84
|
+
which honors per-phase model overrides from project settings.
|
|
83
85
|
--child-strategy How to handle child tasks: "inline" (default) or "branch"
|
|
84
86
|
|
|
85
87
|
|
|
@@ -93,7 +95,7 @@ if (!command || command === "help" || command === "--help") {
|
|
|
93
95
|
|
|
94
96
|
Examples:
|
|
95
97
|
agentdesk team KEN-517
|
|
96
|
-
agentdesk team KEN-517 --
|
|
98
|
+
agentdesk team KEN-517 --single-process
|
|
97
99
|
agentdesk team -d "Fix the checkout total calculation"
|
|
98
100
|
agentdesk team -d "Add Google OAuth to the login page"
|
|
99
101
|
|
|
@@ -161,12 +163,16 @@ else if (command === "bootstrap") {
|
|
|
161
163
|
}
|
|
162
164
|
|
|
163
165
|
else if (command === "team") {
|
|
164
|
-
// Parse options first to find -d, --cwd, --child-strategy
|
|
166
|
+
// Parse options first to find -d, --cwd, --child-strategy.
|
|
167
|
+
// `phased` is the default — each phase spawns its own Claude process so
|
|
168
|
+
// per-phase model overrides from .agentdesk.json are honored. Pass
|
|
169
|
+
// --single-process (alias --no-phased) to fall back to the legacy
|
|
170
|
+
// single-process mode that runs everything on the EXECUTION model.
|
|
165
171
|
let description = "";
|
|
166
172
|
let cwd = process.cwd();
|
|
167
173
|
let taskId = null;
|
|
168
174
|
let childStrategy = null;
|
|
169
|
-
let phased =
|
|
175
|
+
let phased = true;
|
|
170
176
|
const remaining = args.slice(1);
|
|
171
177
|
|
|
172
178
|
for (let i = 0; i < remaining.length; i++) {
|
|
@@ -178,6 +184,8 @@ else if (command === "team") {
|
|
|
178
184
|
childStrategy = remaining[++i];
|
|
179
185
|
} else if (remaining[i] === "--phased") {
|
|
180
186
|
phased = true;
|
|
187
|
+
} else if (remaining[i] === "--single-process" || remaining[i] === "--no-phased") {
|
|
188
|
+
phased = false;
|
|
181
189
|
} else if (!taskId && !remaining[i].startsWith("-")) {
|
|
182
190
|
taskId = remaining[i];
|
|
183
191
|
}
|