@waiaas/cli 2.4.0-rc.4 → 2.4.0-rc.7
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/README.md +3 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -146,6 +146,9 @@ Enabled by default (`admin_ui = true` in config.toml).
|
|
|
146
146
|
| [Security Model](docs/security-model.md) | Authentication, policy engine, Kill Switch, AutoStop |
|
|
147
147
|
| [Deployment Guide](docs/deployment.md) | Docker, npm, configuration reference |
|
|
148
148
|
| [API Reference](docs/api-reference.md) | REST API endpoints and authentication |
|
|
149
|
+
| [Agent Skills Integration](docs/guides/agent-skills-integration.md) | Universal guide for 27+ AI agent platforms |
|
|
150
|
+
| [Claude Code Integration](docs/guides/claude-code-integration.md) | Skill files + MCP server setup for Claude Code |
|
|
151
|
+
| [OpenClaw Integration](docs/guides/openclaw-integration.md) | Quick setup for OpenClaw bot |
|
|
149
152
|
| [Wallet SDK Integration](docs/wallet-sdk-integration.md) | Integration guide for wallet developers |
|
|
150
153
|
| [Why WAIaaS?](docs/why-waiaas/) | Background on AI agent wallet security |
|
|
151
154
|
| [Contributing](CONTRIBUTING.md) | Development setup, code style, testing, PR guidelines |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@waiaas/cli",
|
|
3
|
-
"version": "2.4.0-rc.
|
|
3
|
+
"version": "2.4.0-rc.7",
|
|
4
4
|
"description": "WAIaaS CLI - command-line interface for managing the wallet daemon",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"commander": "^13.0.0",
|
|
33
33
|
"qrcode": "^1.5.4",
|
|
34
34
|
"semver": "^7.7.4",
|
|
35
|
-
"@waiaas/core": "2.4.0-rc.
|
|
36
|
-
"@waiaas/daemon": "2.4.0-rc.
|
|
35
|
+
"@waiaas/core": "2.4.0-rc.7",
|
|
36
|
+
"@waiaas/daemon": "2.4.0-rc.7"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@hono/node-server": "^1.19.9",
|