@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 CHANGED
@@ -1,6 +1,7 @@
1
- Elastic License 2.0
1
+ Flow Weaver Library License
2
2
 
3
- URL: https://www.elastic.co/licensing/elastic-license
3
+ Based on the Elastic License 2.0 (https://www.elastic.co/licensing/elastic-license)
4
+ with additional notices below.
4
5
 
5
6
  ## Acceptance
6
7
 
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # @synergenius/flow-weaver
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/@synergenius/flow-weaver.svg)](https://www.npmjs.com/package/@synergenius/flow-weaver)
4
- [![License: ELv2-based](https://img.shields.io/badge/License-ELv2--based-blue.svg)](./LICENSE)
4
+ [![License: Flow Weaver Library License](https://img.shields.io/badge/License-Flow%20Weaver%20Library-blue.svg)](./LICENSE)
5
5
  [![Node.js](https://img.shields.io/badge/Node.js-%3E%3D18-green.svg)](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
- Custom license based on the Elastic License 2.0. See [LICENSE](./LICENSE) for full terms.
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
@@ -94429,7 +94429,7 @@ function displayInstalledPackage(pkg) {
94429
94429
  }
94430
94430
 
94431
94431
  // src/cli/index.ts
94432
- var version2 = true ? "0.5.0" : "0.0.0-dev";
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synergenius/flow-weaver",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Deterministic workflow compiler for AI agents. Compiles to standalone TypeScript, no runtime dependencies.",
5
5
  "private": false,
6
6
  "type": "module",