clawcontrol 0.1.0

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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +93 -0
  3. package/dist/index.js +6451 -0
  4. package/package.json +71 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Islem Maboud
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,93 @@
1
+ # ClawControl
2
+
3
+ ClawControl is a CLI/TUI that deploys and manages OpenClaw on VPS providers. It guides you through provisioning, installs dependencies, configures OpenClaw, and secures access with Tailscale.
4
+
5
+ Quick start: run `clawcontrol`, then use `/new`, `/deploy`, and `/status`.
6
+
7
+ ## Intro
8
+
9
+ ClawControl makes OpenClaw setup repeatable and fast. It handles VPS provisioning, SSH setup, Node and pnpm installs, OpenClaw configuration, and Tailscale onboarding so you can focus on running your agent.
10
+
11
+ ## Installation
12
+
13
+ One-liner (Linux / macOS):
14
+
15
+ ```bash
16
+ curl -fsSL https://openclaw.ai/install.sh | bash
17
+ ```
18
+
19
+ One-liner (Windows PowerShell):
20
+
21
+ ```powershell
22
+ irm https://openclaw.ai/install.ps1 | iex
23
+ ```
24
+
25
+ Package managers:
26
+
27
+ ```
28
+ npm install -g clawcontrol
29
+ ```
30
+
31
+ ```
32
+ pnpm add -g clawcontrol
33
+ ```
34
+
35
+ ```
36
+ bun add -g clawcontrol
37
+ ```
38
+
39
+ After install:
40
+
41
+ ```
42
+ clawcontrol
43
+ ```
44
+
45
+ ## Features
46
+
47
+ - Guided deployments with a CLI/TUI workflow and command palette (`/new`, `/deploy`, `/status`, `/ssh`, `/logs`, `/destroy`, `/templates`, `/help`).
48
+ - Cloud providers: Hetzner and DigitalOcean supported, Vultr planned.
49
+ - Template system with built-in presets and forkable/custom templates.
50
+ - Automated provisioning steps: SSH keys, swap, system updates, Node/NVM, pnpm, Chrome, OpenClaw, Tailscale, and daemon setup.
51
+ - Day-2 management: status dashboards, log streaming, SSH access, and safe teardown.
52
+
53
+ ## Development
54
+
55
+ Prerequisites:
56
+
57
+ - Node.js >= 20
58
+ - pnpm 10.25.x
59
+ - bun (for `pnpm dev`)
60
+
61
+ Setup:
62
+
63
+ ```
64
+ pnpm install
65
+ ```
66
+
67
+ Run locally:
68
+
69
+ ```
70
+ pnpm dev
71
+ ```
72
+
73
+ Build:
74
+
75
+ ```
76
+ pnpm build
77
+ ```
78
+
79
+ Typecheck:
80
+
81
+ ```
82
+ pnpm typecheck
83
+ ```
84
+
85
+ Tests:
86
+
87
+ ```
88
+ pnpm test
89
+ ```
90
+
91
+ ## Built by Islem
92
+
93
+ Built by Islem — https://x.com/ipenywis