@solidnumber/cli 2.2.0 → 2.2.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.
- package/README.md +20 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,10 +4,12 @@ Run an AI-powered business from your terminal.
|
|
|
4
4
|
<!-- AUTO-NUMBERS: do not edit by hand; updated by scripts/sync-marketing-numbers.ts -->
|
|
5
5
|
98 top-level commands, 500+ subcommands, 52 industries, 116 AI agents. One CLI.
|
|
6
6
|
|
|
7
|
-
**v2.
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
**v2.2.0** — magic-link install + Homebrew + Scoop. Logged-in dashboard
|
|
8
|
+
users mint a single-use `ist_*` token, paste one command, CLI is
|
|
9
|
+
authenticated. No browser auth dance. Agent-ready by default — `--json`
|
|
10
|
+
output ships structured error envelopes; every business entity is a
|
|
11
|
+
node in a typed JSON-LD graph; queries via SPARQL; offline reads +
|
|
12
|
+
writes with auto-flush on reconnect. See [Graph (v2)](#graph-v2--vendor-portable-json-ld).
|
|
11
13
|
|
|
12
14
|
```bash
|
|
13
15
|
npx @solidnumber/cli clone plumber
|
|
@@ -15,8 +17,22 @@ npx @solidnumber/cli clone plumber
|
|
|
15
17
|
|
|
16
18
|
## Install
|
|
17
19
|
|
|
20
|
+
Pick whichever package manager you already trust:
|
|
21
|
+
|
|
18
22
|
```bash
|
|
23
|
+
# macOS / Linux
|
|
24
|
+
brew install solidnumber/tap/cli
|
|
25
|
+
|
|
26
|
+
# Windows
|
|
27
|
+
scoop bucket add solidnumber https://github.com/Solidnumber/scoop-bucket
|
|
28
|
+
scoop install solidnumber/solid
|
|
29
|
+
|
|
30
|
+
# any platform with Node 20+
|
|
19
31
|
npm install -g @solidnumber/cli
|
|
32
|
+
|
|
33
|
+
# one-paste install + magic-link auth (logged-in dashboard users only)
|
|
34
|
+
# get your personal command at https://app.solidnumber.com/dashboard/install-command
|
|
35
|
+
curl -fsSL https://solidnumber.com/install.sh | SOLID_INSTALL_TOKEN=ist_xxx sh
|
|
20
36
|
```
|
|
21
37
|
|
|
22
38
|
## Quick Start
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solidnumber/cli",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "AI business infrastructure from the terminal — CRM, payments, voice AI, 116 agents, 52 industry templates. solid clone plumber → instant business. Also: programmatic TS SDK via @solidnumber/cli/sdk.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|