opencode-manifold 0.5.29 → 0.5.31

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -309,7 +309,7 @@ var TaskSchema = z.object({
309
309
  });
310
310
  var executeTaskTool = (client, directory) => tool({
311
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,
312
+ args: TaskSchema.shape,
313
313
  async execute(params) {
314
314
  const { task_number, title, description, context_notes, plan_file } = params;
315
315
  await client.app.log({
@@ -632,7 +632,7 @@ var ManifoldPlugin = async (ctx) => {
632
632
  }
633
633
  ];
634
634
  }
635
- } else if (input.command === "manifold-model-path") {
635
+ } else if (input.command === "manifold-model-path" || input.command === "/manifold-model-path") {
636
636
  const modelPath = await getModelPath(client, input.sessionID || undefined);
637
637
  output.parts = [{ type: "text", text: modelPath }];
638
638
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-manifold",
3
- "version": "0.5.29",
3
+ "version": "0.5.31",
4
4
  "description": "Multi-agent development system for opencode with persistent knowledge",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",