@hype-stack/cli 1.11.0 → 1.12.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 +4 -1
- package/dist/{cli-CKs-7-fR.js → cli-C9FAyu0n.js} +3234 -2938
- package/dist/cli.d.ts.map +1 -1
- package/dist/commands/compose.d.ts.map +1 -1
- package/dist/commands/deploy-dispatch.d.ts.map +1 -1
- package/dist/commands/deploy-extension.d.ts.map +1 -1
- package/dist/commands/deploy-mobile.d.ts.map +1 -1
- package/dist/commands/deploy.d.ts.map +1 -1
- package/dist/commands/mcp.d.ts +65 -5
- package/dist/commands/mcp.d.ts.map +1 -1
- package/dist/commands/onboard.d.ts.map +1 -1
- package/dist/config/bin.js +2 -2
- package/dist/core/codemods.d.ts.map +1 -1
- package/dist/core/env-secrets.d.ts.map +1 -1
- package/dist/core/login.d.ts +13 -1
- package/dist/core/login.d.ts.map +1 -1
- package/dist/core/mcp-config.d.ts +39 -1
- package/dist/core/mcp-config.d.ts.map +1 -1
- package/dist/core/mcp-probe.d.ts +44 -0
- package/dist/core/mcp-probe.d.ts.map +1 -0
- package/dist/core/pack-slots.d.ts.map +1 -1
- package/dist/core/ports.d.ts.map +1 -1
- package/dist/core/post-clone.d.ts.map +1 -1
- package/dist/core/post-setup.d.ts.map +1 -1
- package/dist/core/variants.d.ts.map +1 -1
- package/dist/deploy/auth.d.ts.map +1 -1
- package/dist/deploy/extension/pipeline.d.ts.map +1 -1
- package/dist/deploy/mobile/pipeline.d.ts.map +1 -1
- package/dist/deploy/tools.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/mcp/tools/context.d.ts +6 -2
- package/dist/mcp/tools/context.d.ts.map +1 -1
- package/dist/mcp/tools/create-application.d.ts.map +1 -1
- package/dist/types/types.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -51,7 +51,8 @@ Prefer starting from a finished app? Browse the [templates](https://www.hype-sta
|
|
|
51
51
|
| `deploy` | Deploy web apps and the server, and provision Postgres, Valkey, and a bucket |
|
|
52
52
|
| `deploy mobile` | Build (and optionally submit) the Expo app through EAS |
|
|
53
53
|
| `deploy extension` | Build the browser extension and publish it to the Chrome, Edge, and Firefox stores |
|
|
54
|
-
| `mcp install` |
|
|
54
|
+
| `mcp install` | Pick editors, create an API key in the browser, write their MCP configs, verify the server starts |
|
|
55
|
+
| `mcp check` | Launch the server from an editor's config the way the editor would, and report why it fails |
|
|
55
56
|
| `login` / `logout` | Authenticate to install packs your organization owns |
|
|
56
57
|
|
|
57
58
|
Every command has `--help`, and the deploy commands take `--dry-run` to print every step without creating anything.
|
|
@@ -68,6 +69,8 @@ The CLI ships a [Model Context Protocol](https://www.hype-stack.dev/mcp) server,
|
|
|
68
69
|
npx @hype-stack/cli mcp install
|
|
69
70
|
```
|
|
70
71
|
|
|
72
|
+
It asks which editors, opens the browser once to create an API key for them, writes their configs, and starts the server once to confirm it comes up.
|
|
73
|
+
|
|
71
74
|
## Links
|
|
72
75
|
|
|
73
76
|
- [Website](https://www.hype-stack.dev)
|