@synergenius/flow-weaver 0.21.7 → 0.21.11
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 +59 -57
- package/dist/cli/commands/context.js +2 -2
- package/dist/cli/commands/create.js +2 -2
- package/dist/cli/commands/docs.js +5 -5
- package/dist/cli/commands/export.d.ts +4 -4
- package/dist/cli/commands/export.js +4 -4
- package/dist/cli/commands/init-personas.js +11 -11
- package/dist/cli/commands/init.js +5 -5
- package/dist/cli/commands/market.js +6 -6
- package/dist/cli/commands/openapi.d.ts +3 -3
- package/dist/cli/commands/openapi.js +3 -3
- package/dist/cli/commands/run.d.ts +5 -5
- package/dist/cli/commands/run.js +5 -5
- package/dist/cli/commands/serve.d.ts +5 -5
- package/dist/cli/commands/serve.js +5 -5
- package/dist/cli/commands/templates.js +2 -2
- package/dist/cli/flow-weaver.mjs +61 -61
- package/dist/cli/index.js +10 -10
- package/dist/cli/templates/workflows/aggregator.js +1 -1
- package/dist/cli/templates/workflows/ai-agent.js +1 -1
- package/dist/cli/templates/workflows/ai-chat.js +1 -1
- package/dist/cli/templates/workflows/ai-rag.js +1 -1
- package/dist/cli/templates/workflows/ai-react.js +1 -1
- package/dist/cli/templates/workflows/conditional.js +1 -1
- package/dist/cli/templates/workflows/error-handler.js +1 -1
- package/dist/cli/templates/workflows/foreach.js +1 -1
- package/dist/cli/templates/workflows/sequential.js +2 -2
- package/dist/cli/templates/workflows/webhook.js +1 -1
- package/dist/doc-metadata/extractors/cli-commands.js +24 -24
- package/dist/doc-metadata/types.d.ts +1 -1
- package/dist/generated-version.d.ts +1 -1
- package/dist/generated-version.js +1 -1
- package/dist/marketplace/registry.d.ts +1 -1
- package/dist/marketplace/registry.js +2 -2
- package/dist/marketplace/validator.js +2 -2
- package/dist/mcp/server.js +1 -1
- package/docs/reference/advanced-annotations.md +4 -4
- package/docs/reference/built-in-nodes.md +2 -2
- package/docs/reference/cli-reference.md +142 -140
- package/docs/reference/compilation.md +12 -12
- package/docs/reference/concepts.md +29 -29
- package/docs/reference/debugging.md +34 -34
- package/docs/reference/deployment.md +27 -27
- package/docs/reference/export-interface.md +1 -1
- package/docs/reference/iterative-development.md +6 -6
- package/docs/reference/marketplace.md +20 -20
- package/docs/reference/node-conversion.md +1 -1
- package/docs/reference/patterns.md +7 -7
- package/docs/reference/scaffold.md +22 -22
- package/docs/reference/tutorial.md +29 -29
- package/package.json +3 -2
|
@@ -15,7 +15,7 @@ The Flow Weaver marketplace is an npm-based ecosystem for sharing reusable node
|
|
|
15
15
|
| **Node types** | Reusable `@flowWeaver nodeType` functions |
|
|
16
16
|
| **Workflows** | Complete `@flowWeaver workflow` exports |
|
|
17
17
|
| **Patterns** | Reusable `@flowWeaver pattern` fragments |
|
|
18
|
-
| **Export targets** | Deployment targets for `
|
|
18
|
+
| **Export targets** | Deployment targets for `fw export` |
|
|
19
19
|
|
|
20
20
|
A single package can contain any combination of these.
|
|
21
21
|
|
|
@@ -49,15 +49,15 @@ See [Deployment](deployment) for target-specific usage details.
|
|
|
49
49
|
Find packages on npm:
|
|
50
50
|
|
|
51
51
|
```bash
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
52
|
+
fw market search openai
|
|
53
|
+
fw market search # Browse all packages
|
|
54
|
+
fw market search llm --limit 5
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
For private registries:
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
|
-
|
|
60
|
+
fw market search openai --registry https://npm.internal.com
|
|
61
61
|
```
|
|
62
62
|
|
|
63
63
|
### Install
|
|
@@ -65,8 +65,8 @@ flow-weaver market search openai --registry https://npm.internal.com
|
|
|
65
65
|
Install a package:
|
|
66
66
|
|
|
67
67
|
```bash
|
|
68
|
-
|
|
69
|
-
|
|
68
|
+
fw market install flow-weaver-pack-openai
|
|
69
|
+
fw market install flow-weaver-pack-openai@1.0.0
|
|
70
70
|
```
|
|
71
71
|
|
|
72
72
|
After installation, the package's node types, workflows, and patterns are available for use in your workflows via `@fwImport`.
|
|
@@ -74,7 +74,7 @@ After installation, the package's node types, workflows, and patterns are availa
|
|
|
74
74
|
### List Installed
|
|
75
75
|
|
|
76
76
|
```bash
|
|
77
|
-
|
|
77
|
+
fw market list
|
|
78
78
|
```
|
|
79
79
|
|
|
80
80
|
Shows all installed `flow-weaver-pack-*` packages with their available node types, workflows, and patterns.
|
|
@@ -88,19 +88,19 @@ Shows all installed `flow-weaver-pack-*` packages with their available node type
|
|
|
88
88
|
Create a new marketplace package:
|
|
89
89
|
|
|
90
90
|
```bash
|
|
91
|
-
|
|
91
|
+
fw market init openai
|
|
92
92
|
```
|
|
93
93
|
|
|
94
94
|
This creates a `flow-weaver-pack-openai/` directory with:
|
|
95
|
-
- `package.json` — Configured with `
|
|
95
|
+
- `package.json` — Configured with `flow-weaver-marketplace-pack` keyword
|
|
96
96
|
- `src/` — Source directory for node types, workflows, and patterns
|
|
97
97
|
- `tsconfig.json` — TypeScript configuration
|
|
98
98
|
|
|
99
99
|
Options:
|
|
100
100
|
|
|
101
101
|
```bash
|
|
102
|
-
|
|
103
|
-
|
|
102
|
+
fw market init openai --description "OpenAI nodes for Flow Weaver" --author "Your Name"
|
|
103
|
+
fw market init openai -y # Skip prompts
|
|
104
104
|
```
|
|
105
105
|
|
|
106
106
|
### Package Structure
|
|
@@ -124,8 +124,8 @@ flow-weaver-pack-openai/
|
|
|
124
124
|
Validate your package and generate the manifest:
|
|
125
125
|
|
|
126
126
|
```bash
|
|
127
|
-
|
|
128
|
-
|
|
127
|
+
fw market pack
|
|
128
|
+
fw market pack --verbose # Show parse warnings
|
|
129
129
|
```
|
|
130
130
|
|
|
131
131
|
This:
|
|
@@ -138,9 +138,9 @@ This:
|
|
|
138
138
|
Publish to npm:
|
|
139
139
|
|
|
140
140
|
```bash
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
141
|
+
fw market publish
|
|
142
|
+
fw market publish --dry-run # Preview without publishing
|
|
143
|
+
fw market publish --tag beta # Publish with dist-tag
|
|
144
144
|
```
|
|
145
145
|
|
|
146
146
|
---
|
|
@@ -150,7 +150,7 @@ flow-weaver market publish --tag beta # Publish with dist-tag
|
|
|
150
150
|
The `market pack` command validates packages against additional rules beyond standard workflow validation:
|
|
151
151
|
|
|
152
152
|
- Package name must start with `flow-weaver-pack-`
|
|
153
|
-
- Must include `
|
|
153
|
+
- Must include `flow-weaver-marketplace-pack` keyword in `package.json`
|
|
154
154
|
- All exported node types must have proper annotations
|
|
155
155
|
- All exported workflows must validate successfully
|
|
156
156
|
- No conflicting node type names
|
|
@@ -240,7 +240,7 @@ Plugins extend the Flow Weaver Studio IDE with custom UI components, system logi
|
|
|
240
240
|
### Scaffold a Plugin
|
|
241
241
|
|
|
242
242
|
```bash
|
|
243
|
-
|
|
243
|
+
fw plugin init my-plugin
|
|
244
244
|
```
|
|
245
245
|
|
|
246
246
|
Options:
|
|
@@ -267,7 +267,7 @@ Plugins register React components in specific areas of the Studio IDE:
|
|
|
267
267
|
### Plugin Structure
|
|
268
268
|
|
|
269
269
|
```bash
|
|
270
|
-
|
|
270
|
+
fw plugin init my-plugin --area sidebar
|
|
271
271
|
```
|
|
272
272
|
|
|
273
273
|
Generates:
|
|
@@ -302,4 +302,4 @@ The compiler fully supports async expression nodes -- `await`, async detection,
|
|
|
302
302
|
|
|
303
303
|
# Post-Conversion Validation
|
|
304
304
|
|
|
305
|
-
After conversion, run `
|
|
305
|
+
After conversion, run `fw validate <file>` to verify the converted node types are correctly parsed.
|
|
@@ -16,13 +16,13 @@ Patterns are reusable workflow fragments with boundary ports (`IN.`/`OUT.`) inst
|
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
18
|
# List patterns in file or directory
|
|
19
|
-
|
|
19
|
+
fw pattern list <path> [--json]
|
|
20
20
|
|
|
21
21
|
# Apply pattern to workflow
|
|
22
|
-
|
|
22
|
+
fw pattern apply <pattern-file> <target-file> [--prefix p] [--name n] [--preview]
|
|
23
23
|
|
|
24
24
|
# Extract pattern from workflow nodes
|
|
25
|
-
|
|
25
|
+
fw pattern extract <source-file> --nodes a,b,c -o <output-file> [--name n] [--preview]
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
## Pattern Annotation
|
|
@@ -68,10 +68,10 @@ When applying a pattern:
|
|
|
68
68
|
|
|
69
69
|
```bash
|
|
70
70
|
# Basic apply
|
|
71
|
-
|
|
71
|
+
fw pattern apply pattern.ts workflow.ts
|
|
72
72
|
|
|
73
73
|
# With prefix to avoid conflicts
|
|
74
|
-
|
|
74
|
+
fw pattern apply pattern.ts workflow.ts --prefix vt
|
|
75
75
|
|
|
76
76
|
# Output shows wiring instructions:
|
|
77
77
|
# Applied pattern "validateTransform"
|
|
@@ -88,10 +88,10 @@ Extract nodes from an existing workflow to create a reusable pattern:
|
|
|
88
88
|
|
|
89
89
|
```bash
|
|
90
90
|
# Extract specific nodes
|
|
91
|
-
|
|
91
|
+
fw pattern extract my-workflow.ts --nodes validator,transformer -o my-pattern.ts
|
|
92
92
|
|
|
93
93
|
# Preview without writing
|
|
94
|
-
|
|
94
|
+
fw pattern extract my-workflow.ts --nodes a,b -o output.ts --preview
|
|
95
95
|
```
|
|
96
96
|
|
|
97
97
|
The extractor:
|
|
@@ -6,15 +6,15 @@ keywords: [scaffold, templates, create, generate, workflow, node, sequential, fo
|
|
|
6
6
|
|
|
7
7
|
# Quick Start
|
|
8
8
|
|
|
9
|
-
Use the `
|
|
9
|
+
Use the `fw create` command to scaffold workflows and nodes from templates, or `fw init` to create a new project.
|
|
10
10
|
|
|
11
11
|
## Create a Project
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
|
|
14
|
+
fw init [directory] [options]
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
Creates a new
|
|
17
|
+
Creates a new Flow Weaver project with recommended structure, dependencies, and a starter workflow.
|
|
18
18
|
|
|
19
19
|
Options:
|
|
20
20
|
- `--name <name>` / `-n` - Project name (defaults to directory name)
|
|
@@ -26,15 +26,15 @@ Options:
|
|
|
26
26
|
- `--force` - Overwrite existing files
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
fw init my-project
|
|
30
|
+
fw init --template ai-agent -y
|
|
31
|
+
fw init my-project --format cjs --no-git
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
## Create Workflow
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
|
-
|
|
37
|
+
fw create workflow <template> <file> [options]
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
Options:
|
|
@@ -50,14 +50,14 @@ Options:
|
|
|
50
50
|
- `--config <json>` - Additional configuration as JSON
|
|
51
51
|
|
|
52
52
|
```bash
|
|
53
|
-
|
|
54
|
-
|
|
53
|
+
fw create workflow ai-agent agent.ts --provider openai --model gpt-4o
|
|
54
|
+
fw create workflow sequential pipeline.ts --nodes "fetch,parse,store" --async
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
## Create Node
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
|
-
|
|
60
|
+
fw create node <name> <file> [--template T] [--line N] [--preview]
|
|
61
61
|
```
|
|
62
62
|
|
|
63
63
|
Options:
|
|
@@ -72,7 +72,7 @@ Options:
|
|
|
72
72
|
## List Templates
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
|
-
|
|
75
|
+
fw templates [--json]
|
|
76
76
|
```
|
|
77
77
|
|
|
78
78
|
# Available Templates
|
|
@@ -117,39 +117,39 @@ flow-weaver templates [--json]
|
|
|
117
117
|
|
|
118
118
|
## Scaffold a workflow
|
|
119
119
|
```bash
|
|
120
|
-
|
|
121
|
-
|
|
120
|
+
fw create workflow sequential my-workflow.ts
|
|
121
|
+
fw validate my-workflow.ts
|
|
122
122
|
```
|
|
123
123
|
|
|
124
124
|
## Scaffold an AI agent
|
|
125
125
|
```bash
|
|
126
|
-
|
|
126
|
+
fw create workflow ai-agent agent.ts
|
|
127
127
|
```
|
|
128
128
|
|
|
129
129
|
## Add a node to existing file
|
|
130
130
|
```bash
|
|
131
|
-
|
|
132
|
-
|
|
131
|
+
fw create node validateInput my-workflow.ts -t validator
|
|
132
|
+
fw create node callLLM my-workflow.ts -t llm-call
|
|
133
133
|
```
|
|
134
134
|
|
|
135
135
|
## Insert at specific line
|
|
136
136
|
```bash
|
|
137
|
-
|
|
137
|
+
fw create workflow sequential my-file.ts --line 10
|
|
138
138
|
```
|
|
139
139
|
|
|
140
140
|
## Preview before writing
|
|
141
141
|
```bash
|
|
142
|
-
|
|
143
|
-
|
|
142
|
+
fw create workflow foreach my-workflow.ts --preview
|
|
143
|
+
fw create node myValidator file.ts -t validator --preview
|
|
144
144
|
```
|
|
145
145
|
|
|
146
146
|
# After Scaffolding
|
|
147
147
|
|
|
148
148
|
1. **Customize** - Replace TODO comments with your logic
|
|
149
|
-
2. **Validate** - Run `
|
|
150
|
-
3. **Compile** - Run `
|
|
149
|
+
2. **Validate** - Run `fw validate <file>`
|
|
150
|
+
3. **Compile** - Run `fw compile <file>`
|
|
151
151
|
|
|
152
|
-
See `
|
|
152
|
+
See `fw docs iterative-development` for step-by-step workflow building.
|
|
153
153
|
|
|
154
154
|
## Related Topics
|
|
155
155
|
|
|
@@ -25,13 +25,13 @@ Start -> validator -> enricher -> scorer -> Exit
|
|
|
25
25
|
Use the CLI to generate a starting point:
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
|
-
|
|
28
|
+
fw create workflow sequential my-workflow.ts
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
This creates `my-workflow.ts` with a linear pipeline skeleton. Preview before writing:
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
|
|
34
|
+
fw create workflow sequential my-workflow.ts --preview
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
Open the generated file. It contains a placeholder workflow function with a single node. You will replace and expand it in the following steps.
|
|
@@ -165,12 +165,12 @@ This is useful when:
|
|
|
165
165
|
- You want to use popular libraries (lodash, date-fns, etc.) directly
|
|
166
166
|
- You don't want to write wrapper boilerplate
|
|
167
167
|
|
|
168
|
-
Port types are inferred from TypeScript definitions. See `
|
|
168
|
+
Port types are inferred from TypeScript definitions. See `fw docs jsdoc-grammar` for full syntax.
|
|
169
169
|
|
|
170
170
|
After adding each function, validate to catch errors early:
|
|
171
171
|
|
|
172
172
|
```bash
|
|
173
|
-
|
|
173
|
+
fw validate my-workflow.ts
|
|
174
174
|
```
|
|
175
175
|
|
|
176
176
|
# Step 3: Wire the Workflow
|
|
@@ -217,7 +217,7 @@ Key points:
|
|
|
217
217
|
Run the validator to check for annotation errors, missing connections, and type mismatches:
|
|
218
218
|
|
|
219
219
|
```bash
|
|
220
|
-
|
|
220
|
+
fw validate my-workflow.ts
|
|
221
221
|
```
|
|
222
222
|
|
|
223
223
|
If everything is correct you will see a success message. If there are issues, the output describes each problem. Common things to check:
|
|
@@ -230,7 +230,7 @@ If everything is correct you will see a success message. If there are issues, th
|
|
|
230
230
|
For machine-readable output (useful in CI):
|
|
231
231
|
|
|
232
232
|
```bash
|
|
233
|
-
|
|
233
|
+
fw validate my-workflow.ts --json
|
|
234
234
|
```
|
|
235
235
|
|
|
236
236
|
# Step 5: Compile
|
|
@@ -238,7 +238,7 @@ flow-weaver validate my-workflow.ts --json
|
|
|
238
238
|
Generate the executable code:
|
|
239
239
|
|
|
240
240
|
```bash
|
|
241
|
-
|
|
241
|
+
fw compile my-workflow.ts
|
|
242
242
|
```
|
|
243
243
|
|
|
244
244
|
This compiles the workflow in-place, modifying the source file directly. The compiled file contains:
|
|
@@ -252,7 +252,7 @@ The generated function has the same signature as your placeholder, so existing i
|
|
|
252
252
|
For production builds (no debug events):
|
|
253
253
|
|
|
254
254
|
```bash
|
|
255
|
-
|
|
255
|
+
fw compile my-workflow.ts --production
|
|
256
256
|
```
|
|
257
257
|
|
|
258
258
|
# Step 6: Run
|
|
@@ -294,7 +294,7 @@ When the workflow does not behave as expected, use these techniques:
|
|
|
294
294
|
## Verbose validation
|
|
295
295
|
|
|
296
296
|
```bash
|
|
297
|
-
|
|
297
|
+
fw validate my-workflow.ts --verbose
|
|
298
298
|
```
|
|
299
299
|
|
|
300
300
|
Shows detailed information about parsed annotations, port types, and connection resolution.
|
|
@@ -306,8 +306,8 @@ Open the compiled source file and read the execution logic. Each node call is vi
|
|
|
306
306
|
## Describe the workflow structure
|
|
307
307
|
|
|
308
308
|
```bash
|
|
309
|
-
|
|
310
|
-
|
|
309
|
+
fw describe my-workflow.ts
|
|
310
|
+
fw describe my-workflow.ts --format mermaid
|
|
311
311
|
```
|
|
312
312
|
|
|
313
313
|
Outputs the workflow graph as JSON or as a Mermaid diagram for visual inspection.
|
|
@@ -461,10 +461,10 @@ export function processRecord(
|
|
|
461
461
|
|
|
462
462
|
```bash
|
|
463
463
|
# Validate
|
|
464
|
-
|
|
464
|
+
fw validate my-workflow.ts
|
|
465
465
|
|
|
466
466
|
# Compile
|
|
467
|
-
|
|
467
|
+
fw compile my-workflow.ts
|
|
468
468
|
|
|
469
469
|
# Run (from another file or a script)
|
|
470
470
|
npx ts-node -e "
|
|
@@ -478,10 +478,10 @@ npx ts-node -e "
|
|
|
478
478
|
|
|
479
479
|
# Alternative: Dev Mode
|
|
480
480
|
|
|
481
|
-
Instead of running validate, compile, and run separately, use `
|
|
481
|
+
Instead of running validate, compile, and run separately, use `fw dev` to do all three in a single watch loop:
|
|
482
482
|
|
|
483
483
|
```bash
|
|
484
|
-
|
|
484
|
+
fw dev my-workflow.ts --params '{"record": {"name": "Alice", "age": 30, "email": "alice@edu.com"}}'
|
|
485
485
|
```
|
|
486
486
|
|
|
487
487
|
This watches for file changes, recompiles, and re-runs automatically.
|
|
@@ -491,23 +491,23 @@ This watches for file changes, recompiles, and re-runs automatically.
|
|
|
491
491
|
Visualize your workflow as an SVG diagram:
|
|
492
492
|
|
|
493
493
|
```bash
|
|
494
|
-
|
|
495
|
-
|
|
494
|
+
fw diagram my-workflow.ts -o my-workflow.svg
|
|
495
|
+
fw diagram my-workflow.ts --theme light -o my-workflow.svg
|
|
496
496
|
```
|
|
497
497
|
|
|
498
498
|
# Next Steps
|
|
499
499
|
|
|
500
500
|
Now that you have a working workflow, explore these topics to go further:
|
|
501
501
|
|
|
502
|
-
- **CLI Reference** (`
|
|
503
|
-
- **Advanced Annotations** (`
|
|
504
|
-
- **Compilation** (`
|
|
505
|
-
- **Deployment** (`
|
|
506
|
-
- **Built-in Nodes** (`
|
|
507
|
-
- **Marketplace** (`
|
|
508
|
-
- **Patterns** (`
|
|
509
|
-
- **Scoped ports and forEach** (`
|
|
510
|
-
- **Expression nodes** (`
|
|
511
|
-
- **Scaffolding templates** (`
|
|
512
|
-
- **Debugging** (`
|
|
513
|
-
- **JSDoc grammar** (`
|
|
502
|
+
- **CLI Reference** (`fw docs cli-reference`) -- Complete reference for all CLI commands and flags
|
|
503
|
+
- **Advanced Annotations** (`fw docs advanced-annotations`) -- Pull execution, merge strategies, auto-connect, path/map sugar
|
|
504
|
+
- **Compilation** (`fw docs compilation`) -- TypeScript and Inngest compilation targets, production mode, serve handlers
|
|
505
|
+
- **Deployment** (`fw docs deployment`) -- Export to Lambda, Vercel, Cloudflare, Inngest; HTTP serve mode
|
|
506
|
+
- **Built-in Nodes** (`fw docs built-in-nodes`) -- delay, waitForEvent, invokeWorkflow nodes and the mock system for testing
|
|
507
|
+
- **Marketplace** (`fw docs marketplace`) -- Install and publish reusable node type packages
|
|
508
|
+
- **Patterns** (`fw docs patterns`) -- Extract reusable workflow fragments and apply them across projects
|
|
509
|
+
- **Scoped ports and forEach** (`fw docs export-interface`) -- Iterate over arrays using scoped ports and callback parameters
|
|
510
|
+
- **Expression nodes** (`fw docs node-conversion`) -- Write pure functions without `execute`/`onSuccess`/`onFailure` boilerplate
|
|
511
|
+
- **Scaffolding templates** (`fw docs scaffold`) -- Generate workflows from templates like `sequential`, `foreach`, `conditional`, and more
|
|
512
|
+
- **Debugging** (`fw docs debugging`) -- WebSocket debugger, validation diagnostics, and error resolution
|
|
513
|
+
- **JSDoc grammar** (`fw docs jsdoc-grammar`) -- Full annotation syntax reference including metadata brackets, scope clauses, and positioning
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synergenius/flow-weaver",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.11",
|
|
4
4
|
"description": "Deterministic workflow compiler for AI agents. Compiles to standalone TypeScript, no runtime dependencies.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -93,7 +93,8 @@
|
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
"bin": {
|
|
96
|
-
"flow-weaver": "./dist/cli/flow-weaver.mjs"
|
|
96
|
+
"flow-weaver": "./dist/cli/flow-weaver.mjs",
|
|
97
|
+
"fw": "./dist/cli/flow-weaver.mjs"
|
|
97
98
|
},
|
|
98
99
|
"files": [
|
|
99
100
|
"dist",
|