specsmd 0.1.14 → 0.1.16

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.
@@ -10,9 +10,9 @@
10
10
  * - Timestamp format (ISO 8601 without milliseconds)
11
11
  *
12
12
  * Usage:
13
- * node .specsmd/aidlc/scripts/artifact-validator.js
14
- * node .specsmd/aidlc/scripts/artifact-validator.js --json
15
- * node .specsmd/aidlc/scripts/artifact-validator.js --fix
13
+ * node .specsmd/aidlc/scripts/artifact-validator.cjs
14
+ * node .specsmd/aidlc/scripts/artifact-validator.cjs --json
15
+ * node .specsmd/aidlc/scripts/artifact-validator.cjs --fix
16
16
  *
17
17
  * Cross-platform: Works on Linux, macOS, Windows via Node.js
18
18
  */
@@ -115,11 +115,11 @@
115
115
  *
116
116
  * From agent skill (bolt-start.md Step 10):
117
117
  *
118
- * node .specsmd/aidlc/scripts/bolt-complete.js 016-analytics-tracker
118
+ * node .specsmd/aidlc/scripts/bolt-complete.cjs 016-analytics-tracker
119
119
  *
120
120
  * With optional stage name:
121
121
  *
122
- * node .specsmd/aidlc/scripts/bolt-complete.js 016-analytics-tracker --last-stage test
122
+ * node .specsmd/aidlc/scripts/bolt-complete.cjs 016-analytics-tracker --last-stage test
123
123
  *
124
124
  * ═══════════════════════════════════════════════════════════════════════════════
125
125
  */
@@ -594,7 +594,7 @@ const lastStage = process.argv['--last-stage'] || null;
594
594
 
595
595
  if (!boltId) {
596
596
  console.error(`${colors.red}Error:${colors.reset} Bolt ID required`);
597
- console.error(`${colors.dim}Usage: node bolt-complete.js <bolt-id> [--last-stage <stage-name>]${colors.reset}`);
597
+ console.error(`${colors.dim}Usage: node bolt-complete.cjs <bolt-id> [--last-stage <stage-name>]${colors.reset}`);
598
598
  process.exit(1);
599
599
  }
600
600
 
@@ -7,8 +7,8 @@
7
7
  * Status must cascade correctly: Bolt complete → Stories complete → Unit complete → Intent complete
8
8
  *
9
9
  * Usage:
10
- * node .specsmd/aidlc/scripts/status-integrity.js
11
- * node .specsmd/aidlc/scripts/status-integrity.js --fix
10
+ * node .specsmd/aidlc/scripts/status-integrity.cjs
11
+ * node .specsmd/aidlc/scripts/status-integrity.cjs --fix
12
12
  *
13
13
  * Cross-platform: Works on Linux, macOS, Windows via Node.js
14
14
  */
@@ -577,15 +577,15 @@ const shouldFix = args.includes('--fix') || args.includes('-f');
577
577
 
578
578
  if (args.includes('--help') || args.includes('-h')) {
579
579
  console.log(`
580
- Usage: node status-integrity.js [options]
580
+ Usage: node status-integrity.cjs [options]
581
581
 
582
582
  Options:
583
583
  --fix, -f Automatically fix status inconsistencies
584
584
  --help, -h Show this help message
585
585
 
586
586
  Examples:
587
- node .specsmd/aidlc/scripts/status-integrity.js
588
- node .specsmd/aidlc/scripts/status-integrity.js --fix
587
+ node .specsmd/aidlc/scripts/status-integrity.cjs
588
+ node .specsmd/aidlc/scripts/status-integrity.cjs --fix
589
589
  `);
590
590
  process.exit(0);
591
591
  }
@@ -194,7 +194,7 @@ If the bolt type specifies automatic validation criteria, follow those rules.
194
194
  ┌─────────────────────────────────────────────────────────────┐
195
195
  │ FINAL STAGE DETECTED │
196
196
  │ → Re-read Step 10 NOW │
197
- │ → You MUST run: node .specsmd/aidlc/scripts/bolt-complete.js
197
+ │ → You MUST run: node .specsmd/aidlc/scripts/bolt-complete.cjs
198
198
  │ → Do NOT manually edit story files │
199
199
  └─────────────────────────────────────────────────────────────┘
200
200
  ```
@@ -235,7 +235,7 @@ stages_completed:
235
235
  ⛔ HARD GATE - SCRIPT EXECUTION REQUIRED
236
236
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
237
237
  You CANNOT report bolt completion without:
238
- 1. Running the bolt-complete.js script
238
+ 1. Running the bolt-complete.cjs script
239
239
  2. Showing the script output to the user
240
240
 
241
241
  If you skip this, the memory-bank becomes inconsistent.
@@ -245,7 +245,7 @@ Do NOT manually edit story files - the script handles everything.
245
245
  **Run this command:**
246
246
 
247
247
  ```bash
248
- node .specsmd/aidlc/scripts/bolt-complete.js {bolt-id}
248
+ node .specsmd/aidlc/scripts/bolt-complete.cjs {bolt-id}
249
249
  ```
250
250
 
251
251
  **What this command does (deterministically):**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "specsmd",
3
- "version": "0.1.14",
3
+ "version": "0.1.16",
4
4
  "description": "Multi-agent orchestration system for AI-native software development. Delivers AI-DLC, Agile, and custom SDLC flows as markdown-based agent systems.",
5
5
  "main": "lib/installer.js",
6
6
  "bin": {