@kendoo.agentdesk/agentdesk 0.13.0 → 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 CHANGED
@@ -70,7 +70,7 @@ agentdesk logout Sign out and remove credentials
70
70
  agentdesk init Set up project and configure tracker
71
71
  agentdesk team <TASK-ID> Run a team session on an existing task
72
72
  agentdesk team -d "..." Describe what you want — task created automatically
73
- 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)
74
74
  agentdesk daemon Start daemon for remote sessions
75
75
  agentdesk update Update to the latest version
76
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, etc.)
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
@@ -163,7 +163,7 @@ export function resolveTeam(config) {
163
163
  const teamConfig = config.team || null;
164
164
  const customAgents = config.projectAgents || [];
165
165
 
166
- // Default: all 7 agents
166
+ // Default: all 8 agents
167
167
  if (!teamConfig) {
168
168
  return Object.entries(BUILT_IN_AGENTS).map(([name, agent]) => ({ name, ...agent }));
169
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 7 agents. To customize:
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 Dennis are always included even if omitted.
28
+ // Jane, Dennis, and Sam are always included even if omitted.
29
29
  team: null,
30
30
 
31
31
  // Commands — auto-detected if null
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kendoo.agentdesk/agentdesk",
3
- "version": "0.13.0",
3
+ "version": "0.13.1",
4
4
  "description": "AI team orchestrator for Claude Code — run collaborative agent sessions from your terminal",
5
5
  "type": "module",
6
6
  "bin": {