dashclaw 4.0.1 → 4.0.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.
Files changed (2) hide show
  1. package/README.md +1 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -447,18 +447,6 @@ if (result.recommendation === 'block') {
447
447
  }
448
448
  ```
449
449
 
450
- ### Bulk Sync
451
- - `syncState(state)` -- Push a full agent state snapshot in a single call.
452
-
453
- ```javascript
454
- // Push a full state snapshot
455
- await claw.syncState({
456
- actions: [{ action_type: 'deploy', status: 'completed' }],
457
- decisions: [{ decision: 'Chose blue-green deploy' }],
458
- goals: [{ title: 'Ship v2.4.0' }]
459
- });
460
- ```
461
-
462
450
  ---
463
451
 
464
452
  ## Agent Identity
@@ -1012,6 +1000,7 @@ The existing flat registry methods remain available for compatibility:
1012
1000
  - `claw.createCapability(...)`
1013
1001
  - `claw.getCapability(...)`
1014
1002
  - `claw.updateCapability(...)`
1003
+ - `claw.deleteCapability(capabilityId)` -- DELETE /api/capabilities/:id; removes a capability from the registry.
1015
1004
 
1016
1005
  Use the canonical capability runtime paths:
1017
1006
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dashclaw",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
4
4
  "description": "Minimal governance runtime for AI agents. Intercept, govern, and verify agent actions.",
5
5
  "type": "module",
6
6
  "publishConfig": {