clawpowers 2.2.4 → 2.2.5
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 +24 -0
- package/README.md +5 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to ClawPowers are documented here.
|
|
4
4
|
|
|
5
|
+
## [2.2.4] - 2026-04-09
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- GitHub Actions CI WASM-artifact verification now correctly handles `npm pack --dry-run --json` output when `prepack` logs are present
|
|
10
|
+
- Added `scripts/verify-wasm-artifacts.mjs` so packaged WASM checks are deterministic and reusable
|
|
11
|
+
- Final GitHub release/version surfaces aligned to the live npm package version
|
|
12
|
+
|
|
13
|
+
## [2.2.3] - 2026-04-09
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Added Dependabot, CodeQL, release automation, ROADMAP, and CI badge surfaces
|
|
18
|
+
- Elevated wallet safety warning for Tier 3 fallback behavior
|
|
19
|
+
- Added Node 22 coverage in CI and tightened launch-readiness docs
|
|
20
|
+
|
|
21
|
+
## [2.2.2] - 2026-04-09
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- `package.json` homepage corrected to npm page
|
|
26
|
+
- Compatibility matrix updated to reflect current supported release lines
|
|
27
|
+
- `skill.json` version synced to the published package version
|
|
28
|
+
|
|
5
29
|
## [2.2.1] - 2026-04-08
|
|
6
30
|
|
|
7
31
|
### Fixed
|
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)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clawpowers",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.5",
|
|
4
4
|
"description": "Skills library for AI agents — payments, memory, RSI, wallet. Drop-in capability layer for any agent framework.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"bugs": {
|
|
68
68
|
"url": "https://github.com/up2itnow0822/ClawPowers-Skills/issues"
|
|
69
69
|
},
|
|
70
|
-
"homepage": "https://
|
|
70
|
+
"homepage": "https://clawpowers.ai",
|
|
71
71
|
"engines": {
|
|
72
72
|
"node": ">=20.0.0"
|
|
73
73
|
},
|