@tuongaz/seeflow 0.1.47 → 0.1.51
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 +14 -0
- package/dist/web/assets/{index-BYeYJkCQ.js → index-CFn1Jdmi.js} +3 -3
- package/dist/web/assets/{index.es-CqkMwhBu.js → index.es-DQFAA-Eu.js} +1 -1
- package/dist/web/assets/{jspdf.es.min-DLHTB6Rk.js → jspdf.es.min-D7KeFi-m.js} +3 -3
- package/dist/web/index.html +1 -1
- package/package.json +1 -1
- package/src/api.ts +138 -102
- package/src/cli-helpers.ts +79 -0
- package/src/cli-manifest.ts +772 -0
- package/src/cli-ops.ts +18 -0
- package/src/cli.ts +164 -137
- package/src/events.ts +2 -1
- package/src/mcp.ts +104 -35
- package/src/merge.ts +3 -0
- package/src/operations.ts +320 -0
- package/src/registry-watcher.ts +86 -0
- package/src/registry.ts +132 -24
- package/src/schema.ts +2 -0
- package/src/server.ts +9 -0
- package/src/watcher.ts +32 -2
package/README.md
CHANGED
|
@@ -54,6 +54,20 @@ npx skills add tuongaz/seeflow
|
|
|
54
54
|
|
|
55
55
|
The plugin scans your routes and database connections, generates `flow.json`, wires up demo scripts, and opens the canvas at localhost:4321.
|
|
56
56
|
|
|
57
|
+
### `/seeflow-wiki` — consult an existing flow
|
|
58
|
+
|
|
59
|
+
Once a flow is registered, agents can read it back as architectural ground truth:
|
|
60
|
+
|
|
61
|
+
```
|
|
62
|
+
/seeflow-wiki list # catalog of registered flows
|
|
63
|
+
/seeflow-wiki flow <id> # nodes + connectors (no detail content)
|
|
64
|
+
/seeflow-wiki node <flowId> <nodeId> # single node with detail/html inlined
|
|
65
|
+
/seeflow-wiki flow <id> --full # everything inlined
|
|
66
|
+
/seeflow-wiki node <flowId> <nodeId> --with-scripts # adds play.ts / status.ts bodies
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
Read-only. JSON output. Start cheapest (`list`) and drill in.
|
|
70
|
+
|
|
57
71
|
## Docker reference
|
|
58
72
|
|
|
59
73
|
> ⚠️ Docker is the non-preferred path. Play/Status scripts execute inside the container and cannot reach host services or host binaries, so interactive nodes generated against your local app will not work. Prefer `npx -y @tuongaz/seeflow@latest start` for the full experience.
|