@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 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.** Drag, drop, connect. The visual editor renders your workflow as an interactive graph with bidirectional sync: canvas changes write code, code changes update the canvas. 80+ plugins handle rendering, state, minimap, undo/redo, and more.
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.** Annotate plain functions with JSDoc tags. The compiler turns them into executable workflow graphs with full type safety, IDE autocomplete, and compile-time validation. No YAML, no JSON configs.
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.** Connect Claude Code, Cursor, or OpenClaw and they scaffold, validate, and ship workflows using 30+ MCP tools. The agent reads validation errors, fixes issues, and re-validates until the workflow compiles clean. The development loop (steps 1-4 are fully autonomous):
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