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.
- package/.sinapse-ai/install-manifest.yaml +2 -2
- package/bin/cli.js +1 -1
- package/package.json +1 -1
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
# - SHA256 hashes for change detection
|
|
8
8
|
# - File types for categorization
|
|
9
9
|
#
|
|
10
|
-
version: 5.0.
|
|
11
|
-
generated_at: "2026-03-
|
|
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 = '
|
|
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');
|