@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.
Files changed (66) hide show
  1. package/LICENSE +13 -185
  2. package/README.md +1 -1
  3. package/dist/index.d.ts.map +1 -1
  4. package/dist/index.js +2 -0
  5. package/dist/index.js.map +1 -1
  6. package/dist/initiative-constants.d.ts.map +1 -1
  7. package/dist/initiative-constants.js +2 -0
  8. package/dist/initiative-constants.js.map +1 -1
  9. package/dist/initiative-orchestrator.d.ts.map +1 -1
  10. package/dist/initiative-orchestrator.js +2 -19
  11. package/dist/initiative-orchestrator.js.map +1 -1
  12. package/dist/initiative-paths.d.ts.map +1 -1
  13. package/dist/initiative-paths.js +2 -0
  14. package/dist/initiative-paths.js.map +1 -1
  15. package/dist/initiative-schema.d.ts.map +1 -1
  16. package/dist/initiative-schema.js +2 -0
  17. package/dist/initiative-schema.js.map +1 -1
  18. package/dist/initiative-validation.d.ts +0 -12
  19. package/dist/initiative-validation.d.ts.map +1 -1
  20. package/dist/initiative-validation.js +2 -0
  21. package/dist/initiative-validation.js.map +1 -1
  22. package/dist/initiative-validator.d.ts.map +1 -1
  23. package/dist/initiative-validator.js +2 -0
  24. package/dist/initiative-validator.js.map +1 -1
  25. package/dist/initiative-yaml.d.ts.map +1 -1
  26. package/dist/initiative-yaml.js +2 -0
  27. package/dist/initiative-yaml.js.map +1 -1
  28. package/dist/lane-config-resolver.d.ts.map +1 -1
  29. package/dist/lane-config-resolver.js +2 -5
  30. package/dist/lane-config-resolver.js.map +1 -1
  31. package/dist/orchestrator/__tests__/formatting.test.d.ts +2 -0
  32. package/dist/orchestrator/__tests__/formatting.test.d.ts.map +1 -0
  33. package/dist/orchestrator/__tests__/formatting.test.js +96 -0
  34. package/dist/orchestrator/__tests__/formatting.test.js.map +1 -0
  35. package/dist/orchestrator/checkpoint.d.ts +0 -8
  36. package/dist/orchestrator/checkpoint.d.ts.map +1 -1
  37. package/dist/orchestrator/checkpoint.js +2 -0
  38. package/dist/orchestrator/checkpoint.js.map +1 -1
  39. package/dist/orchestrator/execution-planning.d.ts.map +1 -1
  40. package/dist/orchestrator/execution-planning.js +2 -8
  41. package/dist/orchestrator/execution-planning.js.map +1 -1
  42. package/dist/orchestrator/formatting.d.ts +0 -8
  43. package/dist/orchestrator/formatting.d.ts.map +1 -1
  44. package/dist/orchestrator/formatting.js +18 -2
  45. package/dist/orchestrator/formatting.js.map +1 -1
  46. package/dist/orchestrator/index.d.ts.map +1 -1
  47. package/dist/orchestrator/index.js +2 -0
  48. package/dist/orchestrator/index.js.map +1 -1
  49. package/dist/orchestrator/initiative-loading.d.ts.map +1 -1
  50. package/dist/orchestrator/initiative-loading.js +2 -7
  51. package/dist/orchestrator/initiative-loading.js.map +1 -1
  52. package/dist/orchestrator/lane-policy.d.ts.map +1 -1
  53. package/dist/orchestrator/lane-policy.js +3 -8
  54. package/dist/orchestrator/lane-policy.js.map +1 -1
  55. package/dist/orchestrator/shared.d.ts +0 -7
  56. package/dist/orchestrator/shared.d.ts.map +1 -1
  57. package/dist/orchestrator/shared.js +2 -0
  58. package/dist/orchestrator/shared.js.map +1 -1
  59. package/dist/orchestrator/spawn-status.d.ts +0 -8
  60. package/dist/orchestrator/spawn-status.d.ts.map +1 -1
  61. package/dist/orchestrator/spawn-status.js +2 -0
  62. package/dist/orchestrator/spawn-status.js.map +1 -1
  63. package/dist/orchestrator/types.d.ts.map +1 -1
  64. package/dist/orchestrator/types.js +2 -7
  65. package/dist/orchestrator/types.js.map +1 -1
  66. package/package.json +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumenflow/initiatives",
3
- "version": "2.21.1",
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": "Apache-2.0",
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": "2.21.1"
44
+ "@lumenflow/core": "3.1.0"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@vitest/coverage-v8": "^4.0.18",