@soulguard/openclaw 0.2.3 → 0.3.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -4449,7 +4449,7 @@ class StateTree {
4449
4449
  return this.flatFiles().filter((f) => f.status !== "unchanged");
4450
4450
  }
4451
4451
  stagedFiles() {
4452
- return this.flatFiles().filter((f) => f.stagedHash !== null || f.status === "deleted");
4452
+ return this.flatFiles().filter((f) => f.status !== "unchanged");
4453
4453
  }
4454
4454
  driftedEntities() {
4455
4455
  return collectDrifts(this.entities, this.protectOwnership);
@@ -4765,7 +4765,7 @@ function guardToolCall(toolName, params, options) {
4765
4765
  }
4766
4766
 
4767
4767
  // src/plugin.ts
4768
- var PKG_VERSION = "0.2.3";
4768
+ var PKG_VERSION = "0.3.0";
4769
4769
  var PLUGIN_DESCRIPTION = "Identity protection for AI agents";
4770
4770
  var MAX_TRACKED_REDIRECTS = 1024;
4771
4771
  var redirectMap = new Map;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soulguard/openclaw",
3
- "version": "0.2.3",
3
+ "version": "0.3.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",