deepflow 0.1.99 → 0.1.100
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/bin/plan-consolidator.js
CHANGED
|
@@ -268,8 +268,7 @@ function main() {
|
|
|
268
268
|
const plansDir = path.resolve(process.cwd(), args.plansDir);
|
|
269
269
|
|
|
270
270
|
if (!fs.existsSync(plansDir)) {
|
|
271
|
-
process.
|
|
272
|
-
process.exit(1);
|
|
271
|
+
process.exit(0);
|
|
273
272
|
}
|
|
274
273
|
|
|
275
274
|
// Collect mini-plan files: doing-{name}.md, sorted alphabetically for determinism
|
package/package.json
CHANGED
package/src/commands/df/plan.md
CHANGED
|
@@ -244,7 +244,7 @@ Then apply §5.5 routing matrix. Continue to §6.
|
|
|
244
244
|
|
|
245
245
|
Shell-inject the consolidator output:
|
|
246
246
|
|
|
247
|
-
`` !`node bin/plan-consolidator.js --plans-dir .deepflow/plans/ 2>/dev/null` ``
|
|
247
|
+
`` !`node bin/plan-consolidator.js --plans-dir .deepflow/plans/ 2>/dev/null || true` ``
|
|
248
248
|
|
|
249
249
|
This produces the `## Tasks` section with:
|
|
250
250
|
- Globally sequential T-ids (no gaps, no duplicates) — AC-4
|