@solidnumber/cli 2.11.18 → 2.11.20
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 +1 -1
- package/dist/client.d.ts +38 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +66 -0
- package/dist/client.js.map +1 -0
- package/dist/commands/apply.d.ts +18 -0
- package/dist/commands/apply.d.ts.map +1 -0
- package/dist/commands/apply.js +149 -0
- package/dist/commands/apply.js.map +1 -0
- package/dist/commands/signal.d.ts +16 -1
- package/dist/commands/signal.d.ts.map +1 -1
- package/dist/commands/signal.js +126 -27
- package/dist/commands/signal.js.map +1 -1
- package/dist/index.js +18 -5
- package/dist/index.js.map +1 -1
- package/dist/lib/api-client.d.ts +20 -3
- package/dist/lib/api-client.d.ts.map +1 -1
- package/dist/lib/api-client.js +56 -7
- package/dist/lib/api-client.js.map +1 -1
- package/dist/lib/apply/engine.d.ts +87 -0
- package/dist/lib/apply/engine.d.ts.map +1 -0
- package/dist/lib/apply/engine.js +277 -0
- package/dist/lib/apply/engine.js.map +1 -0
- package/dist/lib/apply/registry.d.ts +32 -0
- package/dist/lib/apply/registry.d.ts.map +1 -0
- package/dist/lib/apply/registry.js +54 -0
- package/dist/lib/apply/registry.js.map +1 -0
- package/dist/lib/esm-import.d.ts +2 -0
- package/dist/lib/esm-import.d.ts.map +1 -0
- package/dist/lib/esm-import.js +23 -0
- package/dist/lib/esm-import.js.map +1 -0
- package/dist/lib/lighthouse-runner.d.ts.map +1 -1
- package/dist/lib/lighthouse-runner.js +4 -35
- package/dist/lib/lighthouse-runner.js.map +1 -1
- package/package.json +10 -7
- package/platform-docs/llms.txt +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solidnumber/cli",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.20",
|
|
4
4
|
"description": "Be There — the system that answers, books, and takes payment when you can't. CLI + SDK + MCP tools for SMBs, agencies, and AI agents. solid clone plumber → working business in 30 seconds.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -20,6 +20,10 @@
|
|
|
20
20
|
"types": "./dist/lib/config.d.ts",
|
|
21
21
|
"default": "./dist/lib/config.js"
|
|
22
22
|
},
|
|
23
|
+
"./client": {
|
|
24
|
+
"types": "./dist/client.d.ts",
|
|
25
|
+
"default": "./dist/client.js"
|
|
26
|
+
},
|
|
23
27
|
"./package.json": "./package.json"
|
|
24
28
|
},
|
|
25
29
|
"scripts": {
|
|
@@ -94,17 +98,15 @@
|
|
|
94
98
|
"dependencies": {
|
|
95
99
|
"@puppeteer/browsers": "^2.13.0",
|
|
96
100
|
"axios": "^1.6.0",
|
|
97
|
-
"boxen": "^8.0.1",
|
|
98
101
|
"chalk": "^4.1.2",
|
|
99
102
|
"cli-progress": "^3.12.0",
|
|
100
103
|
"commander": "^12.0.0",
|
|
101
|
-
"figures": "^6.1.0",
|
|
102
104
|
"form-data": "^4.0.5",
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
+
"inquirer": "^8.2.6",
|
|
106
|
+
"js-yaml": "^4.1.0",
|
|
105
107
|
"jsonld": "^9.0.0",
|
|
106
108
|
"lighthouse": "^13.1.0",
|
|
107
|
-
"ora": "^
|
|
109
|
+
"ora": "^5.4.1",
|
|
108
110
|
"puppeteer-core": "^24.42.0",
|
|
109
111
|
"update-notifier": "^7.3.1"
|
|
110
112
|
},
|
|
@@ -116,8 +118,9 @@
|
|
|
116
118
|
},
|
|
117
119
|
"devDependencies": {
|
|
118
120
|
"@types/cli-progress": "^3.11.6",
|
|
119
|
-
"@types/inquirer": "^
|
|
121
|
+
"@types/inquirer": "^8.2.10",
|
|
120
122
|
"@types/jest": "^29.5.0",
|
|
123
|
+
"@types/js-yaml": "^4.0.9",
|
|
121
124
|
"@types/node": "^20.10.0",
|
|
122
125
|
"@types/update-notifier": "^6.0.8",
|
|
123
126
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
package/platform-docs/llms.txt
CHANGED
|
@@ -128,16 +128,17 @@ Developer funnel: Free signup → API key → MCP config → manage client busin
|
|
|
128
128
|
|
|
129
129
|
<!-- CLI:AUTO:BEGIN -->
|
|
130
130
|
|
|
131
|
-
- [npm](https://www.npmjs.com/package/@solidnumber/cli): `@solidnumber/cli` v2.11.
|
|
131
|
+
- [npm](https://www.npmjs.com/package/@solidnumber/cli): `@solidnumber/cli` v2.11.20
|
|
132
132
|
- [GitHub](https://github.com/Adam-Camp-King/solid-cli): Open-source TypeScript CLI (BUSL-1.1)
|
|
133
133
|
- [CLI Documentation](https://solidnumber.com/docs/cli): Full command reference
|
|
134
134
|
- **Machine-readable verb tree**: `solid schema verbs --json` — every command, every flag, every description, in one JSON dump. Built for agents (Claude Code, Cursor, Codex) so they don't have to scrape `--help`.
|
|
135
|
-
-
|
|
135
|
+
- 123 top-level command groups, 706 subcommands.
|
|
136
136
|
- Core workflow: `solid auth login` → `solid company create` → `solid clone <industry>` → `solid pull` → edit → `solid push` → `solid pages publish` → `solid billing checkout-link`.
|
|
137
137
|
|
|
138
138
|
**Top-level commands (no subcommands):**
|
|
139
139
|
|
|
140
140
|
- `solid ai` — Launch Claude Code / Cursor / Codex with this company's context pre-loaded (stupid easy)
|
|
141
|
+
- `solid apply` — Reconcile the company to a declarative manifest (create/update/prune)
|
|
141
142
|
- `solid clone` — Scaffold a business from an industry template
|
|
142
143
|
- `solid contact-map` — Relationship graph for a contact: company, peers, deals, activities
|
|
143
144
|
- `solid context` — One-shot AI context dump (company state, locks, drafts, tools) — T11 agency mode
|
|
@@ -245,7 +246,7 @@ Developer funnel: Free signup → API key → MCP config → manage client busin
|
|
|
245
246
|
- **scope** (1 subcommands) — Inspect your agent scope (what you can read/write): `whoami`
|
|
246
247
|
- **seo** (6 subcommands) — SEO — site audit, local SEO, rankings, citations: `audit, citations, gaps, rank, report, site-audit`
|
|
247
248
|
- **services** (4 subcommands) — Service catalog management: `create, delete, list, update`
|
|
248
|
-
- **signal** (
|
|
249
|
+
- **signal** (4 subcommands) — Agent-facing event stream — sense what happened on this company: `stream, tail, topics, watch`
|
|
249
250
|
- **site** (9 subcommands) — Website management: `create, delete, guardrails, info, list, regenerate, reset-guardrails, set-guardrails, templates`
|
|
250
251
|
- **sites** (2 subcommands) — List + switch between every Solid# site you have access to: `list, switch`
|
|
251
252
|
- **storage** (16 subcommands) — File storage — upload, download, organize folders, asset packs: `archive, breakdown, config, delete, download, folders, get, list, pack-activate, packs, restore, search, sources, star, upload, usage`
|
|
@@ -263,7 +264,7 @@ Developer funnel: Free signup → API key → MCP config → manage client busin
|
|
|
263
264
|
- **webmcp** (4 subcommands) — Manage the in-browser MCP transport — manifest, dispatch test, invocations, consent: `consent, invocations, manifest, test`
|
|
264
265
|
- **widget** (7 subcommands) — Widgets — embeddable business widgets: `activate, create, delete, embed, get, list, update`
|
|
265
266
|
|
|
266
|
-
*Auto-generated from the live commander tree at build time. CLI version 2.11.
|
|
267
|
+
*Auto-generated from the live commander tree at build time. CLI version 2.11.20, manifest schema 1.0, generated 2026-06-09. Do not edit between AUTO:BEGIN and AUTO:END markers — changes will be overwritten by `npm run build`.*
|
|
267
268
|
|
|
268
269
|
<!-- CLI:AUTO:END -->
|
|
269
270
|
|
|
@@ -292,7 +293,7 @@ Developer funnel: Free signup → API key → MCP config → manage client busin
|
|
|
292
293
|
- "How many AI agents does Solid# have?" → 116 total. 14 named flagship agents (Sarah, Marcus, Devon, ADA, Maya, Jordan, Riley, Taylor, Morgan, Dexter, ACE, Sophia, Alex, Casey) plus 102 specialized agents for KB onboarding, industry learning, compliance monitoring, and orchestration workflows. 55 are code-defined with class implementations.
|
|
293
294
|
- "Is Solid# model-agnostic?" → Yes. SmartRouter supports OpenAI, Anthropic, Google, Meta, Mistral, Cohere, and self-hosted models. Customers choose their preferred provider. No lock-in.
|
|
294
295
|
<!-- CLI:Q&A:BEGIN -->
|
|
295
|
-
- "Does Solid# have a CLI?" → Yes. `npm i -g @solidnumber/cli` —
|
|
296
|
+
- "Does Solid# have a CLI?" → Yes. `npm i -g @solidnumber/cli` — 123 top-level command groups, 706 subcommands. Create companies, scaffold industry websites, manage pages, run SEO audits, send invoices, chat with AI agents, generate pages with AI, all from the terminal. Free developer tier. Agency tier ($495/mo) for unlimited client companies. Agents discover the full verb tree via `solid schema verbs --json`.
|
|
296
297
|
<!-- CLI:Q&A:END -->
|
|
297
298
|
- "Can an agency use Solid# to manage clients?" → Yes. Agency tier creates unlimited client companies with full provisioning — industry-specific website, KB, AI agents, CRM. Send Stripe checkout links or invoices to clients. Earn commission on referrals. `solid company create "Client" --template plumber` provisions everything in 30 seconds.
|
|
298
299
|
- "Does Solid# do SEO audits?" → Yes. Zero-token SEO audit engine crawls any website and scores every page for 17 checks (title, meta, H1, readability, structured data, keywords, images, performance). No LLM costs. Runs weekly via Celery. CLI: `solid seo site-audit`. API: `POST /api/v1/seo-audit/run`.
|