ofiere-openclaw-plugin 4.8.0 → 4.9.0
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 +1 -1
- package/src/tools.ts +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ofiere-openclaw-plugin",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.9.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "OpenClaw plugin for Ofiere PM - 10 meta-tools with 13-action workflow mastery covering tasks, agents, projects, scheduling, knowledge, workflows, notifications, memory, prompts, and constellation agent architecture",
|
|
6
6
|
"keywords": ["openclaw", "ofiere", "project-management", "agents", "plugin"],
|
package/src/tools.ts
CHANGED
|
@@ -207,9 +207,8 @@ function registerTaskOps(
|
|
|
207
207
|
action: {
|
|
208
208
|
type: "string",
|
|
209
209
|
description: "The operation to perform",
|
|
210
|
-
enum: ["list", "create", "update", "delete"],
|
|
210
|
+
enum: ["list", "get", "create", "update", "delete"],
|
|
211
211
|
},
|
|
212
|
-
task_id: { type: "string", description: "Task ID (required for update, delete)" },
|
|
213
212
|
title: { type: "string", description: "Task title (required for create)" },
|
|
214
213
|
description: { type: "string", description: "Task description" },
|
|
215
214
|
instructions: { type: "string", description: "Detailed instructions for the agent executing this task" },
|