@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 +2 -0
- package/bin/agentdesk.mjs +2 -0
- package/cli/agents.mjs +1 -1
- package/package.json +1 -1
- package/prompts/phased.md +1 -1
- package/prompts/team.md +1 -1
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
|
|
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
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
|
|
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
|
|
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
|
|