@tuongaz/seeflow 0.1.55 → 0.1.57
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 +6 -6
- package/dist/web/assets/{index-Bn_TS_Fi.js → index-CPlccVLi.js} +1 -1
- package/dist/web/assets/{index.es-DFLQGnz3.js → index.es-CYTTDW0Q.js} +1 -1
- package/dist/web/assets/{jspdf.es.min-DOqDFz38.js → jspdf.es.min-DOaPC0dc.js} +3 -3
- package/dist/web/index.html +1 -1
- package/package.json +1 -1
- package/src/api.ts +24 -51
- package/src/cli-helpers.ts +20 -4
- package/src/cli-manifest.ts +37 -37
- package/src/cli.ts +8 -24
- package/src/mcp.ts +28 -57
- package/src/operations.ts +236 -147
- package/src/registry.ts +9 -0
package/README.md
CHANGED
|
@@ -54,16 +54,16 @@ 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-
|
|
57
|
+
### `/seeflow-lookup` — consult an existing flow
|
|
58
58
|
|
|
59
59
|
Once a flow is registered, agents can read it back as architectural ground truth:
|
|
60
60
|
|
|
61
61
|
```
|
|
62
|
-
/seeflow-
|
|
63
|
-
/seeflow-
|
|
64
|
-
/seeflow-
|
|
65
|
-
/seeflow-
|
|
66
|
-
/seeflow-
|
|
62
|
+
/seeflow-lookup list # catalog of registered flows
|
|
63
|
+
/seeflow-lookup flow <id> # nodes + connectors (no detail content)
|
|
64
|
+
/seeflow-lookup node <flowId> <nodeId> # single node with detail/html inlined
|
|
65
|
+
/seeflow-lookup flow <id> --full # everything inlined
|
|
66
|
+
/seeflow-lookup node <flowId> <nodeId> --with-scripts # adds play.ts / status.ts bodies
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
Read-only. JSON output. Start cheapest (`list`) and drill in.
|