@kendoo.agentdesk/agentdesk 0.9.0 → 0.9.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 +4 -4
- package/bin/agentdesk.mjs +1 -1
- package/cli/team.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -79,7 +79,7 @@ agentdesk update Update to the latest version
|
|
|
79
79
|
|------|-------------|
|
|
80
80
|
| `--description`, `-d` | Task description or requirements |
|
|
81
81
|
| `--cwd` | Working directory (defaults to current) |
|
|
82
|
-
| `--lite` | Lite mode —
|
|
82
|
+
| `--lite` | Lite mode — all agents share one process (faster, cheaper) |
|
|
83
83
|
|
|
84
84
|
## Configuration
|
|
85
85
|
|
|
@@ -116,7 +116,7 @@ AgentDesk also auto-discovers agents from `.claude/agents/`, `.claude/commands/`
|
|
|
116
116
|
|
|
117
117
|
## How It Works
|
|
118
118
|
|
|
119
|
-
Each agent runs
|
|
119
|
+
Each agent runs in its own Claude process — not one model role-playing multiple personas. This produces genuine disagreements and better output because each agent reasons separately.
|
|
120
120
|
|
|
121
121
|
1. You run `agentdesk team TASK-ID` in your project directory
|
|
122
122
|
2. AgentDesk detects your project type, reads `CLAUDE.md`, and discovers existing agents
|
|
@@ -130,8 +130,8 @@ Each agent runs as its own independent Claude session — not one model role-pla
|
|
|
130
130
|
|
|
131
131
|
| Mode | Command | Description |
|
|
132
132
|
|------|---------|-------------|
|
|
133
|
-
| Full (default) | `agentdesk team -d "..."` | Each agent
|
|
134
|
-
| Lite | `agentdesk team -d "..." --lite` | All agents share one
|
|
133
|
+
| Full (default) | `agentdesk team -d "..."` | Each agent runs in its own process. Better output. |
|
|
134
|
+
| Lite | `agentdesk team -d "..." --lite` | All agents share one process. Faster and cheaper. |
|
|
135
135
|
|
|
136
136
|
## Daemon (Remote Sessions)
|
|
137
137
|
|
package/bin/agentdesk.mjs
CHANGED
|
@@ -65,7 +65,7 @@ if (!command || command === "help" || command === "--help") {
|
|
|
65
65
|
Options:
|
|
66
66
|
--description, -d Task description or requirements
|
|
67
67
|
--cwd Working directory (defaults to current)
|
|
68
|
-
--lite Lite mode —
|
|
68
|
+
--lite Lite mode — all agents share one process (faster, cheaper)
|
|
69
69
|
|
|
70
70
|
How it works:
|
|
71
71
|
With a tracker (Linear, Jira, GitHub Issues):
|
package/cli/team.mjs
CHANGED
|
@@ -170,7 +170,7 @@ export async function runTeam(taskId, opts = {}) {
|
|
|
170
170
|
connectWs();
|
|
171
171
|
|
|
172
172
|
const agentMode = lite ? "lite" : "full";
|
|
173
|
-
console.log(`Agents: ${agentMode === "lite" ? "lite (shared)" : "full (independent)"}\n`);
|
|
173
|
+
console.log(`Agents: ${agentMode === "lite" ? "lite (shared process)" : "full (independent process)"}\n`);
|
|
174
174
|
|
|
175
175
|
const result = await runOrchestrator({
|
|
176
176
|
taskId, taskLink, description, createTask, tracker, config,
|