saasfunnels 0.0.0-reserve.0 → 0.2.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 +39 -2
- package/dist/library.js +25514 -0
- package/dist/saasfunnels.js +26995 -0
- package/dist/types/capabilities.d.ts +14 -0
- package/dist/types/check-summary.d.ts +26 -0
- package/dist/types/feature-setup.d.ts +255 -0
- package/dist/types/identity.d.ts +14 -0
- package/dist/types/library.d.ts +3 -0
- package/dist/types/mcp.d.ts +91 -0
- package/dist/types/runtime-contracts.d.ts +73 -0
- package/package.json +56 -8
package/README.md
CHANGED
|
@@ -1,7 +1,44 @@
|
|
|
1
1
|
# SaaSFunnels CLI
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The `saasfunnels` package provides local event and Feature validation, implementation handoffs, customer-safe live diagnostics, and a local stdio MCP server.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This repository contains only the MIT-licensed CLI and its bounded runtime contracts. The SaaSFunnels application, hosted MCP implementation, data layer, environment configuration, and other product packages remain private. See [docs/extraction-boundary.md](docs/extraction-boundary.md).
|
|
6
|
+
|
|
7
|
+
## Requirements
|
|
8
|
+
|
|
9
|
+
- Node.js 22 or newer
|
|
10
|
+
|
|
11
|
+
## Install
|
|
12
|
+
|
|
13
|
+
After the beta is published:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install --global saasfunnels@beta
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Use
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
saasfunnels --help
|
|
23
|
+
saasfunnels verify --json
|
|
24
|
+
saasfunnels mcp serve
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Local validation does not require credentials. Live reads use `SAASFUNNELS_API_KEY`; Direct API smoke events use `SAASFUNNELS_INGEST_API_KEY`. Set `SAASFUNNELS_API_BASE_URL` to target a controlled preview or the current SaaSFunnels host.
|
|
28
|
+
|
|
29
|
+
Hosted interactive MCP uses Clerk OAuth at the application `/mcp` URL and does not require this CLI or a copied API key.
|
|
30
|
+
|
|
31
|
+
The application imports the exact versioned MCP registry through the server-side `saasfunnels/library` export. This keeps hosted Streamable HTTP and local stdio MCP on one package owner; it is not a browser API.
|
|
32
|
+
|
|
33
|
+
## Development
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npm ci
|
|
37
|
+
npm run release:verify
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
The package allowlist is enforced as `LICENSE`, `README.md`, `package.json`, the `saasfunnels` executable bundle, and the typed server-side library bundle/declarations.
|
|
6
41
|
|
|
7
42
|
Documentation: https://docs.saasfunnels.ai/developer-tools/saasfunnels-cli
|
|
43
|
+
|
|
44
|
+
Support: support@saasfunnels.ai
|