@kendoo.agentdesk/agentdesk 0.6.6 → 0.6.8

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/README.md +59 -48
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,17 +2,21 @@
2
2
 
3
3
  AI team orchestrator for [Claude Code](https://claude.ai/code). Run collaborative agent sessions from your terminal and watch them live on [agentdesk.live](https://agentdesk.live).
4
4
 
5
- AgentDesk spawns a team of 7 specialized AI agents inside Claude Code that collaborate on your tasks:
5
+ AgentDesk spawns a team of AI agents inside Claude Code that collaborate on your tasks. The default team includes 7 built-in agents, and you can add custom agents to fit your workflow.
6
+
7
+ ### Built-in Agents
6
8
 
7
9
  | Agent | Role |
8
10
  |-------|------|
9
11
  | Jane | Product Lead — facilitates, clarifies requirements, coordinates the team |
10
- | Luna | UX/UI Designer — visual consistency, accessibility, interaction patterns |
11
- | Mark | Content Writer — copy, tone, user-facing text |
12
- | Sam | Architecture Auditor — code structure, separation of concerns |
13
12
  | Dennis | Senior Developer — implements the solution |
14
- | Bart | QA Engineeredge cases, risks, acceptance criteria |
13
+ | Sam | Architecture Auditorcode structure, separation of concerns |
14
+ | Bart | QA Engineer — edge cases, risks, acceptance criteria, screenshots |
15
15
  | Vera | Test Engineer — unit tests, regression coverage |
16
+ | Luna | UX/UI Designer — visual consistency, accessibility, interaction patterns |
17
+ | Mark | Content Writer — copy, tone, user-facing text |
18
+
19
+ You can also add **custom agents** (e.g., a Security Engineer or DevOps specialist) via project settings.
16
20
 
17
21
  ## Getting Started
18
22
 
@@ -22,7 +26,7 @@ AgentDesk spawns a team of 7 specialized AI agents inside Claude Code that colla
22
26
  npm i -g @kendoo.agentdesk/agentdesk
23
27
  ```
24
28
 
25
- Requires [Node.js](https://nodejs.org/) 18+.
29
+ Requires [Claude Code](https://claude.ai/code) and [Node.js](https://nodejs.org/) 18+.
26
30
 
27
31
  ### 2. Sign in
28
32
 
@@ -38,7 +42,7 @@ Opens your browser to [agentdesk.live](https://agentdesk.live) where you sign up
38
42
  agentdesk init
39
43
  ```
40
44
 
41
- This detects your project, asks which task tracker you use (Linear, Jira, GitHub Issues, or none), and saves the config to `.agentdesk.json`.
45
+ This detects your project, asks which task tracker you use (Linear, Jira, GitHub Issues, or none), and saves the config.
42
46
 
43
47
  ### 4. Run a team session
44
48
 
@@ -55,46 +59,7 @@ agentdesk team -d "Fix the checkout total calculation"
55
59
  agentdesk team -d "Add Google OAuth to the login page"
56
60
  ```
57
61
 
58
- Open [agentdesk.live](https://agentdesk.live) to watch the session live.
59
-
60
- ## Configuration
61
-
62
- `agentdesk init` creates `.agentdesk.json` in your project root. You can also edit it manually:
63
-
64
- ```json
65
- {
66
- "tracker": "linear",
67
- "linear": { "workspace": "your-workspace" }
68
- }
69
- ```
70
-
71
- ### Task trackers
72
-
73
- | Tracker | Config |
74
- |---------|--------|
75
- | Linear | `{ "tracker": "linear", "linear": { "workspace": "..." } }` |
76
- | Jira | `{ "tracker": "jira", "jira": { "baseUrl": "https://company.atlassian.net" } }` |
77
- | GitHub Issues | `{ "tracker": "github", "github": { "repo": "owner/repo" } }` |
78
- | None | No config needed — pass `-d "description"` when running a session |
79
-
80
- ### Declaring project agents
81
-
82
- If your project has existing AI agents, bots, or automation, declare them so the team knows about them:
83
-
84
- ```json
85
- {
86
- "projectAgents": [
87
- {
88
- "name": "ReviewBot",
89
- "role": "Auto-reviews PRs for security issues",
90
- "when": "Triggers on every PR creation",
91
- "how": "Comment /review on a PR to re-trigger"
92
- }
93
- ]
94
- }
95
- ```
96
-
97
- AgentDesk also auto-discovers agents from `.claude/agents/`, `.claude/commands/`, `.mcp.json`, GitHub Actions workflows, Dependabot, and Renovate configs.
62
+ Watch the session live at [agentdesk.live](https://agentdesk.live). Each session gets a deep link you can share.
98
63
 
99
64
  ## Commands
100
65
 
@@ -104,6 +69,7 @@ agentdesk logout Sign out and remove credentials
104
69
  agentdesk init Set up project and configure tracker
105
70
  agentdesk team <TASK-ID> Run a team session on an existing task
106
71
  agentdesk team -d "..." Describe what you want — task created automatically
72
+ agentdesk update Update to the latest version
107
73
  ```
108
74
 
109
75
  ### Options
@@ -113,12 +79,57 @@ agentdesk team -d "..." Describe what you want — task created a
113
79
  | `--description`, `-d` | Task description or requirements |
114
80
  | `--cwd` | Working directory (defaults to current) |
115
81
 
82
+ ## Configuration
83
+
84
+ Settings can be managed in two ways:
85
+
86
+ 1. **Web UI** — go to [agentdesk.live](https://agentdesk.live), select a project, and click the gear icon to configure tracker, team composition, custom agents, commands, and instructions.
87
+ 2. **Local file** — `.agentdesk.json` in your project root. Local settings override server settings.
88
+
89
+ The CLI fetches settings from the server at runtime. If the server is unreachable, it falls back to `.agentdesk.json`.
90
+
91
+ ### Task trackers
92
+
93
+ | Tracker | Config |
94
+ |---------|--------|
95
+ | Linear | Workspace slug (e.g., `kendoo`) |
96
+ | Jira | Base URL (e.g., `https://company.atlassian.net`) + project key |
97
+ | GitHub Issues | Repository (e.g., `owner/repo`) |
98
+ | None | No config needed — pass `-d "description"` when running a session |
99
+
100
+ ### Custom agents
101
+
102
+ Add custom agents via your project settings at [agentdesk.live](https://agentdesk.live):
103
+
104
+ 1. Select your project and click the gear icon
105
+ 2. Under **Project Agents**, click "Add agent" and fill in the name, role, when, and how
106
+ 3. Under **Team Composition**, toggle the new agent on
107
+ 4. Save
108
+
109
+ Custom agents participate in all phases alongside built-in agents — brainstorm, planning, execution, and review.
110
+
111
+ You can also define them in `.agentdesk.json` as a local override if preferred.
112
+
113
+ AgentDesk also auto-discovers agents from `.claude/agents/`, `.claude/commands/`, `.mcp.json`, GitHub Actions workflows, Dependabot, and Renovate configs.
114
+
116
115
  ## How It Works
117
116
 
118
117
  1. You run `agentdesk team TASK-ID` in your project directory
119
118
  2. AgentDesk detects your project type, reads `CLAUDE.md`, and discovers existing agents
120
- 3. 7 AI agents collaborate on your task in structured phases: **Brainstorm** > **Planning** > **Execution** > **Review**
119
+ 3. The team collaborates in structured phases: **Intake** > **Brainstorm** > **Planning** > **Execution** > **Review**
121
120
  4. The session streams live to [agentdesk.live](https://agentdesk.live) where you can watch and send messages to the team
121
+ 5. For UI tasks, the team captures screenshots (desktop + mobile) and uploads them to your task tracker
122
+ 6. Token usage is tracked and displayed per session
123
+
124
+ ## Dashboard Features
125
+
126
+ - **Live sessions** — watch agents collaborate in real-time
127
+ - **Session deep links** — share a direct URL to any session
128
+ - **Project settings** — configure tracker, team, custom agents, and instructions per project
129
+ - **Account settings** — manage your API key and profile
130
+ - **Agent roster** — see each agent's role, participation rate, tag breakdown, and phase involvement
131
+ - **Token tracking** — input/output token counts per session
132
+ - **Auto-reconnect** — CLI reconnects automatically if the connection drops
122
133
 
123
134
  ## Requirements
124
135
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kendoo.agentdesk/agentdesk",
3
- "version": "0.6.6",
3
+ "version": "0.6.8",
4
4
  "description": "AI team orchestrator for Claude Code — run collaborative agent sessions from your terminal",
5
5
  "type": "module",
6
6
  "bin": {