dashclaw 2.5.0 → 2.6.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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # DashClaw SDK (v2.5.0)
1
+ # DashClaw SDK (v2.6.0)
2
2
 
3
3
  **Minimal governance runtime for AI agents.**
4
4
 
package/dashclaw.js CHANGED
@@ -443,7 +443,7 @@ class DashClaw {
443
443
  /**
444
444
  * POST /api/messages — Send a message to another agent or the dashboard.
445
445
  */
446
- async sendMessage({ to, type, subject, body, threadId, urgent }) {
446
+ async sendMessage({ to, type, subject, body, threadId, urgent, actionId }) {
447
447
  return this._request('/api/messages', 'POST', {
448
448
  from_agent_id: this.agentId,
449
449
  to_agent_id: to,
@@ -452,6 +452,7 @@ class DashClaw {
452
452
  body,
453
453
  thread_id: threadId,
454
454
  urgent,
455
+ action_id: actionId,
455
456
  });
456
457
  }
457
458
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dashclaw",
3
- "version": "2.5.0",
3
+ "version": "2.6.0",
4
4
  "description": "Minimal governance runtime for AI agents. Intercept, govern, and verify agent actions.",
5
5
  "type": "module",
6
6
  "publishConfig": {