sinapse-ai 7.3.3 → 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.
- package/.sinapse-ai/data/entity-registry.yaml +763 -765
- package/.sinapse-ai/development/templates/chrome-brain/knowledge-base/chrome-brain.md +161 -0
- package/.sinapse-ai/development/templates/chrome-brain/rules/chrome-brain-autoload.md +56 -0
- package/.sinapse-ai/development/templates/chrome-brain/scripts/chrome-brain-log.sh +67 -0
- package/.sinapse-ai/development/templates/chrome-brain/scripts/chrome-debug.sh +232 -0
- package/.sinapse-ai/development/templates/chrome-brain/scripts/chrome-ensure.sh +210 -0
- package/.sinapse-ai/development/templates/chrome-brain/squad-integrations/squad-animations.md +50 -0
- package/.sinapse-ai/development/templates/chrome-brain/squad-integrations/squad-brand.md +42 -0
- package/.sinapse-ai/development/templates/chrome-brain/squad-integrations/squad-claude.md +49 -0
- package/.sinapse-ai/development/templates/chrome-brain/squad-integrations/squad-cloning.md +50 -0
- package/.sinapse-ai/development/templates/chrome-brain/squad-integrations/squad-commercial.md +41 -0
- package/.sinapse-ai/development/templates/chrome-brain/squad-integrations/squad-content.md +45 -0
- package/.sinapse-ai/development/templates/chrome-brain/squad-integrations/squad-copy.md +44 -0
- package/.sinapse-ai/development/templates/chrome-brain/squad-integrations/squad-cybersecurity.md +42 -0
- package/.sinapse-ai/development/templates/chrome-brain/squad-integrations/squad-design.md +50 -0
- package/.sinapse-ai/development/templates/chrome-brain/squad-integrations/squad-growth.md +45 -0
- package/.sinapse-ai/development/templates/chrome-brain/squad-integrations/squad-paidmedia.md +47 -0
- package/.sinapse-ai/development/templates/chrome-brain/squad-integrations/squad-product.md +49 -0
- package/.sinapse-ai/development/templates/chrome-brain/squad-integrations/squad-research.md +41 -0
- package/.sinapse-ai/development/templates/chrome-brain/squad-integrations/squad-storytelling.md +41 -0
- package/.sinapse-ai/install-manifest.yaml +81 -5
- package/CHROME-BRAIN-INSTALL.md +93 -0
- package/README.md +28 -1
- package/bin/modules/chrome-brain-installer.js +757 -0
- package/bin/sinapse.js +18 -0
- package/install-chrome-brain.sh +1328 -0
- package/package.json +3 -1
- package/packages/installer/src/wizard/index.js +24 -0
- package/packages/sinapse-install/src/capabilities/chrome-brain.js +962 -0
- package/packages/sinapse-install/src/installer.js +60 -2
- package/sinapse/agents/sinapse-orqx.md +27 -0
package/bin/sinapse.js
CHANGED
|
@@ -85,6 +85,11 @@ VALIDATION:
|
|
|
85
85
|
sinapse validate --repair --dry-run # Preview repairs
|
|
86
86
|
sinapse validate --detailed # Show detailed file list
|
|
87
87
|
|
|
88
|
+
CAPABILITIES:
|
|
89
|
+
sinapse chrome-brain install # Install Chrome Brain (browser automation)
|
|
90
|
+
sinapse chrome-brain uninstall # Remove Chrome Brain
|
|
91
|
+
sinapse chrome-brain status # Check Chrome Brain installation
|
|
92
|
+
|
|
88
93
|
CONFIGURATION:
|
|
89
94
|
sinapse config show # Show resolved configuration
|
|
90
95
|
sinapse config show --debug # Show with source annotations
|
|
@@ -960,6 +965,19 @@ async function main() {
|
|
|
960
965
|
}
|
|
961
966
|
break;
|
|
962
967
|
|
|
968
|
+
case 'chrome-brain': {
|
|
969
|
+
// Chrome Brain capability management - Story 7.4.1
|
|
970
|
+
const chromeBrainArgs = args.slice(1);
|
|
971
|
+
try {
|
|
972
|
+
const { runChromeBrain } = require('./modules/chrome-brain-installer');
|
|
973
|
+
await runChromeBrain(chromeBrainArgs);
|
|
974
|
+
} catch (error) {
|
|
975
|
+
console.error(`Error in chrome-brain: ${error.message}`);
|
|
976
|
+
process.exit(1);
|
|
977
|
+
}
|
|
978
|
+
break;
|
|
979
|
+
}
|
|
980
|
+
|
|
963
981
|
case 'install': {
|
|
964
982
|
// Install in current project with flag support
|
|
965
983
|
const installArgs = args.slice(1);
|