gsdd-cli 0.29.0 → 0.29.1

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.
@@ -25,8 +25,10 @@ export function runTruthChecks(planningDir, frameworkDir, actualCheckIds, option
25
25
 
26
26
  if (existsSync(designPath)) {
27
27
  const documentedIds = extractHealthTableIds(readFileSync(designPath, 'utf-8'));
28
- const missingFromDesign = actualCheckIds.filter((id) => !documentedIds.includes(id));
29
- const extraInDesign = documentedIds.filter((id) => !actualCheckIds.includes(id));
28
+ const retiredDocumentedIds = new Set(['E10', 'W12']);
29
+ const liveDocumentedIds = documentedIds.filter((id) => !retiredDocumentedIds.has(id));
30
+ const missingFromDesign = actualCheckIds.filter((id) => !liveDocumentedIds.includes(id));
31
+ const extraInDesign = liveDocumentedIds.filter((id) => !actualCheckIds.includes(id));
30
32
  if (missingFromDesign.length > 0 || extraInDesign.length > 0) {
31
33
  const parts = [];
32
34
  if (missingFromDesign.length > 0) parts.push(`missing in DESIGN.md: ${missingFromDesign.join(', ')}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gsdd-cli",
3
- "version": "0.29.0",
3
+ "version": "0.29.1",
4
4
  "description": "Workspine — plan, execute, and verify AI-assisted work from files in your repo, with proof before done. Published as gsdd-cli.",
5
5
  "type": "module",
6
6
  "bin": {