@chorus-aidlc/chorus-openclaw-plugin 0.1.5 → 0.1.6
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/pm-tools.ts +20 -1
package/package.json
CHANGED
package/src/tools/pm-tools.ts
CHANGED
|
@@ -351,7 +351,26 @@ export function registerPmTools(api: any, mcpClient: ChorusMcpClient) {
|
|
|
351
351
|
},
|
|
352
352
|
});
|
|
353
353
|
|
|
354
|
-
// 16.
|
|
354
|
+
// 16. chorus_move_idea
|
|
355
|
+
api.registerTool({
|
|
356
|
+
name: "chorus_move_idea",
|
|
357
|
+
description: "Move an Idea to a different project within the same company. Also moves linked draft/pending Proposals.",
|
|
358
|
+
parameters: {
|
|
359
|
+
type: "object",
|
|
360
|
+
properties: {
|
|
361
|
+
ideaUuid: { type: "string", description: "UUID of the idea to move" },
|
|
362
|
+
targetProjectUuid: { type: "string", description: "UUID of the target project" },
|
|
363
|
+
},
|
|
364
|
+
required: ["ideaUuid", "targetProjectUuid"],
|
|
365
|
+
additionalProperties: false,
|
|
366
|
+
},
|
|
367
|
+
async execute(_id: string, { ideaUuid, targetProjectUuid }: { ideaUuid: string; targetProjectUuid: string }) {
|
|
368
|
+
const result = await mcpClient.callTool("chorus_move_idea", { ideaUuid, targetProjectUuid });
|
|
369
|
+
return JSON.stringify(result, null, 2);
|
|
370
|
+
},
|
|
371
|
+
});
|
|
372
|
+
|
|
373
|
+
// 17. chorus_pm_create_idea
|
|
355
374
|
api.registerTool({
|
|
356
375
|
name: "chorus_pm_create_idea",
|
|
357
376
|
description: "Create a new Idea in a project. Use this when you discover a requirement, want to propose work, or record a user request.",
|