@tuongaz/seeflow 0.1.61 → 0.1.63
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 -3
- package/dist/web/assets/{index-BXYHeBKM.js → index-DAP_yx-l.js} +354 -354
- package/dist/web/assets/{index.es-BzG6d4Ro.js → index.es-2bA-nRVD.js} +1 -1
- package/dist/web/assets/{jspdf.es.min-CcOxqEhi.js → jspdf.es.min-C7u0-VKd.js} +3 -3
- package/dist/web/index.html +1 -1
- package/examples/ecommerce-platform/{.seeflow/flow.json → flow.json} +3 -25
- package/examples/ecommerce-platform/{.seeflow/scripts → scripts}/play.ts +1 -1
- package/examples/order-pipeline/{.seeflow/flow.json → flow.json} +1 -10
- package/package.json +1 -1
- package/src/api.ts +65 -55
- package/src/cli-helpers.ts +6 -5
- package/src/cli-manifest.ts +103 -15
- package/src/cli.ts +85 -13
- package/src/diagram.ts +0 -1
- package/src/file-ref.ts +16 -15
- package/src/mcp.ts +58 -16
- package/src/merge.ts +0 -1
- package/src/node-files.ts +5 -5
- package/src/operations.ts +40 -101
- package/src/paths.ts +16 -0
- package/src/proxy.ts +13 -13
- package/src/schema-catalog.ts +3 -9
- package/src/schema.ts +36 -96
- package/src/server.ts +0 -4
- package/src/short-id.ts +24 -0
- package/src/status-runner.ts +3 -3
- package/src/watcher.ts +15 -27
- package/src/sdk-template.ts +0 -37
- package/src/sdk-writer.ts +0 -37
- /package/examples/ecommerce-platform/{.seeflow/nodes → nodes}/node-3zFtHg6ENc/detail.md +0 -0
- /package/examples/ecommerce-platform/{.seeflow/nodes → nodes}/node-5F424NWbEu/detail.md +0 -0
- /package/examples/ecommerce-platform/{.seeflow/nodes → nodes}/node-CbwYqb7NfB/detail.md +0 -0
- /package/examples/ecommerce-platform/{.seeflow/nodes → nodes}/node-XwygzfKPZ5/view.html +0 -0
- /package/examples/ecommerce-platform/{.seeflow/nodes → nodes}/node-fkptXw7uvs/detail.md +0 -0
- /package/examples/ecommerce-platform/{.seeflow/nodes → nodes}/node-kwBY8YPmYM/detail.md +0 -0
- /package/examples/ecommerce-platform/{.seeflow/nodes → nodes}/node-mPqan8rFYN/detail.md +0 -0
- /package/examples/ecommerce-platform/{.seeflow/nodes → nodes}/node-yKrg9DV5fJ/detail.md +0 -0
- /package/examples/ecommerce-platform/{.seeflow/style.json → style.json} +0 -0
- /package/examples/order-pipeline/{.seeflow/nodes → nodes}/node-GXTKUcE3ye/detail.md +0 -0
- /package/examples/order-pipeline/{.seeflow/nodes → nodes}/node-XKIyds0TDg/detail.md +0 -0
- /package/examples/order-pipeline/{.seeflow/nodes → nodes}/node-YOYiHJpY0i/detail.md +0 -0
- /package/examples/order-pipeline/{.seeflow/nodes → nodes}/node-zUIH7WFnhK/detail.md +0 -0
- /package/examples/order-pipeline/{.seeflow/scripts → scripts}/play.ts +0 -0
- /package/examples/order-pipeline/{.seeflow/style.json → style.json} +0 -0
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ npx -y @tuongaz/seeflow@latest start
|
|
|
23
23
|
# then open http://localhost:4321
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
Requires Bun ≥ 1.3 (or Node with npx). The studio scans `$(pwd)
|
|
26
|
+
Requires Bun ≥ 1.3 (or Node with npx). The studio scans `$(pwd)/flow.json` on start and auto-registers that flow if present. The studio's registry persists under `~/.seeflow/` across restarts.
|
|
27
27
|
|
|
28
28
|
<details>
|
|
29
29
|
<summary>Prefer Docker? (not recommended)</summary>
|
|
@@ -34,7 +34,7 @@ Requires Bun ≥ 1.3 (or Node with npx). The studio scans `$(pwd)/.seeflow/flow.
|
|
|
34
34
|
docker run --rm -it -p 4321:4321 -v $(pwd):/workspace tuongaz/seeflow
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
-
The image ships with a pre-registered **Order Pipeline** demo so you can see the canvas immediately, and the studio scans `/workspace
|
|
37
|
+
The image ships with a pre-registered **Order Pipeline** demo so you can see the canvas immediately, and the studio scans `/workspace/flow.json` on start.
|
|
38
38
|
|
|
39
39
|
</details>
|
|
40
40
|
|
|
@@ -79,7 +79,7 @@ The image is published on [Docker Hub](https://hub.docker.com/r/tuongaz/seeflow)
|
|
|
79
79
|
| Variable | Default | Description |
|
|
80
80
|
| ------------------- | ----------------------- | ------------------------------------------ |
|
|
81
81
|
| `SEEFLOW_PORT` | `4321` | Port the studio listens on |
|
|
82
|
-
| `SEEFLOW_FLOW` |
|
|
82
|
+
| `SEEFLOW_FLOW` | `flow.json` | Flow file path relative to the workspace |
|
|
83
83
|
| `SEEFLOW_WORKSPACE` | `/workspace` | Workspace mount point inside the container |
|
|
84
84
|
|
|
85
85
|
### Bake demos into a derived image
|