sinapse-ai 5.0.7 → 5.0.8

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.
@@ -7,8 +7,8 @@
7
7
  # - SHA256 hashes for change detection
8
8
  # - File types for categorization
9
9
  #
10
- version: 5.0.7
11
- generated_at: "2026-03-23T21:46:15.640Z"
10
+ version: 5.0.8
11
+ generated_at: "2026-03-23T22:04:39.261Z"
12
12
  generator: scripts/generate-install-manifest.js
13
13
  file_count: 1090
14
14
  files:
package/bin/cli.js CHANGED
@@ -10,7 +10,7 @@ const os = require('os');
10
10
  // ══════════════════════════════════════════════════════════════════════════════
11
11
 
12
12
  const ROOT = path.resolve(__dirname, '..');
13
- const VERSION = '1.0.0';
13
+ const VERSION = require(path.join(__dirname, '..', 'package.json')).version;
14
14
  const HOME = os.homedir();
15
15
  const SINAPSE_HOME = path.join(HOME, '.sinapse');
16
16
  const CLAUDE_COMMANDS_DIR = path.join(HOME, '.claude', 'commands', 'SINAPSE', 'agents');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sinapse-ai",
3
- "version": "5.0.7",
3
+ "version": "5.0.8",
4
4
  "description": "SINAPSE: AI-Orchestrated System for Full Stack Development — 17 squads, 161 agents",
5
5
  "bin": {
6
6
  "sinapse": "bin/sinapse.js",