clawdi 0.12.9 → 0.12.10-beta.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.
package/README.md CHANGED
@@ -295,8 +295,9 @@ Each agent has a dedicated adapter in [`packages/cli/src/adapters`](https://gith
295
295
  | Command | What it does |
296
296
  | --- | --- |
297
297
  | `clawdi auth login` / `logout` | Authenticate this machine |
298
+ | `clawdi auth status [--json]` | Show credential source without printing secrets |
298
299
  | `clawdi status [--json]` | Show auth and sync state |
299
- | `clawdi config list/get/set/unset` | Read or write CLI configuration |
300
+ | `clawdi config list/get/set/unset/paths` | Read/write CLI configuration and inspect local/runtime paths |
300
301
  | `clawdi setup [--agent <type>] [--no-daemon]` | Register local agents, install MCP, install the bundled skill, and install/start the singleton daemon by default |
301
302
  | `clawdi teardown [--agent <type>]` | Remove Clawdi's local agent wiring |
302
303
  | `clawdi daemon run/install/status/logs/doctor/restart/uninstall/ping/rotate-token` | Run, inspect, and control the singleton background sync daemon (`serve` remains a legacy alias) |
@@ -323,6 +324,32 @@ Auto-update is enabled by default for all newer releases, including majors. Huma
323
324
 
324
325
  Every command supports `--help`.
325
326
 
327
+ ### Advanced Runtime Operators
328
+
329
+ These commands are for controlled hosted or self-hosted runtime envelopes. They
330
+ are not part of normal laptop onboarding.
331
+
332
+ | Command | What it does |
333
+ | --- | --- |
334
+ | `clawdi capabilities [--json]` | Show CLI feature surface, runtime mode, and hosted policy restrictions |
335
+ | `clawdi runtime init --non-interactive [--json]` | Run one cloud-init-style hosted runtime convergence pass |
336
+ | `clawdi runtime status [--json]` | Read the last runtime boot result from service-state files |
337
+ | `clawdi runtime doctor [--json]` | Diagnose hosted policy, service state, HOME, tmpfs runtime state, and last boot status |
338
+
339
+ Hosted runtime mode is detected from host policy or runtime credentials. In
340
+ hosted mode, `/etc/clawdi/host-policy.json` can deny local-user commands such
341
+ as `setup`, `teardown`, `update`, `config set`, and `auth login`, while keeping
342
+ agent-facing commands such as `mcp`, `daemon run`, `read`, `inject`, and `run`
343
+ available. Local self-update is skipped in hosted mode; hosted CLI updates are
344
+ expected to be system-managed through the standard npm package installation.
345
+ The target hosted shape is a read-only `/usr/local/bin/clawdi` launcher shim
346
+ that installs/execs the npm-managed entrypoint at `/var/lib/clawdi/bin/clawdi`
347
+ from the root-owned prefix `/var/lib/clawdi/npm`. The ordinary runtime user can
348
+ execute the CLI but cannot modify the managed install or config.
349
+
350
+ For the hosted runtime design, profile matrix, and runtime image contract, see
351
+ [`docs/hosted-runtime.md`](https://github.com/Clawdi-AI/clawdi/blob/main/docs/hosted-runtime.md).
352
+
326
353
  App connections are configured in the [Clawdi Cloud dashboard](https://clawdi.ai) and surface inside agents automatically over MCP — there is no CLI command to manage them.
327
354
 
328
355
  ## Development
@@ -0,0 +1,10 @@
1
+ {
2
+ "schemaVersion": "clawdi.mitmBrokerBundle.v1",
3
+ "kind": "native-go",
4
+ "entrypoint": "bin/clawdi-mitm-broker",
5
+ "source": "native/mitm-broker",
6
+ "go": "go version go1.26.4 linux/amd64",
7
+ "cgoEnabled": "0",
8
+ "goos": null,
9
+ "goarch": null
10
+ }