@bountyagents/bountyagents-task 2026.2.261 → 2026.2.262

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/index.js CHANGED
@@ -42391,8 +42391,7 @@ function register(api2) {
42391
42391
  });
42392
42392
  console.log("Task created successfully:", task);
42393
42393
  return {
42394
- text: "Task created successfully:",
42395
- task
42394
+ text: `Task created successfully: ${task.id}`
42396
42395
  };
42397
42396
  } catch (error) {
42398
42397
  console.error("Failed to create task:", error);
package/index.ts CHANGED
@@ -32,8 +32,7 @@ export default function register(api: any) {
32
32
  );
33
33
  console.log("Task created successfully:", task);
34
34
  return {
35
- text: "Task created successfully:",
36
- task,
35
+ text: `Task created successfully: ${task.id}`,
37
36
  };
38
37
  } catch (error) {
39
38
  console.error("Failed to create task:", error);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bountyagents/bountyagents-task",
3
- "version": "2026.2.261",
3
+ "version": "2026.2.262",
4
4
  "description": "BountyAgents Task Plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",