You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@different-ai/opencode-browser

Package Overview
Dependencies
Maintainers
2
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@different-ai/opencode-browser - npm Package Compare versions

Comparing version
1.0.3
to
1.0.4
+17
-2
bin/cli.js

@@ -256,4 +256,16 @@ #!/usr/bin/env node

} else {
log(`No opencode.json found in current directory.`);
log(`Add the config above to your project's opencode.json manually.`);
const shouldCreate = await confirm(`No opencode.json found. Create one with browser config?`);
if (shouldCreate) {
try {
const config = { "$schema": "https://opencode.ai/config.json", mcp: mcpConfig };
writeFileSync(opencodeJsonPath, JSON.stringify(config, null, 2) + "\n");
success("Created opencode.json with browser MCP config");
shouldUpdateConfig = true;
} catch (e) {
error(`Failed to create opencode.json: ${e.message}`);
}
} else {
log(`Add the config above to your project's opencode.json manually.`);
}
}

@@ -285,2 +297,5 @@

${color("bright", "Logs:")} ~/.opencode-browser/logs/
${color("bright", "Test it out:")}
Open OpenCode and try: ${color("cyan", '"Navigate to google.com and take a snapshot"')}
`);

@@ -287,0 +302,0 @@ }

+1
-1
{
"name": "@different-ai/opencode-browser",
"version": "1.0.3",
"version": "1.0.4",
"description": "Browser automation for OpenCode via Chrome extension + Native Messaging. Inspired by Claude in Chrome.",

@@ -5,0 +5,0 @@ "type": "module",