clawpowers 2.2.5 → 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 +15 -0
- package/COMPATIBILITY.md +1 -1
- package/README.md +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/native/crates/canonical/src/lib.rs +5 -1
- package/native/wasm/Cargo.toml +3 -0
- package/package.json +4 -3
- package/scripts/verify-wasm-artifacts.mjs +1 -1
- package/skill.json +20 -0
- package/native/ffi/index.node +0 -0
- package/native/wasm/pkg-node/.gitignore +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
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
|
+
|
|
5
20
|
## [2.2.4] - 2026-04-09
|
|
6
21
|
|
|
7
22
|
### Fixed
|
package/COMPATIBILITY.md
CHANGED
package/README.md
CHANGED
|
@@ -100,7 +100,7 @@ npm run build:native # workspace `cargo build --release` (ignored if Rust miss
|
|
|
100
100
|
npm run build:wasm # wasm-pack → native/wasm/pkg-node (optional)
|
|
101
101
|
```
|
|
102
102
|
|
|
103
|
-
`wasm
|
|
103
|
+
`npm run build:wasm` automatically removes `native/wasm/pkg-node/.gitignore` after generation so Node-targeted WASM artifacts are always packable.
|
|
104
104
|
|
|
105
105
|
Pre-built `.wasm` artifacts are included in the package so consumers are **not** required to run `wasm-pack`.
|
|
106
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.
|
|
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.
|
|
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.
|
|
3460
|
+
* @version 2.2.6
|
|
3461
3461
|
* @license BSL-1.1
|
|
3462
3462
|
* @patent-pending
|
|
3463
3463
|
*/
|