@lumenflow/initiatives 1.3.4 → 1.3.6
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.
|
@@ -280,7 +280,7 @@ export declare function validateCheckpointFlags(options: CheckpointOptions): voi
|
|
|
280
280
|
* Implements idempotency: skips WUs with stamps or already in previous manifests.
|
|
281
281
|
*
|
|
282
282
|
* Idempotency precedence (single source of truth):
|
|
283
|
-
* 1. Stamp (highest): .
|
|
283
|
+
* 1. Stamp (highest): .lumenflow/stamps/WU-XXXX.done exists → WU is done
|
|
284
284
|
* 2. Manifest: WU already in previous wave manifest → skip
|
|
285
285
|
* 3. Status: Only spawn status: ready WUs
|
|
286
286
|
*
|
|
@@ -33,11 +33,11 @@ import { SpawnStrategyFactory } from '@lumenflow/core/lib/spawn-strategy.js';
|
|
|
33
33
|
/**
|
|
34
34
|
* Wave manifest directory path (gitignored).
|
|
35
35
|
*/
|
|
36
|
-
const WAVE_MANIFEST_DIR = '.
|
|
36
|
+
const WAVE_MANIFEST_DIR = '.lumenflow/artifacts/waves';
|
|
37
37
|
/**
|
|
38
38
|
* Stamps directory path.
|
|
39
39
|
*/
|
|
40
|
-
const STAMPS_DIR = '.
|
|
40
|
+
const STAMPS_DIR = '.lumenflow/stamps';
|
|
41
41
|
/**
|
|
42
42
|
* Log prefix for orchestrator messages.
|
|
43
43
|
*/
|
|
@@ -736,7 +736,7 @@ export function validateCheckpointFlags(options) {
|
|
|
736
736
|
* Implements idempotency: skips WUs with stamps or already in previous manifests.
|
|
737
737
|
*
|
|
738
738
|
* Idempotency precedence (single source of truth):
|
|
739
|
-
* 1. Stamp (highest): .
|
|
739
|
+
* 1. Stamp (highest): .lumenflow/stamps/WU-XXXX.done exists → WU is done
|
|
740
740
|
* 2. Manifest: WU already in previous wave manifest → skip
|
|
741
741
|
* 3. Status: Only spawn status: ready WUs
|
|
742
742
|
*
|
|
@@ -815,7 +815,7 @@ export function buildCheckpointWave(initRef, options = {}) {
|
|
|
815
815
|
status: 'spawned',
|
|
816
816
|
})),
|
|
817
817
|
lane_validation: 'pass',
|
|
818
|
-
done_criteria: 'All stamps exist in .
|
|
818
|
+
done_criteria: 'All stamps exist in .lumenflow/stamps/',
|
|
819
819
|
};
|
|
820
820
|
// WU-2277: Skip file creation in dry-run mode
|
|
821
821
|
const manifestPath = join(WAVE_MANIFEST_DIR, `${initId}-wave-${waveNum}.json`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumenflow/initiatives",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.6",
|
|
4
4
|
"description": "Initiative tracking for LumenFlow workflow framework - multi-phase project coordination",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lumenflow",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"yaml": "^2.8.2",
|
|
43
43
|
"zod": "^4.3.5",
|
|
44
|
-
"@lumenflow/core": "1.3.
|
|
44
|
+
"@lumenflow/core": "1.3.6"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@vitest/coverage-v8": "^4.0.17",
|