@robomart/command 1.0.0 → 1.0.1

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 (3) hide show
  1. package/README.md +11 -4
  2. package/bin/command +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -13,13 +13,13 @@
13
13
  ## Install
14
14
 
15
15
  ```bash
16
- npm i -g robomart # or: zig build -Doptimize=ReleaseSafe
17
- command # opens the chat
16
+ npm i -g @robomart/command # or: zig build -Doptimize=ReleaseSafe
17
+ robomart # opens the chat
18
18
  ```
19
19
 
20
20
  ## Sign in
21
21
 
22
- - `command login` — Robomart identity: mints your `rm_sk_*` key, stored in the keychain.
22
+ - `robomart login` — Robomart identity: mints your `rm_sk_*` key, stored in the keychain.
23
23
  - `command login codex|grok` — bring the AI subscription you already pay for.
24
24
  - `/model` — pick the model; paste an API key for anything else (Anthropic, OpenAI, OpenRouter, local endpoints).
25
25
 
@@ -28,11 +28,18 @@ command # opens the chat
28
28
  One call, posted price, booked-or-refused:
29
29
 
30
30
  ```
31
- command> get me a USB-C charger that reaches me in an hour
31
+ robomart> get me a USB-C charger that reaches me in an hour
32
32
  ```
33
33
 
34
34
  The agent sources, shows a spend card (item, price, ETA, destination), books on approval, and tracks to the locker. `$2.99` when a robot runs it, `$9.99` when a partner courier does — the response names the mode.
35
35
 
36
+ ## Surfaces
37
+
38
+ - `robomart wallet` — live balance and environment
39
+ - `robomart coverage "<pickup>" -> "<dropoff>"` — eligibility, mode, posted price, ETA window
40
+ - `robomart deliveries` — the newest page of the org's deliveries
41
+ - `robomart doctor` — what's connected, what's missing
42
+
36
43
  ## For developers
37
44
 
38
45
  Command is a fork of [vercel-labs/fx](https://github.com/vercel-labs/fx) (Apache-2.0) with the coding surface removed and the delivery domain installed. See `THIRD_PARTY_NOTICES.md` for attribution. Build from source with Zig 0.16:
package/bin/command CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robomart/command",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Robomart Command - agentic delivery from the terminal. The command line for the physical world.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": "github:robomart-ai/command",