clawpowers 2.2.4 → 2.2.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/CHANGELOG.md CHANGED
@@ -2,6 +2,45 @@
2
2
 
3
3
  All notable changes to ClawPowers are documented here.
4
4
 
5
+ ## [2.2.6] - 2026-04-14
6
+
7
+ ### Fixed
8
+
9
+ - Corrected stale internal version surfaces that were still reporting older values inside the published package
10
+ - Added `skill.json` back to the npm tarball so the manifest ships with the package again
11
+ - Aligned compatibility/docs metadata to the repaired 2.2.6 release
12
+
13
+ ## [2.2.5] - 2026-04-09
14
+
15
+ ### Fixed
16
+
17
+ - Added clawpowers.ai canonical links across package metadata and docs
18
+ - Synced internal version surfaces so package metadata, manifest, and source constants all report 2.2.5
19
+
20
+ ## [2.2.4] - 2026-04-09
21
+
22
+ ### Fixed
23
+
24
+ - GitHub Actions CI WASM-artifact verification now correctly handles `npm pack --dry-run --json` output when `prepack` logs are present
25
+ - Added `scripts/verify-wasm-artifacts.mjs` so packaged WASM checks are deterministic and reusable
26
+ - Final GitHub release/version surfaces aligned to the live npm package version
27
+
28
+ ## [2.2.3] - 2026-04-09
29
+
30
+ ### Fixed
31
+
32
+ - Added Dependabot, CodeQL, release automation, ROADMAP, and CI badge surfaces
33
+ - Elevated wallet safety warning for Tier 3 fallback behavior
34
+ - Added Node 22 coverage in CI and tightened launch-readiness docs
35
+
36
+ ## [2.2.2] - 2026-04-09
37
+
38
+ ### Fixed
39
+
40
+ - `package.json` homepage corrected to npm page
41
+ - Compatibility matrix updated to reflect current supported release lines
42
+ - `skill.json` version synced to the published package version
43
+
5
44
  ## [2.2.1] - 2026-04-08
6
45
 
7
46
  ### Fixed
package/COMPATIBILITY.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  | clawpowers | Recommended consumer |
6
6
  | --- | --- |
7
- | 2.2.x (latest: 2.2.4) | capability-library consumers and `clawpowers-agent` 1.1.x |
7
+ | 2.2.x (latest: 2.2.6) | capability-library consumers and `clawpowers-agent` 1.1.x |
8
8
 
9
9
  ## Notes
10
10
 
package/README.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  **Launch surface:** `clawpowers` is the capability library. It is not the stock OpenClaw wrapper runtime. For the wrapper runtime, install `clawpowers-agent`.
4
4
 
5
+ ## Canonical Links
6
+ - Product site: https://clawpowers.ai
7
+ - Docs: https://clawpowers.ai/docs
8
+ - Agent runtime: https://clawpowers.ai/agent
9
+
5
10
  **Recommended pairing:** `clawpowers` 2.2.x with `clawpowers-agent` 1.1.x.
6
11
 
7
12
  **More docs:** [SECURITY](./SECURITY.md) · [Compatibility](./COMPATIBILITY.md) · [Known Limitations](./KNOWN_LIMITATIONS.md) · [Licensing](./LICENSING.md) · [Releasing](./RELEASING.md) · [Demo](./DEMO.md) · [Roadmap](./ROADMAP.md)
@@ -95,7 +100,7 @@ npm run build:native # workspace `cargo build --release` (ignored if Rust miss
95
100
  npm run build:wasm # wasm-pack → native/wasm/pkg-node (optional)
96
101
  ```
97
102
 
98
- `wasm-pack` may regenerate `pkg/.gitignore` / `pkg-node/.gitignore` that ignore all files in those folders remove those ignore files if you need to commit refreshed WASM output.
103
+ `npm run build:wasm` automatically removes `native/wasm/pkg-node/.gitignore` after generation so Node-targeted WASM artifacts are always packable.
99
104
 
100
105
  Pre-built `.wasm` artifacts are included in the package so consumers are **not** required to run `wasm-pack`.
101
106
 
package/dist/index.d.ts CHANGED
@@ -347,7 +347,7 @@ declare function setConfigValue(config: ConfigFile, key: string, value: string):
347
347
  * Default paths, version, config values, RSI tier boundaries.
348
348
  */
349
349
 
350
- declare const VERSION = "2.2.0";
350
+ declare const VERSION = "2.2.6";
351
351
  declare const PACKAGE_NAME = "clawpowers";
352
352
  declare const CLAWPOWERS_HOME: string;
353
353
  declare const DEFAULT_CONFIG: ConfigFile;
package/dist/index.js CHANGED
@@ -448,7 +448,7 @@ import { z } from "zod";
448
448
  // src/constants.ts
449
449
  import { join } from "path";
450
450
  import { homedir } from "os";
451
- var VERSION = "2.2.0";
451
+ var VERSION = "2.2.6";
452
452
  var PACKAGE_NAME = "clawpowers";
453
453
  var CLAWPOWERS_HOME = join(homedir(), ".clawpowers");
454
454
  var CONFIG_PATH = join(CLAWPOWERS_HOME, "config.json");
@@ -3457,7 +3457,7 @@ export {
3457
3457
  * Drop-in capability layer: payments, memory, RSI, wallet.
3458
3458
  * No agent control loop — bring your own agent.
3459
3459
  *
3460
- * @version 2.2.0
3460
+ * @version 2.2.6
3461
3461
  * @license BSL-1.1
3462
3462
  * @patent-pending
3463
3463
  */