opencode-manifold 0.5.27 → 0.5.29
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/dist/index.js
CHANGED
|
@@ -307,7 +307,9 @@ var TaskSchema = z.object({
|
|
|
307
307
|
context_notes: z.string().describe("Pre-loaded context from Todo agent research: relevant files, patterns, prior work, gotchas"),
|
|
308
308
|
plan_file: z.string().describe("Path to the todo.md file")
|
|
309
309
|
});
|
|
310
|
-
var executeTaskTool = (client, directory) => tool(
|
|
310
|
+
var executeTaskTool = (client, directory) => tool({
|
|
311
|
+
description: "Execute a single task from the Manifold todo list using a Socratic dialectic loop with parallel divergent agents and synthesis.",
|
|
312
|
+
args: TaskSchema,
|
|
311
313
|
async execute(params) {
|
|
312
314
|
const { task_number, title, description, context_notes, plan_file } = params;
|
|
313
315
|
await client.app.log({
|
package/package.json
CHANGED