@kendoo.agentdesk/agentdesk 0.12.3 → 0.13.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/README.md +3 -2
- package/bin/agentdesk.mjs +2 -2
- package/cli/agents.mjs +25 -1
- package/cli/config.mjs +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
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 AI agents inside Claude Code that collaborate on your tasks. The default team includes
|
|
5
|
+
AgentDesk spawns a team of AI agents inside Claude Code that collaborate on your tasks. The default team includes 8 built-in agents, and you can add custom agents to fit your workflow.
|
|
6
6
|
|
|
7
7
|
### Built-in Agents
|
|
8
8
|
|
|
@@ -15,6 +15,7 @@ AgentDesk spawns a team of AI agents inside Claude Code that collaborate on your
|
|
|
15
15
|
| Vera | Test Engineer — unit tests, regression coverage |
|
|
16
16
|
| Luna | UX/UI Designer — visual consistency, accessibility, interaction patterns |
|
|
17
17
|
| Mark | Content Writer — copy, tone, user-facing text |
|
|
18
|
+
| Nora | Documentation Steward — README, /docs, setup guides, npm metadata, website docs |
|
|
18
19
|
|
|
19
20
|
You can also add **custom agents** (e.g., a Security Engineer or DevOps specialist) via project settings.
|
|
20
21
|
|
|
@@ -69,7 +70,7 @@ agentdesk logout Sign out and remove credentials
|
|
|
69
70
|
agentdesk init Set up project and configure tracker
|
|
70
71
|
agentdesk team <TASK-ID> Run a team session on an existing task
|
|
71
72
|
agentdesk team -d "..." Describe what you want — task created automatically
|
|
72
|
-
agentdesk <agent> -d "..." Run a single agent (jane, dennis, sam, bart, vera, luna, mark)
|
|
73
|
+
agentdesk <agent> -d "..." Run a single agent (jane, dennis, sam, bart, vera, luna, mark, nora)
|
|
73
74
|
agentdesk daemon Start daemon for remote sessions
|
|
74
75
|
agentdesk update Update to the latest version
|
|
75
76
|
```
|
package/bin/agentdesk.mjs
CHANGED
|
@@ -64,7 +64,7 @@ if (!command || command === "help" || command === "--help") {
|
|
|
64
64
|
agentdesk init Set up project and configure tracker
|
|
65
65
|
agentdesk team <TASK-ID> Run a team session on an existing task
|
|
66
66
|
agentdesk team -d "..." Create a task and run a session
|
|
67
|
-
agentdesk <agent> -d "..." Run a single agent (jane, dennis, sam,
|
|
67
|
+
agentdesk <agent> -d "..." Run a single agent (jane, dennis, sam, bart, vera, luna, mark, nora)
|
|
68
68
|
agentdesk daemon Start daemon for remote sessions
|
|
69
69
|
agentdesk update Update to the latest version
|
|
70
70
|
|
|
@@ -99,7 +99,7 @@ if (!command || command === "help" || command === "--help") {
|
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
// Single-agent mode — agentdesk jane -d "...", agentdesk dennis TASK-123, etc.
|
|
102
|
-
const AGENT_NAMES = ["jane", "dennis", "sam", "bart", "vera", "luna", "mark"];
|
|
102
|
+
const AGENT_NAMES = ["jane", "dennis", "sam", "bart", "vera", "luna", "mark", "nora"];
|
|
103
103
|
if (AGENT_NAMES.includes(command?.toLowerCase())) {
|
|
104
104
|
let description = "";
|
|
105
105
|
let cwd = process.cwd();
|
package/cli/agents.mjs
CHANGED
|
@@ -126,6 +126,30 @@ export const BUILT_IN_AGENTS = {
|
|
|
126
126
|
order: 2.2,
|
|
127
127
|
},
|
|
128
128
|
},
|
|
129
|
+
Nora: {
|
|
130
|
+
badge: "❖❖ NORA ❖❖",
|
|
131
|
+
role: "Documentation Steward",
|
|
132
|
+
description: "keeps project docs, README, setup guides, website docs, and npm package metadata in sync with shipped behavior",
|
|
133
|
+
groundRules: "Nora MUST audit docs whenever user-facing behavior changes (new/changed CLI flags, config options, env vars, commands, features, or version bumps). She cites the exact file:line for every doc that needs updating.",
|
|
134
|
+
codePrinciple: "Docs are a product surface. README, /docs/**, website docs, setup guides, and npm package description must match what the code actually does. Stale docs are bugs.",
|
|
135
|
+
planning: "Docs review: which user-facing surfaces changed, what needs updating (README, /docs, setup guides, npm description, website docs)",
|
|
136
|
+
execution: {
|
|
137
|
+
step: "Nora reviews & updates docs (if applicable)",
|
|
138
|
+
tasks: [
|
|
139
|
+
"Determine if this change affects user-facing behavior: new/changed CLI flags, commands, config options, env vars, install steps, defaults, version bumps, or any feature a user interacts with. If no user-facing impact, Nora states 'no doc impact' and skips.",
|
|
140
|
+
"If there IS user-facing impact, Nora MUST audit this checklist and report findings with file:line references:",
|
|
141
|
+
"1. **README.md** — does it reflect the new behavior? Feature list, usage examples, CLI flags, config sample, install steps all still accurate?",
|
|
142
|
+
"2. **/docs/** — are guide pages (setup, usage, reference) updated? Any broken or now-incorrect examples?",
|
|
143
|
+
"3. **npm package metadata** — does `package.json` description, keywords, and the README shipped to npm reflect the new feature? (npm shows the repo README by default — check it renders correctly.)",
|
|
144
|
+
"4. **Website docs** — if the project has a public docs site (e.g. agentdesk.live/docs), flag which pages need updating. Dennis updates them.",
|
|
145
|
+
"5. **CLI help text / in-app help** — do `--help`, `-h`, or in-app help screens still match actual behavior?",
|
|
146
|
+
"6. **Setup guides / first-run experience** — do install instructions and first-run flows still work end-to-end?",
|
|
147
|
+
"For each doc that needs updating, Nora MUST propose the exact edit (or write it herself) and Dennis applies it before Bart creates the PR.",
|
|
148
|
+
"Blocking gate: Bart cannot create the PR until Nora signs off with one of: 'No doc impact — skipped' OR 'Docs updated: [list of files]'.",
|
|
149
|
+
],
|
|
150
|
+
order: 2.3,
|
|
151
|
+
},
|
|
152
|
+
},
|
|
129
153
|
};
|
|
130
154
|
|
|
131
155
|
/**
|
|
@@ -139,7 +163,7 @@ export function resolveTeam(config) {
|
|
|
139
163
|
const teamConfig = config.team || null;
|
|
140
164
|
const customAgents = config.projectAgents || [];
|
|
141
165
|
|
|
142
|
-
// Default: all
|
|
166
|
+
// Default: all 8 agents
|
|
143
167
|
if (!teamConfig) {
|
|
144
168
|
return Object.entries(BUILT_IN_AGENTS).map(([name, agent]) => ({ name, ...agent }));
|
|
145
169
|
}
|
package/cli/config.mjs
CHANGED
|
@@ -22,10 +22,10 @@ const DEFAULTS = {
|
|
|
22
22
|
},
|
|
23
23
|
|
|
24
24
|
// Team composition — array of agent names or custom agent objects
|
|
25
|
-
// Default: all
|
|
26
|
-
// "team": ["Jane", "Dennis", "Sam", "Bart"] — 4-agent team (no Luna, Mark, Vera)
|
|
25
|
+
// Default: all 8 agents. To customize:
|
|
26
|
+
// "team": ["Jane", "Dennis", "Sam", "Bart"] — 4-agent team (no Luna, Mark, Vera, Nora)
|
|
27
27
|
// "team": ["Jane", "Dennis", "Sam", {"name": "Alex", "role": "DevOps Engineer", "description": "..."}]
|
|
28
|
-
// Jane and
|
|
28
|
+
// Jane, Dennis, and Sam are always included even if omitted.
|
|
29
29
|
team: null,
|
|
30
30
|
|
|
31
31
|
// Commands — auto-detected if null
|