@_davideast/stitch-mcp 0.3.0 → 0.3.2
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 +3 -0
- package/dist/cli.js +1807 -1030
- package/dist/commands/site/index.d.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -126,6 +126,7 @@ npx @_davideast/stitch-mcp site -p <project-id> [options]
|
|
|
126
126
|
|--------|-------------|
|
|
127
127
|
| `-p, --project <id>` | **Required.** Project ID |
|
|
128
128
|
| `-o, --output <dir>` | Output directory (default: `.`) |
|
|
129
|
+
| `-e, --export` | Export screen-to-route config as `build_site` JSON (no interactive UI) |
|
|
129
130
|
|
|
130
131
|
Launches an interactive screen-to-route mapper, then generates an Astro project with the following structure:
|
|
131
132
|
|
|
@@ -141,6 +142,8 @@ Launches an interactive screen-to-route mapper, then generates an Astro project
|
|
|
141
142
|
|
|
142
143
|
External assets (fonts, images) are downloaded to `public/assets/` with URLs rewritten to local paths.
|
|
143
144
|
|
|
145
|
+
Press `e` in the interactive builder to export the current screen-to-route config as JSON to stdout (useful for piping into `build_site`).
|
|
146
|
+
|
|
144
147
|
### `view` — Interactive resource browser
|
|
145
148
|
|
|
146
149
|
```bash
|