speccrew 0.6.55 → 0.6.56
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.
|
@@ -132,7 +132,7 @@ Stage 4: System Summary
|
|
|
132
132
|
<field name="max_concurrent_workers" required="false" type="number" default="5" desc="Maximum parallel Worker count"/>
|
|
133
133
|
<field name="workspace_path" required="true" type="string" desc="Absolute path to speccrew-workspace directory"/>
|
|
134
134
|
<field name="sync_state_bizs_dir" required="true" type="string" desc="Absolute path to knowledges/base/sync-state/knowledge-bizs/"/>
|
|
135
|
-
<field name="
|
|
135
|
+
<field name="ide_skills_dir" required="true" type="string" desc="Absolute path to IDE-specific skills directory (e.g., .qoder/skills/, .cursor/skills/, .claude/skills/) where skill scripts are deployed"/>
|
|
136
136
|
<field name="configs_dir" required="true" type="string" desc="Absolute path to docs/configs/ directory"/>
|
|
137
137
|
<field name="graph_root" required="false" type="string" desc="Graph data output root path (absolute path preferred)" default="${workspace_path}/knowledges/bizs/graph"/>
|
|
138
138
|
<field name="completed_dir" required="true" type="string" desc="Marker file output directory for Worker results (absolute path required)"/>
|
|
@@ -324,7 +324,7 @@ Continue with knowledge base generation?
|
|
|
324
324
|
<block type="loop" id="S1b-L1" over="${platforms}" as="platform" desc="Generate Feature inventory for each platform">
|
|
325
325
|
<!-- Step 1: Read platform mapping config -->
|
|
326
326
|
<block type="task" id="S1b-B1" action="run-script" status="pending" desc="Read platform mapping config">
|
|
327
|
-
<field name="command">node "${
|
|
327
|
+
<field name="command">node "${ide_skills_dir}/speccrew-knowledge-bizs-init-features/scripts/generate-inventory.js"</field>
|
|
328
328
|
<field name="arg">--entryDirsFile</field>
|
|
329
329
|
<field name="arg">${sync_state_bizs_dir}/entry-dirs-${platform.platformId}.json</field>
|
|
330
330
|
<field name="output" var="features_${platform.platformId}"/>
|
|
@@ -364,7 +364,7 @@ Continue with knowledge base generation?
|
|
|
364
364
|
<branch test="${sync_mode} == 'incremental'" name="Incremental mode">
|
|
365
365
|
<!-- Step 1: Execute Feature merge -->
|
|
366
366
|
<block type="task" id="S1c-B1" action="run-script" status="pending" desc="Merge new and existing Feature inventories">
|
|
367
|
-
<field name="command">node "${
|
|
367
|
+
<field name="command">node "${ide_skills_dir}/speccrew-knowledge-bizs-dispatch/scripts/merge-features.js"</field>
|
|
368
368
|
<field name="arg">--syncStatePath</field>
|
|
369
369
|
<field name="arg">${sync_state_bizs_dir}</field>
|
|
370
370
|
<field name="arg">--completedDir</field>
|
|
@@ -385,7 +385,7 @@ Continue with knowledge base generation?
|
|
|
385
385
|
|
|
386
386
|
<!-- Step 3: Mark stale Features -->
|
|
387
387
|
<block type="task" id="S1c-B2" action="run-script" status="pending" desc="Clean up documents and markers for deleted Features">
|
|
388
|
-
<field name="command">node "${
|
|
388
|
+
<field name="command">node "${ide_skills_dir}/speccrew-knowledge-bizs-dispatch/scripts/mark-stale.js"</field>
|
|
389
389
|
<field name="arg">--syncStatePath</field>
|
|
390
390
|
<field name="arg">${sync_state_bizs_dir}</field>
|
|
391
391
|
<field name="arg">--completedDir</field>
|
|
@@ -446,7 +446,7 @@ Continue with knowledge base generation?
|
|
|
446
446
|
|
|
447
447
|
<!-- Step 1: Get next batch -->
|
|
448
448
|
<block type="task" id="S2-B1" action="run-script" status="pending" desc="Get next batch of pending Features">
|
|
449
|
-
<field name="command">node "${
|
|
449
|
+
<field name="command">node "${ide_skills_dir}/speccrew-knowledge-bizs-dispatch/scripts/batch-orchestrator.js" get-batch</field>
|
|
450
450
|
<field name="arg">--syncStatePath</field>
|
|
451
451
|
<field name="arg">${sync_state_bizs_dir}</field>
|
|
452
452
|
<field name="arg">--batchSize</field>
|
|
@@ -618,7 +618,7 @@ Requirements:
|
|
|
618
618
|
|
|
619
619
|
<!-- Step 3: Process batch results -->
|
|
620
620
|
<block type="task" id="S2-B3" action="run-script" status="pending" desc="Collect and process batch Worker results">
|
|
621
|
-
<field name="command">node "${
|
|
621
|
+
<field name="command">node "${ide_skills_dir}/speccrew-knowledge-bizs-dispatch/scripts/batch-orchestrator.js" process-results</field>
|
|
622
622
|
<field name="arg">--syncStatePath</field>
|
|
623
623
|
<field name="arg">${sync_state_bizs_dir}</field>
|
|
624
624
|
<field name="arg">--graphRoot</field>
|
|
@@ -839,7 +839,7 @@ Requirements:
|
|
|
839
839
|
<field name="message">Worker ${error.worker} failed: ${error.message}</field>
|
|
840
840
|
</block>
|
|
841
841
|
<block type="task" id="EH1-B1" action="run-script" desc="Update failed status">
|
|
842
|
-
<field name="command">node "${
|
|
842
|
+
<field name="command">node "${ide_skills_dir}/speccrew-knowledge-bizs-dispatch/scripts/update-feature-status.js"</field>
|
|
843
843
|
<field name="arg">--featureId</field>
|
|
844
844
|
<field name="arg">${error.feature_id}</field>
|
|
845
845
|
<field name="arg">--status</field>
|