@solidnumber/cli 2.6.2 → 2.8.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 +1 -1
- package/dist/commands/audit.d.ts.map +1 -1
- package/dist/commands/audit.js +67 -0
- package/dist/commands/audit.js.map +1 -1
- package/dist/commands/manifest.d.ts +13 -0
- package/dist/commands/manifest.d.ts.map +1 -0
- package/dist/commands/manifest.js +64 -0
- package/dist/commands/manifest.js.map +1 -0
- package/dist/commands/scope.d.ts +16 -0
- package/dist/commands/scope.d.ts.map +1 -0
- package/dist/commands/scope.js +90 -0
- package/dist/commands/scope.js.map +1 -0
- package/dist/commands/transaction.d.ts +20 -0
- package/dist/commands/transaction.d.ts.map +1 -0
- package/dist/commands/transaction.js +194 -0
- package/dist/commands/transaction.js.map +1 -0
- package/dist/commands/ucp.d.ts +20 -0
- package/dist/commands/ucp.d.ts.map +1 -0
- package/dist/commands/ucp.js +227 -0
- package/dist/commands/ucp.js.map +1 -0
- package/dist/commands/webmcp.d.ts +22 -0
- package/dist/commands/webmcp.d.ts.map +1 -0
- package/dist/commands/webmcp.js +390 -0
- package/dist/commands/webmcp.js.map +1 -0
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/platform-docs/llms.txt +10 -5
package/platform-docs/llms.txt
CHANGED
|
@@ -127,11 +127,11 @@ Developer funnel: Free signup → API key → MCP config → manage client busin
|
|
|
127
127
|
|
|
128
128
|
<!-- CLI:AUTO:BEGIN -->
|
|
129
129
|
|
|
130
|
-
- [npm](https://www.npmjs.com/package/@solidnumber/cli): `@solidnumber/cli` v2.
|
|
130
|
+
- [npm](https://www.npmjs.com/package/@solidnumber/cli): `@solidnumber/cli` v2.8.0
|
|
131
131
|
- [GitHub](https://github.com/Adam-Camp-King/solid-cli): Open-source TypeScript CLI (BUSL-1.1)
|
|
132
132
|
- [CLI Documentation](https://solidnumber.com/docs/cli): Full command reference
|
|
133
133
|
- **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`.
|
|
134
|
-
-
|
|
134
|
+
- 108 top-level command groups, 639 subcommands.
|
|
135
135
|
- Core workflow: `solid auth login` → `solid company create` → `solid clone <industry>` → `solid pull` → edit → `solid push` → `solid pages publish` → `solid billing checkout-link`.
|
|
136
136
|
|
|
137
137
|
**Top-level commands (no subcommands):**
|
|
@@ -153,6 +153,7 @@ Developer funnel: Free signup → API key → MCP config → manage client busin
|
|
|
153
153
|
- `solid init` — Scaffold a LOCAL app template (boilerplate files only — does NOT create a company; use `solid company create` or `solid demo create` for that)
|
|
154
154
|
- `solid install` — One-time setup: wire Claude Code to auto-refresh Solid context at every session start
|
|
155
155
|
- `solid logs` — View real-time agent activity logs
|
|
156
|
+
- `solid manifest` — Print the tenant JSON-LD manifest (@context, IRIs, capability graph)
|
|
156
157
|
- `solid migrate` — Migrate pages, KB, and settings from one company to another
|
|
157
158
|
- `solid open` — Open pages, sites, or dashboard in the web builder
|
|
158
159
|
- `solid proposal` — Generate a branded PDF pitch deck for a prospect (agency sales tool)
|
|
@@ -179,7 +180,7 @@ Developer funnel: Free signup → API key → MCP config → manage client busin
|
|
|
179
180
|
- **ant** (7 subcommands) — Ant Farm — code import system: `analyze, execute, get, import, import-url, list, rollback`
|
|
180
181
|
- **api** (3 subcommands) — API explorer — browse and test Solid# API endpoints: `call, docs, list`
|
|
181
182
|
- **ask-owner** (1 subcommands) — Typed escalation — agent asks, owner answers, agent resumes: `check`
|
|
182
|
-
- **audit** (
|
|
183
|
+
- **audit** (11 subcommands) — Activity log — who changed what, when: `a11y, compliance-report, export, gdpr-consent, gdpr-consent-set, gdpr-delete, gdpr-export, log, mobile, perf, suspicious`
|
|
183
184
|
- **auth** (6 subcommands) — Authentication management: `config, login, logout, refresh, status, token`
|
|
184
185
|
- **bids** (6 subcommands) — AI-drafted bids from photos (intake → analyze → approve): `approve, list, reanalyze, reject, show, upload`
|
|
185
186
|
- **billing** (16 subcommands) — Subscription, usage, and invoices: `charges, checkout-link, invoice, invoice-pdf, invoices, method-add, method-default, method-nickname, method-remove, methods, statement, status, subscription, trial, upgrade-trial, usage`
|
|
@@ -228,6 +229,7 @@ Developer funnel: Free signup → API key → MCP config → manage client busin
|
|
|
228
229
|
- **sandbox** (9 subcommands) — Isolated sandbox for safe site editing: `create, diff, exit, fork, preview, promote, push, reset, status`
|
|
229
230
|
- **schedule** (15 subcommands) — Appointment scheduling & calendar: `action, actions, book, calendar, cancel, cancel-action, create, due, fire, get, hold, list, reschedule, slots, update`
|
|
230
231
|
- **schema** (3 subcommands) — CMS / page block schema for AI coding agents: `blocks, pages, verbs`
|
|
232
|
+
- **scope** (1 subcommands) — Inspect your agent scope (what you can read/write): `whoami`
|
|
231
233
|
- **seo** (6 subcommands) — SEO — site audit, local SEO, rankings, citations: `audit, citations, gaps, rank, report, site-audit`
|
|
232
234
|
- **services** (4 subcommands) — Service catalog management: `create, delete, list, update`
|
|
233
235
|
- **signal** (3 subcommands) — Agent-facing event stream — sense what happened on this company: `tail, topics, watch`
|
|
@@ -237,13 +239,16 @@ Developer funnel: Free signup → API key → MCP config → manage client busin
|
|
|
237
239
|
- **support** (2 subcommands) — Customer support tickets: `get, list`
|
|
238
240
|
- **tenant** (4 subcommands) — Tenant Activity Gate — compute-budget introspection for sweeps: `active, allowlist, gate-debug, level`
|
|
239
241
|
- **train** (4 subcommands) — Train your AI agents with knowledge and context: `add, chat, import, status`
|
|
242
|
+
- **transaction** (5 subcommands) — Open / append / commit / abort CLI transactions for atomic batches: `abort, append, commit, get, start`
|
|
243
|
+
- **ucp** (3 subcommands) — Universal Commerce Protocol — manifest, capabilities, and consent for buyer-agents: `capabilities, consent, manifest`
|
|
240
244
|
- **users** (23 subcommands) — Team — invite, list, set roles, manage AI permissions: `ai-perms, ai-perms-set, block, create, delete, feature-clear, feature-set, features, features-catalog, get, invitations, invite, invite-accept, invite-defaults, invite-resend, invite-revoke, list, notifications, notifications-set, role, stats, unblock, update`
|
|
241
245
|
- **vibe** (1 subcommands) — Natural language integration commands: `interactive`
|
|
242
246
|
- **voice** (10 subcommands) — Voice calls, phone numbers, voicemail & personality: `audit, calls, cost, numbers, personality, release-orphan, stats, transcript, voicemail, voices`
|
|
243
247
|
- **webhooks** (7 subcommands) — Custom webhook management: `create, delete, events, list, listen, simulate, test`
|
|
248
|
+
- **webmcp** (4 subcommands) — Manage the in-browser MCP transport — manifest, dispatch test, invocations, consent: `consent, invocations, manifest, test`
|
|
244
249
|
- **widget** (7 subcommands) — Widgets — embeddable business widgets: `activate, create, delete, embed, get, list, update`
|
|
245
250
|
|
|
246
|
-
*Auto-generated from the live commander tree at build time. CLI version 2.
|
|
251
|
+
*Auto-generated from the live commander tree at build time. CLI version 2.8.0, manifest schema 1.0, generated 2026-05-17. Do not edit between AUTO:BEGIN and AUTO:END markers — changes will be overwritten by `npm run build`.*
|
|
247
252
|
|
|
248
253
|
<!-- CLI:AUTO:END -->
|
|
249
254
|
|
|
@@ -272,7 +277,7 @@ Developer funnel: Free signup → API key → MCP config → manage client busin
|
|
|
272
277
|
- "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.
|
|
273
278
|
- "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.
|
|
274
279
|
<!-- CLI:Q&A:BEGIN -->
|
|
275
|
-
- "Does Solid# have a CLI?" → Yes. `npm i -g @solidnumber/cli` —
|
|
280
|
+
- "Does Solid# have a CLI?" → Yes. `npm i -g @solidnumber/cli` — 108 top-level command groups, 639 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`.
|
|
276
281
|
<!-- CLI:Q&A:END -->
|
|
277
282
|
- "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.
|
|
278
283
|
- "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`.
|