ofiere-openclaw-plugin 4.54.0 → 4.54.2
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/src/tools.js +10 -2
- package/openclaw.plugin.json +2 -1
- package/package.json +1 -1
- package/src/tools.ts +10 -2
package/dist/src/tools.js
CHANGED
|
@@ -6543,8 +6543,16 @@ function registerOfficeOps(api, supabase, userId, resolveAgent) {
|
|
|
6543
6543
|
agent_id: { type: "string", description: "Agent identifier (defaults to calling agent)" },
|
|
6544
6544
|
office_id: { type: "string", description: "Office row UUID" },
|
|
6545
6545
|
widget_id: { type: "string", description: "Widget short id" },
|
|
6546
|
-
sections: {
|
|
6547
|
-
|
|
6546
|
+
sections: {
|
|
6547
|
+
type: "array",
|
|
6548
|
+
description: "Initial layout sections (build_office only)",
|
|
6549
|
+
items: { type: "object" },
|
|
6550
|
+
},
|
|
6551
|
+
operations: {
|
|
6552
|
+
type: "array",
|
|
6553
|
+
description: "Patch operations (update_widgets only)",
|
|
6554
|
+
items: { type: "object" },
|
|
6555
|
+
},
|
|
6548
6556
|
data: { type: "object", description: "Widget data payload (update_widget_data only)" },
|
|
6549
6557
|
},
|
|
6550
6558
|
},
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ofiere-openclaw-plugin",
|
|
3
|
-
"version": "4.54.
|
|
3
|
+
"version": "4.54.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "OpenClaw plugin for Ofiere PM - 17 meta-tools covering tasks, agents, projects, scheduling, knowledge, workflows, notifications, memory, prompts, constellation, space file management, execution plan builder, SOP management, agent brain, talent management, corporate frameworks, and agent office canvas",
|
|
6
6
|
"keywords": ["openclaw", "ofiere", "project-management", "agents", "plugin"],
|
package/src/tools.ts
CHANGED
|
@@ -6685,8 +6685,16 @@ function registerOfficeOps(
|
|
|
6685
6685
|
agent_id: { type: "string", description: "Agent identifier (defaults to calling agent)" },
|
|
6686
6686
|
office_id: { type: "string", description: "Office row UUID" },
|
|
6687
6687
|
widget_id: { type: "string", description: "Widget short id" },
|
|
6688
|
-
sections: {
|
|
6689
|
-
|
|
6688
|
+
sections: {
|
|
6689
|
+
type: "array",
|
|
6690
|
+
description: "Initial layout sections (build_office only)",
|
|
6691
|
+
items: { type: "object" },
|
|
6692
|
+
},
|
|
6693
|
+
operations: {
|
|
6694
|
+
type: "array",
|
|
6695
|
+
description: "Patch operations (update_widgets only)",
|
|
6696
|
+
items: { type: "object" },
|
|
6697
|
+
},
|
|
6690
6698
|
data: { type: "object", description: "Widget data payload (update_widget_data only)" },
|
|
6691
6699
|
},
|
|
6692
6700
|
},
|