@tuongaz/seeflow 0.1.57 → 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.
Files changed (44) hide show
  1. package/README.md +3 -3
  2. package/dist/web/assets/{index-CPlccVLi.js → index-DAP_yx-l.js} +354 -354
  3. package/dist/web/assets/{index.es-CYTTDW0Q.js → index.es-2bA-nRVD.js} +1 -1
  4. package/dist/web/assets/{jspdf.es.min-DOaPC0dc.js → jspdf.es.min-C7u0-VKd.js} +3 -3
  5. package/dist/web/index.html +1 -1
  6. package/examples/ecommerce-platform/{.seeflow/flow.json → flow.json} +3 -25
  7. package/examples/ecommerce-platform/{.seeflow/scripts → scripts}/play.ts +1 -1
  8. package/examples/order-pipeline/{.seeflow/flow.json → flow.json} +1 -10
  9. package/package.json +1 -1
  10. package/src/api.ts +83 -55
  11. package/src/cli-helpers.ts +6 -5
  12. package/src/cli-manifest.ts +129 -15
  13. package/src/cli.ts +106 -13
  14. package/src/diagram.ts +0 -1
  15. package/src/file-ref.ts +16 -15
  16. package/src/mcp.ts +96 -16
  17. package/src/merge.ts +0 -1
  18. package/src/node-files.ts +5 -5
  19. package/src/operations.ts +40 -101
  20. package/src/paths.ts +16 -0
  21. package/src/proxy.ts +13 -13
  22. package/src/schema-catalog.ts +114 -0
  23. package/src/schema.ts +110 -133
  24. package/src/server.ts +3 -5
  25. package/src/short-id.ts +24 -0
  26. package/src/status-runner.ts +3 -3
  27. package/src/watcher.ts +15 -27
  28. package/src/sdk-template.ts +0 -37
  29. package/src/sdk-writer.ts +0 -37
  30. /package/examples/ecommerce-platform/{.seeflow/nodes → nodes}/node-3zFtHg6ENc/detail.md +0 -0
  31. /package/examples/ecommerce-platform/{.seeflow/nodes → nodes}/node-5F424NWbEu/detail.md +0 -0
  32. /package/examples/ecommerce-platform/{.seeflow/nodes → nodes}/node-CbwYqb7NfB/detail.md +0 -0
  33. /package/examples/ecommerce-platform/{.seeflow/nodes → nodes}/node-XwygzfKPZ5/view.html +0 -0
  34. /package/examples/ecommerce-platform/{.seeflow/nodes → nodes}/node-fkptXw7uvs/detail.md +0 -0
  35. /package/examples/ecommerce-platform/{.seeflow/nodes → nodes}/node-kwBY8YPmYM/detail.md +0 -0
  36. /package/examples/ecommerce-platform/{.seeflow/nodes → nodes}/node-mPqan8rFYN/detail.md +0 -0
  37. /package/examples/ecommerce-platform/{.seeflow/nodes → nodes}/node-yKrg9DV5fJ/detail.md +0 -0
  38. /package/examples/ecommerce-platform/{.seeflow/style.json → style.json} +0 -0
  39. /package/examples/order-pipeline/{.seeflow/nodes → nodes}/node-GXTKUcE3ye/detail.md +0 -0
  40. /package/examples/order-pipeline/{.seeflow/nodes → nodes}/node-XKIyds0TDg/detail.md +0 -0
  41. /package/examples/order-pipeline/{.seeflow/nodes → nodes}/node-YOYiHJpY0i/detail.md +0 -0
  42. /package/examples/order-pipeline/{.seeflow/nodes → nodes}/node-zUIH7WFnhK/detail.md +0 -0
  43. /package/examples/order-pipeline/{.seeflow/scripts → scripts}/play.ts +0 -0
  44. /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)/.seeflow/flow.json` on start and auto-registers that flow if present. Flows you create from the UI, plus the studio's registry, persist under `$(pwd)/.seeflow/` across restarts.
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/.seeflow/flow.json` on start.
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` | `.seeflow/flow.json` | Flow file path relative to the workspace |
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