@kendoo.agentdesk/agentdesk 0.12.0 → 0.12.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
@@ -80,6 +80,8 @@ agentdesk update Update to the latest version
80
80
  |------|-------------|
81
81
  | `--description`, `-d` | Task description or requirements |
82
82
  | `--cwd` | Working directory (defaults to current) |
83
+ | `--phased` | Run in phased mode (INTAKE → PLAN → EXECUTION) — each phase runs as a separate Claude process for better context handling. Also available as a toggle in the dashboard when starting a session. |
84
+ | `--child-strategy` | How to handle child tasks: `inline` (default) or `branch` |
83
85
 
84
86
  ## Configuration
85
87
 
package/bin/agentdesk.mjs CHANGED
@@ -71,6 +71,7 @@ if (!command || command === "help" || command === "--help") {
71
71
  Options:
72
72
  --description, -d Task description or requirements
73
73
  --cwd Working directory (defaults to current)
74
+ --phased Run in phased mode (INTAKE → PLAN → EXECUTION)
74
75
  --child-strategy How to handle child tasks: "inline" (default) or "branch"
75
76
 
76
77
 
@@ -84,6 +85,7 @@ if (!command || command === "help" || command === "--help") {
84
85
 
85
86
  Examples:
86
87
  agentdesk team KEN-517
88
+ agentdesk team KEN-517 --phased
87
89
  agentdesk team -d "Fix the checkout total calculation"
88
90
  agentdesk team -d "Add Google OAuth to the login page"
89
91
 
package/cli/agents.mjs CHANGED
@@ -5,7 +5,7 @@ export const BUILT_IN_AGENTS = {
5
5
  badge: "●● JANE ●●",
6
6
  role: "Product Analyst / Team Lead",
7
7
  description: "leads the session, clarifies requirements, coordinates the team, manages tracker status, decomposes large tasks into subtasks",
8
- groundRules: "Jane focuses on requirements, scope, and coordination she does NOT read code, inspect functions, or reference technical implementation details (no file names, function names, variable names, or code snippets). She speaks from a product perspective: user impact, acceptance criteria, scope decisions. She creates tracker tasks when needed, manages status transitions, posts the session start/end comments, and decomposes large features into subtasks (basic vs deferred).",
8
+ groundRules: "Jane is strictly non-technical. She MUST NEVER: use tools (Read, Grep, Glob, Edit, Write, Bash), read or reference code, mention file names, function names, variable names, code snippets, terminal commands, or implementation details. She MUST NEVER write or modify code. Her language is product-only: user stories, acceptance criteria, scope, priorities, stakeholder impact. If she needs technical context, she asks Dennis or Sam to investigate and report back. She creates tracker tasks, manages status transitions, posts session start/end comments, and decomposes large features into subtasks.",
9
9
  planning: "Requirements: what we're building, acceptance criteria, scope. Flags UI tasks for Luna.",
10
10
  execution: {
11
11
  step: "Jane wraps up",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kendoo.agentdesk/agentdesk",
3
- "version": "0.12.0",
3
+ "version": "0.12.1",
4
4
  "description": "AI team orchestrator for Claude Code — run collaborative agent sessions from your terminal",
5
5
  "type": "module",
6
6
  "bin": {
package/prompts/phased.md CHANGED
@@ -189,7 +189,7 @@ Speaking order:
189
189
 
190
190
  ## YOUR MISSION: PLAN
191
191
 
192
- Jane restates the task concisely. Then each agent contributes their perspective:
192
+ Jane restates the task in product terms (no code, no file names, no technical jargon). Then each agent contributes their perspective:
193
193
 
194
194
  {{PLANNING_ORDER}}
195
195
 
package/prompts/team.md CHANGED
@@ -413,7 +413,7 @@ After assessing the task, Jane evaluates whether it is **too large for a single
413
413
 
414
414
  ## PLAN (1-2 rounds max)
415
415
 
416
- Jane restates the task concisely. Then each agent contributes their perspective in one pass:
416
+ Jane restates the task in product terms (no code, no file names, no technical jargon). Then each agent contributes their perspective in one pass:
417
417
 
418
418
  {{PLANNING_ORDER}}
419
419