ofiere-openclaw-plugin 4.10.0 → 4.11.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 +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ofiere-openclaw-plugin",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.11.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
|
@@ -413,6 +413,11 @@ async function handleCreateTask(
|
|
|
413
413
|
if (params.system_prompt) cf.system_prompt = params.system_prompt;
|
|
414
414
|
if (params.instructions) cf.instructions = params.instructions;
|
|
415
415
|
|
|
416
|
+
// Ensure assignees array is populated from agent_id for sidebar display
|
|
417
|
+
if (assignee && !cf.assignees) {
|
|
418
|
+
cf.assignees = [{ id: assignee, type: "agent" }];
|
|
419
|
+
}
|
|
420
|
+
|
|
416
421
|
const insertData: Record<string, unknown> = {
|
|
417
422
|
id,
|
|
418
423
|
user_id: userId,
|