@synergenius/flow-weaver 0.5.0 → 0.5.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/LICENSE +3 -2
- package/README.md +2 -2
- package/dist/cli/flow-weaver.mjs +1 -1
- package/package.json +1 -1
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# @synergenius/flow-weaver
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@synergenius/flow-weaver)
|
|
4
|
-
[](./LICENSE)
|
|
5
5
|
[](https://nodejs.org)
|
|
6
6
|
|
|
7
7
|
**Workflow compiler for AI agents.** LLMs create, validate, iterate, and test workflows programmatically. Humans review them visually. Compiled output is standalone TypeScript with no runtime dependencies.
|
|
@@ -367,7 +367,7 @@ npm run docs # Generate API docs
|
|
|
367
367
|
|
|
368
368
|
## License
|
|
369
369
|
|
|
370
|
-
|
|
370
|
+
Licensed under the Flow Weaver Library License. See [LICENSE](./LICENSE) for full terms.
|
|
371
371
|
|
|
372
372
|
- **Free to use**: install, run, and compile workflows in any organization
|
|
373
373
|
- **Free to host internally** for organizations with 15 or fewer people
|
package/dist/cli/flow-weaver.mjs
CHANGED
|
@@ -94429,7 +94429,7 @@ function displayInstalledPackage(pkg) {
|
|
|
94429
94429
|
}
|
|
94430
94430
|
|
|
94431
94431
|
// src/cli/index.ts
|
|
94432
|
-
var version2 = true ? "0.5.
|
|
94432
|
+
var version2 = true ? "0.5.1" : "0.0.0-dev";
|
|
94433
94433
|
var program2 = new Command();
|
|
94434
94434
|
program2.name("flow-weaver").description("Flow Weaver Annotations - Compile and validate workflow files").version(version2, "-v, --version", "Output the current version");
|
|
94435
94435
|
program2.configureOutput({
|
package/package.json
CHANGED