@lumenflow/initiatives 2.21.1 → 3.1.0
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 +13 -185
- package/README.md +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/initiative-constants.d.ts.map +1 -1
- package/dist/initiative-constants.js +2 -0
- package/dist/initiative-constants.js.map +1 -1
- package/dist/initiative-orchestrator.d.ts.map +1 -1
- package/dist/initiative-orchestrator.js +2 -19
- package/dist/initiative-orchestrator.js.map +1 -1
- package/dist/initiative-paths.d.ts.map +1 -1
- package/dist/initiative-paths.js +2 -0
- package/dist/initiative-paths.js.map +1 -1
- package/dist/initiative-schema.d.ts.map +1 -1
- package/dist/initiative-schema.js +2 -0
- package/dist/initiative-schema.js.map +1 -1
- package/dist/initiative-validation.d.ts +0 -12
- package/dist/initiative-validation.d.ts.map +1 -1
- package/dist/initiative-validation.js +2 -0
- package/dist/initiative-validation.js.map +1 -1
- package/dist/initiative-validator.d.ts.map +1 -1
- package/dist/initiative-validator.js +2 -0
- package/dist/initiative-validator.js.map +1 -1
- package/dist/initiative-yaml.d.ts.map +1 -1
- package/dist/initiative-yaml.js +2 -0
- package/dist/initiative-yaml.js.map +1 -1
- package/dist/lane-config-resolver.d.ts.map +1 -1
- package/dist/lane-config-resolver.js +2 -5
- package/dist/lane-config-resolver.js.map +1 -1
- package/dist/orchestrator/__tests__/formatting.test.d.ts +2 -0
- package/dist/orchestrator/__tests__/formatting.test.d.ts.map +1 -0
- package/dist/orchestrator/__tests__/formatting.test.js +96 -0
- package/dist/orchestrator/__tests__/formatting.test.js.map +1 -0
- package/dist/orchestrator/checkpoint.d.ts +0 -8
- package/dist/orchestrator/checkpoint.d.ts.map +1 -1
- package/dist/orchestrator/checkpoint.js +2 -0
- package/dist/orchestrator/checkpoint.js.map +1 -1
- package/dist/orchestrator/execution-planning.d.ts.map +1 -1
- package/dist/orchestrator/execution-planning.js +2 -8
- package/dist/orchestrator/execution-planning.js.map +1 -1
- package/dist/orchestrator/formatting.d.ts +0 -8
- package/dist/orchestrator/formatting.d.ts.map +1 -1
- package/dist/orchestrator/formatting.js +18 -2
- package/dist/orchestrator/formatting.js.map +1 -1
- package/dist/orchestrator/index.d.ts.map +1 -1
- package/dist/orchestrator/index.js +2 -0
- package/dist/orchestrator/index.js.map +1 -1
- package/dist/orchestrator/initiative-loading.d.ts.map +1 -1
- package/dist/orchestrator/initiative-loading.js +2 -7
- package/dist/orchestrator/initiative-loading.js.map +1 -1
- package/dist/orchestrator/lane-policy.d.ts.map +1 -1
- package/dist/orchestrator/lane-policy.js +3 -8
- package/dist/orchestrator/lane-policy.js.map +1 -1
- package/dist/orchestrator/shared.d.ts +0 -7
- package/dist/orchestrator/shared.d.ts.map +1 -1
- package/dist/orchestrator/shared.js +2 -0
- package/dist/orchestrator/shared.js.map +1 -1
- package/dist/orchestrator/spawn-status.d.ts +0 -8
- package/dist/orchestrator/spawn-status.d.ts.map +1 -1
- package/dist/orchestrator/spawn-status.js +2 -0
- package/dist/orchestrator/spawn-status.js.map +1 -1
- package/dist/orchestrator/types.d.ts.map +1 -1
- package/dist/orchestrator/types.js +2 -7
- package/dist/orchestrator/types.js.map +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumenflow/initiatives",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "Initiative tracking for LumenFlow workflow framework - multi-phase project coordination",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lumenflow",
|
|
@@ -9,13 +9,13 @@
|
|
|
9
9
|
"project",
|
|
10
10
|
"coordination"
|
|
11
11
|
],
|
|
12
|
-
"homepage": "https://github.com/hellmai/lumenflow",
|
|
12
|
+
"homepage": "https://github.com/hellmai/lumenflow-dev",
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
|
-
"url": "https://github.com/hellmai/lumenflow.git",
|
|
15
|
+
"url": "https://github.com/hellmai/lumenflow-dev.git",
|
|
16
16
|
"directory": "packages/@lumenflow/initiatives"
|
|
17
17
|
},
|
|
18
|
-
"license": "
|
|
18
|
+
"license": "AGPL-3.0-only",
|
|
19
19
|
"author": {
|
|
20
20
|
"name": "HellmAI",
|
|
21
21
|
"url": "https://hellm.ai"
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"yaml": "^2.8.2",
|
|
43
43
|
"zod": "^4.3.6",
|
|
44
|
-
"@lumenflow/core": "
|
|
44
|
+
"@lumenflow/core": "3.1.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@vitest/coverage-v8": "^4.0.18",
|