@waiaas/push-relay 2.8.0-rc.1 → 2.8.0-rc.4
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 +17 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -120,14 +120,25 @@ npx @waiaas/skills add all
|
|
|
120
120
|
|
|
121
121
|
This adds `.skill.md` instruction files to your project. Include them in your agent's context and it learns the WAIaaS API automatically. Available skills: `setup`, `quickstart`, `wallet`, `transactions`, `policies`, `admin`, `actions`, `x402`.
|
|
122
122
|
|
|
123
|
-
### Agent Self-Setup
|
|
123
|
+
### Agent Self-Setup (Auto-Provision)
|
|
124
124
|
|
|
125
|
-
AI agents can set up WAIaaS
|
|
125
|
+
AI agents can set up WAIaaS fully autonomously with no human interaction:
|
|
126
126
|
|
|
127
|
-
|
|
128
|
-
|
|
127
|
+
```bash
|
|
128
|
+
npm install -g @waiaas/cli
|
|
129
|
+
waiaas init --auto-provision # Generates random master password → recovery.key
|
|
130
|
+
waiaas start # No password prompt
|
|
131
|
+
waiaas quickset # Creates wallets + sessions automatically
|
|
132
|
+
waiaas set-master # (Later) Harden password, then delete recovery.key
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
The `--auto-provision` flag generates a cryptographically random master password and saves it to `~/.waiaas/recovery.key`. All subsequent CLI commands read it automatically. See the [Agent Self-Setup Guide](docs/guides/agent-self-setup.md) for the complete flow.
|
|
129
136
|
|
|
130
|
-
|
|
137
|
+
For manual setup with human-guided password entry, install skills and follow `waiaas-setup/SKILL.md`:
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
npx @waiaas/skills add all
|
|
141
|
+
```
|
|
131
142
|
|
|
132
143
|
## Alternative: Docker
|
|
133
144
|
|
|
@@ -203,6 +214,7 @@ Enabled by default (`admin_ui = true` in config.toml).
|
|
|
203
214
|
| [Security Model](docs/security-model.md) | Authentication, policy engine, Kill Switch, AutoStop |
|
|
204
215
|
| [Deployment Guide](docs/deployment.md) | Docker, npm, configuration reference |
|
|
205
216
|
| [API Reference](docs/api-reference.md) | REST API endpoints and authentication |
|
|
217
|
+
| [Agent Self-Setup Guide](docs/guides/agent-self-setup.md) | Fully autonomous setup with auto-provision |
|
|
206
218
|
| [Agent Skills Integration](docs/guides/agent-skills-integration.md) | Universal guide for 27+ AI agent platforms |
|
|
207
219
|
| [Claude Code Integration](docs/guides/claude-code-integration.md) | Skill files + MCP server setup for Claude Code |
|
|
208
220
|
| [OpenClaw Integration](docs/guides/openclaw-integration.md) | Quick setup for OpenClaw bot |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@waiaas/push-relay",
|
|
3
|
-
"version": "2.8.0-rc.
|
|
3
|
+
"version": "2.8.0-rc.4",
|
|
4
4
|
"description": "WAIaaS Push Relay Server - bridge ntfy topics to push notification services (Pushwoosh, FCM)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"hono": "^4.5.0",
|
|
42
42
|
"smol-toml": "^1.3.0",
|
|
43
43
|
"zod": "^3.24.0",
|
|
44
|
-
"@waiaas/core": "2.8.0-rc.
|
|
44
|
+
"@waiaas/core": "2.8.0-rc.4"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/better-sqlite3": "^7.6.8",
|