sinapse-ai 7.4.0 ā 7.4.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.
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
# - SHA256 hashes for change detection
|
|
8
8
|
# - File types for categorization
|
|
9
9
|
#
|
|
10
|
-
version: 7.4.
|
|
11
|
-
generated_at: "2026-03-
|
|
10
|
+
version: 7.4.1
|
|
11
|
+
generated_at: "2026-03-27T15:01:17.079Z"
|
|
12
12
|
generator: scripts/generate-install-manifest.js
|
|
13
13
|
file_count: 1101
|
|
14
14
|
files:
|
|
@@ -1217,7 +1217,7 @@ files:
|
|
|
1217
1217
|
type: data
|
|
1218
1218
|
size: 9586
|
|
1219
1219
|
- path: data/entity-registry.yaml
|
|
1220
|
-
hash: sha256:
|
|
1220
|
+
hash: sha256:b57be94586adc273f3f57905c2a430ecc9e0135b1101dd076b8b53829b01855f
|
|
1221
1221
|
type: data
|
|
1222
1222
|
size: 511377
|
|
1223
1223
|
- path: data/learned-patterns.yaml
|
package/package.json
CHANGED
|
@@ -1131,6 +1131,30 @@ async function runWizard(options = {}) {
|
|
|
1131
1131
|
console.log('Installation may be incomplete. Check logs in .sinapse/ directory.');
|
|
1132
1132
|
}
|
|
1133
1133
|
|
|
1134
|
+
// Chrome Brain: Auto-install browser automation capability
|
|
1135
|
+
if (answers.selectedLLM === 'claude-code' || answers.selectedLLM === 'both') {
|
|
1136
|
+
try {
|
|
1137
|
+
const chromeBrainPath = path.join(__dirname, '..', '..', '..', '..', 'bin', 'modules', 'chrome-brain-installer');
|
|
1138
|
+
const { detectChrome, installScripts, installHooks, installMcp, installKnowledgeBase } = require(chromeBrainPath);
|
|
1139
|
+
const chromePath = detectChrome();
|
|
1140
|
+
if (chromePath) {
|
|
1141
|
+
console.log('\nš§ Chrome Brain ā Installing browser automation...\n');
|
|
1142
|
+
const platform = require(chromeBrainPath).detectPlatform();
|
|
1143
|
+
installScripts(chromePath, platform);
|
|
1144
|
+
installHooks();
|
|
1145
|
+
installMcp(platform);
|
|
1146
|
+
installKnowledgeBase();
|
|
1147
|
+
console.log('\n ā
Chrome Brain installed ā all agents can now control Chrome\n');
|
|
1148
|
+
} else {
|
|
1149
|
+
console.log('\nā ļø Chrome not found ā Chrome Brain skipped');
|
|
1150
|
+
console.log(' Install Chrome and run `sinapse chrome-brain install` later\n');
|
|
1151
|
+
}
|
|
1152
|
+
} catch (error) {
|
|
1153
|
+
console.log(`\nā ļø Chrome Brain skipped: ${error.message}`);
|
|
1154
|
+
console.log(' You can install it later with: sinapse chrome-brain install\n');
|
|
1155
|
+
}
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1134
1158
|
// Apply SINAPSE branding to Claude Code CLI (so both `sinapse` and `claude` show SINAPSE branding)
|
|
1135
1159
|
if (answers.selectedLLM === 'claude-code' || answers.selectedLLM === 'both') {
|
|
1136
1160
|
try {
|