@clawscarf/cli 0.1.0-alpha.2 → 0.1.0-alpha.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 +116 -2
- package/THIRD_PARTY_NOTICES.md +18 -11
- package/package.json +1 -1
- package/pnpm-lock.yaml +194 -3594
- package/recipes/team-server/recipe.json +1 -1
- package/release/README.md +57 -21
- package/release/components.json +10 -2
- package/release/operator.md +16 -2
- package/runtime/releases/{0.1.0-alpha.2.json → 0.1.0-alpha.4.json} +16 -16
- package/scripts/deployment/certificates.js +2 -1
- package/scripts/deployment/configuration.js +2 -4
package/README.md
CHANGED
|
@@ -1,3 +1,117 @@
|
|
|
1
|
-
|
|
1
|
+
<a href="https://clawscarf.com"><img src="https://clawscarf.com/clawscarf-mark.svg" alt="ClawScarf logo" width="112" height="112" /></a>
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
# ClawScarf
|
|
4
|
+
|
|
5
|
+
### OpenClaw, ready for your team.
|
|
6
|
+
|
|
7
|
+
Give your team a shared OpenClaw server—with individual logins, your choice of AI
|
|
8
|
+
models, connected accounts, and execution protected by NVIDIA OpenShell.
|
|
9
|
+
**Self-hosted. Open source. OpenClaw’s own interface.**
|
|
10
|
+
|
|
11
|
+
[Get started](#get-started) · [Installation guide](https://github.com/clawscarf/clawscarf/blob/main/deploy/deployment/installation.md) · [Releases](https://github.com/clawscarf/clawscarf/releases) · [Contribute](https://github.com/clawscarf/clawscarf/blob/main/CONTRIBUTING.md)
|
|
12
|
+
|
|
13
|
+
## Get started
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
curl -fsSL https://github.com/clawscarf/clawscarf/releases/download/v0.1.0-alpha.3/install.sh | sh
|
|
17
|
+
export PATH="$HOME/.local/bin:$PATH"
|
|
18
|
+
clawscarf configure
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
**Choose Team server. Pick a model. Sign in. Start your server.**
|
|
22
|
+
|
|
23
|
+
The terminal setup walks you through it, downloads the runtime, and opens OpenClaw
|
|
24
|
+
in your browser. Your sign-in becomes the first administrator account. No checkout,
|
|
25
|
+
Docker configuration files or separate OpenClaw installation required.
|
|
26
|
+
|
|
27
|
+
You’ll need **Docker Engine 29+ with Compose** (or Docker Desktop) and an **API key
|
|
28
|
+
for your chosen model provider**. The CLI includes its own Node runtime.
|
|
29
|
+
Available for **macOS Apple Silicon and Linux ARM64/x86-64**; Windows runs through
|
|
30
|
+
**WSL2, currently experimental**. Add `~/.local/bin` to your shell's PATH to keep
|
|
31
|
+
the command available in new terminals. The installer requires no sudo.
|
|
32
|
+
[Full platform requirements →](https://github.com/clawscarf/clawscarf/blob/main/deploy/deployment/installation.md)
|
|
33
|
+
|
|
34
|
+
<details>
|
|
35
|
+
<summary>Prefer npm?</summary>
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
npm install -g @clawscarf/cli@next
|
|
39
|
+
clawscarf configure
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
This alternative uses your own Node installation: Node 24.16+ within 24.x or 26.1+.
|
|
43
|
+
The `next` tag installs the current alpha.
|
|
44
|
+
|
|
45
|
+
</details>
|
|
46
|
+
|
|
47
|
+
## Make it your team’s workspace
|
|
48
|
+
|
|
49
|
+
| What you want to do | Where to do it |
|
|
50
|
+
| -------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
51
|
+
| **Start working with an agent** | Open a chat in OpenClaw. Create and configure agents using its native settings. |
|
|
52
|
+
| **Bring in your teammates** | Open **People**, create an invitation link, and assign native OpenClaw roles. Administrators can remove access there too. |
|
|
53
|
+
| **Connect Outlook and other services** | Open **Connections**, link an account, and choose which agents can use it. Connections is included in Team server and can be turned off during setup. |
|
|
54
|
+
| **Use your preferred models** | Choose the provider, model and reasoning level in setup. Run `clawscarf configure` again to change them. |
|
|
55
|
+
|
|
56
|
+
The default recipe uses **GPT-6 Astra through OpenAI, with medium reasoning**.
|
|
57
|
+
Choose another provider or model in the menu; usage is billed by your provider.
|
|
58
|
+
Your provider API key stays outside OpenClaw, in the model gateway.
|
|
59
|
+
|
|
60
|
+
Setup opens **[http://127.0.0.1:18800](http://127.0.0.1:18800)** by default.
|
|
61
|
+
That address is local to your machine. To share the server with teammates, use a
|
|
62
|
+
reachable HTTPS address; the [installation guide](https://github.com/clawscarf/clawscarf/blob/main/deploy/deployment/installation.md#configuration-options)
|
|
63
|
+
covers the public URL and company SSO settings.
|
|
64
|
+
|
|
65
|
+
OpenShell applies filesystem and network policy to the whole OpenClaw runtime,
|
|
66
|
+
including plugins, shell commands and local tools. Recipes bring login, models and
|
|
67
|
+
optional Connections together in one setup; you keep OpenClaw’s native agents,
|
|
68
|
+
conversations, skills and settings.
|
|
69
|
+
|
|
70
|
+
## Everyday commands
|
|
71
|
+
|
|
72
|
+
```sh
|
|
73
|
+
clawscarf status # Check the server
|
|
74
|
+
clawscarf stop # Stop it, keeping your data
|
|
75
|
+
clawscarf start # Start it again
|
|
76
|
+
clawscarf configure # Change its configuration
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
The default installation directory is `~/clawscarf-team`. Use
|
|
80
|
+
`--directory ~/another-team` to create or manage a separate installation.
|
|
81
|
+
Chats, files and settings survive stop/start. Closing the terminal leaves the server
|
|
82
|
+
running; Docker must stay running while it is in use.
|
|
83
|
+
|
|
84
|
+
For automation, the same configuration choices are available as command-line flags
|
|
85
|
+
with `--non-interactive`, and commands support `--json`.
|
|
86
|
+
[CLI reference and examples →](https://github.com/clawscarf/clawscarf/blob/main/deploy/deployment/installation.md#configure-without-prompts)
|
|
87
|
+
|
|
88
|
+
## Your server, your team
|
|
89
|
+
|
|
90
|
+
An installation serves **one trusted team**: separate logins and roles, shared
|
|
91
|
+
execution files and browser accounts. Native roles control application permissions;
|
|
92
|
+
people allowed to run code share the Gateway’s authority. Use separate installations
|
|
93
|
+
for teams that must be isolated from one another.
|
|
94
|
+
|
|
95
|
+
Default login and optional Connections use **ClawScarf Cloud**. You can use your own
|
|
96
|
+
OIDC provider and disable Connections to run without those hosted services. Original
|
|
97
|
+
model-provider keys and Connections management credentials stay outside OpenClaw.
|
|
98
|
+
|
|
99
|
+
ClawScarf is in alpha. Browser automation is off by default pending release
|
|
100
|
+
qualification; retained data still needs backups. See the [security boundaries](https://github.com/clawscarf/clawscarf/blob/main/deploy/openshell/README.md),
|
|
101
|
+
[browser support](https://github.com/clawscarf/clawscarf/blob/main/deploy/execution/browser-node/README.md) and [open work](https://github.com/clawscarf/clawscarf/blob/main/TODO.md)
|
|
102
|
+
for details.
|
|
103
|
+
|
|
104
|
+
## Explore and contribute
|
|
105
|
+
|
|
106
|
+
- **Using ClawScarf:** [Installation](https://github.com/clawscarf/clawscarf/blob/main/deploy/deployment/installation.md) · [People](https://github.com/clawscarf/clawscarf/blob/main/plugins/access/README.md) · [Connections](https://github.com/clawscarf/clawscarf/blob/main/plugins/connections/README.md) · [Models](https://github.com/clawscarf/clawscarf/blob/main/deploy/models/README.md)
|
|
107
|
+
- **Customizing it:** [Recipes](https://github.com/clawscarf/clawscarf/blob/main/recipes/README.md) · [Packs](https://github.com/clawscarf/clawscarf/blob/main/packs/README.md) · [Runtime architecture](https://github.com/clawscarf/clawscarf/blob/main/runtime/README.md)
|
|
108
|
+
- **Helping build it:** [Contributing](https://github.com/clawscarf/clawscarf/blob/main/CONTRIBUTING.md) · [Development setup](https://github.com/clawscarf/clawscarf/blob/main/scripts/README.md) · [Report a bug](https://github.com/clawscarf/clawscarf/issues)
|
|
109
|
+
|
|
110
|
+
Development maintains a small [OpenClaw patch series](https://github.com/clawscarf/clawscarf/blob/main/runtime/openclaw/README.md)
|
|
111
|
+
for selected fixes and optional capabilities. Published alpha.3 predates that series.
|
|
112
|
+
|
|
113
|
+
Built on [OpenClaw](https://github.com/openclaw/openclaw),
|
|
114
|
+
[NVIDIA OpenShell](https://github.com/NVIDIA/OpenShell) and
|
|
115
|
+
[LiteLLM](https://github.com/BerriAI/litellm).
|
|
116
|
+
[MIT licensed](https://github.com/clawscarf/clawscarf/blob/main/LICENSE), with [third-party notices](https://github.com/clawscarf/clawscarf/blob/main/THIRD_PARTY_NOTICES.md).
|
|
117
|
+
ClawScarf is an independent project.
|
package/THIRD_PARTY_NOTICES.md
CHANGED
|
@@ -12,7 +12,7 @@ the operator, companion and Connections plugin artifacts.
|
|
|
12
12
|
AGENTS.md is adapted from RawClaw's contributor guide at commit
|
|
13
13
|
[`f37a6e786fdd88857c21bd32140567874e281a8c`](https://github.com/raw-labs/rawclaw/blob/f37a6e786fdd88857c21bd32140567874e281a8c/AGENTS.md),
|
|
14
14
|
with the project owner's authorization. The Connections plugin and companion,
|
|
15
|
-
access service,
|
|
15
|
+
access service, native page flows and development checks also extract or adapt donor
|
|
16
16
|
source and regressions. Their local READMEs identify the incorporated paths and
|
|
17
17
|
deliberate boundary changes.
|
|
18
18
|
The reviewed donor has no top-level license file; do not infer a blanket license
|
|
@@ -24,12 +24,21 @@ embedded third-party notices for each extracted component before publication.
|
|
|
24
24
|
The runtime recipe references pinned OpenClaw and OpenShell artifacts in
|
|
25
25
|
[release/components.json](release/components.json). The access adapter imports
|
|
26
26
|
the published `@openclaw/gateway-client` package. Dependencies and their versions
|
|
27
|
-
are recorded in lockfiles
|
|
27
|
+
are recorded in lockfiles. The [downstream patch series](runtime/openclaw/README.md)
|
|
28
|
+
contains selected source differences and context from MIT-licensed OpenClaw; it is
|
|
29
|
+
not a complete vendored source tree.
|
|
28
30
|
The terminal installer uses MIT-licensed `@clack/prompts` 1.8.1. It is installed
|
|
29
31
|
from the operator lockfile and retains its upstream license with the dependency;
|
|
30
32
|
the installer does not vendor or modify the prompt library.
|
|
31
|
-
|
|
32
|
-
|
|
33
|
+
Standalone CLI archives include the unmodified Node.js 24.19.0 executable from
|
|
34
|
+
[official Node downloads](https://nodejs.org/dist/v24.19.0/), verified against the
|
|
35
|
+
SHA-256 pins in [release/components.json](release/components.json). Each archive
|
|
36
|
+
retains Node's complete upstream LICENSE, including its bundled third-party notices,
|
|
37
|
+
at `node/LICENSE`. JavaScript dependencies retain their licenses in `node_modules`.
|
|
38
|
+
Gateway source builds apply the maintained patch series to upstream commit
|
|
39
|
+
`7bc487d39dc9e059bb9b19ea08152883022f83fe`. Release provenance records the
|
|
40
|
+
resulting tree and patch-set digest. Published alpha.3 predates these patches.
|
|
41
|
+
The [image build instructions](deploy/images/README.md) own source packaging.
|
|
33
42
|
OpenClaw's upstream [license](https://github.com/openclaw/openclaw/blob/7bc487d39dc9e059bb9b19ea08152883022f83fe/LICENSE)
|
|
34
43
|
is MIT. NVIDIA NemoClaw's [license](https://github.com/NVIDIA/NemoClaw/blob/main/LICENSE)
|
|
35
44
|
is Apache-2.0. Referencing their architecture is not incorporating their code.
|
|
@@ -58,12 +67,10 @@ qualification reports. Debian package copyright files remain under `/usr/share/d
|
|
|
58
67
|
This initial inventory does not establish complete transitive license review;
|
|
59
68
|
that release requirement remains in [TODO.md](TODO.md).
|
|
60
69
|
|
|
61
|
-
The Gateway and companion image recipes copy this file and the root [license](LICENSE)
|
|
62
|
-
to `/usr/share/licenses/clawscarf`.
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
A local companion rebuild also verified the root and shadcn notices against build inputs. Relative
|
|
66
|
-
source links in this file refer to the source checkout, not image filesystem paths.
|
|
70
|
+
The Gateway and companion image recipes copy this file and the root [license](LICENSE)
|
|
71
|
+
verbatim to `/usr/share/licenses/clawscarf`. Native plugin pages use the shared
|
|
72
|
+
[page renderer](plugins/common/native-page.ts) and OpenClaw's host UI components.
|
|
73
|
+
Relative source links in this file refer to the source checkout, not image filesystem paths.
|
|
67
74
|
|
|
68
75
|
When bundling or adapting software, record its exact version and source, retain its
|
|
69
76
|
license and required notices, and identify modifications where required. Review
|
|
@@ -85,7 +92,7 @@ provenance. Paths below are relative to that donor, not files already present he
|
|
|
85
92
|
| Runtime/defaults and plugin packaging | runtime/openclaw/, deploy/images/hetzner/scripts/install-runtime.sh, plugins/connections/ | Reuse defaults, integrity checks and packaging; replace Hetzner, systemd, rootless-engine and host-path assumptions for the selected target. |
|
|
86
93
|
| Company login and entry | src/domains/access/, src/domains/installations/service/openclaw/entry/, src/apps/ingress/, src/composition/ingress.ts | Reuse OIDC/session/ingress mechanics and native identity semantics; replace organization/admission/placement wiring with standalone ownership. |
|
|
87
94
|
| Connections | plugins/connections/, src/domains/connections/, src/composition/connections/, catalogs/connections/, scripts/connectors-catalog*.ts | Preserve REST tools, Composio adapter, callbacks, account selection and grants; extract required persistence without the fleet control plane. |
|
|
88
|
-
| Connection account UI | src/apps/web/domains/connections/
|
|
95
|
+
| Connection account UI | src/apps/web/domains/connections/ | Adapt the account-management flow to native OpenClaw plugin pages and generated clients; omit the donor web shell. |
|
|
89
96
|
| Model gateway | runtime/ai-gateway/, deploy/ai-gateway/, src/composition/ai/ and applicable src/domains/ai/ code | Reuse LiteLLM integration/configuration and tests; replace hosted-source/admission/catalog wiring where needed. Do not recreate the removed inference proxy. |
|
|
90
97
|
| Acceptance | tests/ and corresponding helpers for identity, logout, ingress, native roles, connections, model gateway and browser flows | Transfer regressions with each capability; adapt fixtures and run against the new runtime. Donor success is not new-target acceptance. |
|
|
91
98
|
|
package/package.json
CHANGED