@synergenius/flow-weaver 0.9.5 → 0.10.1
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 +9 -3
- package/dist/cli/flow-weaver.mjs +477 -97
- package/dist/diagram/html-viewer.d.ts +2 -1
- package/dist/diagram/html-viewer.js +479 -99
- package/dist/diagram/renderer.js +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,11 +10,17 @@ Design agent workflows in the Studio, in TypeScript, or let AI build them for yo
|
|
|
10
10
|
|
|
11
11
|
## Three Ways to Build
|
|
12
12
|
|
|
13
|
-
**Studio.**
|
|
13
|
+
**Studio.**
|
|
14
|
+
A unified environment that combines a full code editor with a visual graph builder. You can write and refactor workflows directly in code or compose them visually on the canvas. Both representations stay synchronized at all times. Editing either one updates the other instantly, so you can move between abstraction levels without friction.
|
|
14
15
|
|
|
15
|
-
**TypeScript.**
|
|
16
|
+
**TypeScript.**
|
|
17
|
+
Define workflows in plain TypeScript by annotating functions with JSDoc. The compiler derives an executable workflow graph with static typing and compile-time validation.
|
|
18
|
+
There is no YAML, no JSON configuration, and no runtime layer.
|
|
19
|
+
No lock-in. Remove the annotations and you keep a clean, readable TypeScript file with zero dependencies.
|
|
16
20
|
|
|
17
|
-
**AI Agents.**
|
|
21
|
+
**AI Agents.**
|
|
22
|
+
Connect Claude Code, Cursor, or OpenClaw to design and ship workflows. Agents scaffold implementations, run the compiler, interpret validation errors, apply corrections, and repeat the process until the workflow compiles successfully.
|
|
23
|
+
With more than 30 MCP tools available, the entire build loop can run autonomously.
|
|
18
24
|
|
|
19
25
|
1. **Agent creates**: scaffolds from templates, builds from a model, or writes from scratch
|
|
20
26
|
2. **Compiler validates**: 15+ validation passes catch missing connections, type mismatches, unreachable paths
|