@rryando/arcs 3.4.2 → 3.4.3
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/package.json
CHANGED
|
@@ -173,14 +173,18 @@ const agentMetadata = {
|
|
|
173
173
|
name: "ARCS Orchestrator",
|
|
174
174
|
description:
|
|
175
175
|
"The central coordinator for executing plans, managing agent dispatch, and handling DAG workflows.",
|
|
176
|
-
|
|
176
|
+
// Task is required: orchestrators dispatch sub-agents. Omitting it leaves
|
|
177
|
+
// the delegator with no way to delegate.
|
|
178
|
+
tools: "Task, Read, Write, Edit, Glob, Grep, Bash",
|
|
177
179
|
model: "inherit",
|
|
178
180
|
},
|
|
179
181
|
"arcs-orchestrate-caveman": {
|
|
180
182
|
name: "ARCS Orchestrator (Caveman)",
|
|
181
183
|
description:
|
|
182
184
|
"A terse, high-efficiency orchestrator that drives tasks without extra commentary.",
|
|
183
|
-
|
|
185
|
+
// Task is required: orchestrators dispatch sub-agents. Omitting it leaves
|
|
186
|
+
// the delegator with no way to delegate.
|
|
187
|
+
tools: "Task, Read, Write, Edit, Glob, Grep, Bash",
|
|
184
188
|
model: "inherit",
|
|
185
189
|
},
|
|
186
190
|
};
|