openclaw-agent-builder 0.0.3 → 0.0.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 +35 -8
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,8 +1,31 @@
|
|
|
1
1
|
# OpenClaw Agent Builder
|
|
2
2
|
|
|
3
|
-
A
|
|
3
|
+
A tool that creates OpenClaw agents and multi-agent teams through a friendly AI conversation. No forms, no jargon — just describe what you want your helper to do and it handles the rest.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Available as a **desktop app** (macOS / Windows) or via **npx** for those who already have Node.js.
|
|
6
|
+
|
|
7
|
+
## Download the desktop app
|
|
8
|
+
|
|
9
|
+
Grab the latest release for your platform:
|
|
10
|
+
|
|
11
|
+
- **macOS** — [Download DMG](https://github.com/adamlsneed/openclaw-agent-builder/releases/latest)
|
|
12
|
+
- **Windows** — [Download EXE Installer](https://github.com/adamlsneed/openclaw-agent-builder/releases/latest)
|
|
13
|
+
|
|
14
|
+
The app checks for updates automatically and will prompt you when a new version is available.
|
|
15
|
+
|
|
16
|
+
> **Note:** The app is not yet code-signed.
|
|
17
|
+
>
|
|
18
|
+
> **macOS:** After dragging the app to Applications, open Terminal and run:
|
|
19
|
+
> ```bash
|
|
20
|
+
> xattr -cr "/Applications/OpenClaw Agent Builder.app"
|
|
21
|
+
> ```
|
|
22
|
+
> Then open it normally. Without this, macOS will say the app is "damaged" because it has no code signature.
|
|
23
|
+
>
|
|
24
|
+
> **Windows:** SmartScreen will warn on first launch — click "More info" → "Run anyway."
|
|
25
|
+
|
|
26
|
+
## Quick start (npx)
|
|
27
|
+
|
|
28
|
+
If you have Node.js 18+ installed:
|
|
6
29
|
|
|
7
30
|
```bash
|
|
8
31
|
npx openclaw-agent-builder
|
|
@@ -35,7 +58,7 @@ Opens at `http://localhost:3847`. If OpenClaw isn't installed yet, it offers to
|
|
|
35
58
|
|
|
36
59
|
8. **Validate** — Shows a setup summary (what was configured, what still needs doing manually) and optionally runs `openclaw doctor` to confirm everything is correct.
|
|
37
60
|
|
|
38
|
-
9. **Chat with your agent** — Test your agent's personality and responses directly
|
|
61
|
+
9. **Chat with your agent** — Test your agent's personality and responses directly before going live. Start the gateway with one click (or copy the `openclaw gateway` command) to deploy to Discord/Telegram.
|
|
39
62
|
|
|
40
63
|
## What gets generated
|
|
41
64
|
|
|
@@ -62,14 +85,18 @@ For multi-agent teams:
|
|
|
62
85
|
|
|
63
86
|
## Requirements
|
|
64
87
|
|
|
65
|
-
-
|
|
66
|
-
-
|
|
88
|
+
- **Desktop app:** No prerequisites — just download and run
|
|
89
|
+
- **npx:** Node.js 18+
|
|
90
|
+
|
|
91
|
+
OpenClaw itself is required for agents to work. The builder will install it if missing.
|
|
67
92
|
|
|
68
93
|
## Development
|
|
69
94
|
|
|
70
95
|
```bash
|
|
71
96
|
npm install
|
|
72
|
-
npm run dev
|
|
73
|
-
npm run build
|
|
74
|
-
npm start
|
|
97
|
+
npm run dev # starts at localhost:3847 with Vite hot-reload
|
|
98
|
+
npm run build # builds client into dist/
|
|
99
|
+
npm start # serves production build
|
|
100
|
+
npm run electron:dev # launches the desktop app in dev mode
|
|
101
|
+
npm run electron:build # builds DMG/EXE into release/
|
|
75
102
|
```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-agent-builder",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.0.4",
|
|
4
|
+
"description": "Wizard to create and deploy OpenClaw agents and multi-agent teams — runs as a desktop app or via npx",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "electron/main.js",
|
|
7
7
|
"bin": {
|