Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement →
Sign In

@hung319/opencode-hive

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hung319/opencode-hive - npm Package Compare versions

Comparing version
1.10.8
to
1.10.9
+5
-4
bin/doctor.ts

@@ -526,3 +526,3 @@ #!/usr/bin/env bun

status: 'ready',
version: '1.10.8',
version: '1.10.9',
summary: getSystemInfo(),

@@ -789,4 +789,5 @@ checks: {

// Add to shell config if needed
const pathEntry = 'export PATH="/root/.local/bin:$PATH"';
// Add to shell config if needed - use targetPath/bin dynamically
const targetBin = path.join(targetPath, 'bin');
const pathEntry = `export PATH="${targetBin}:$PATH"`;
const shellConfigs = [

@@ -804,3 +805,3 @@ { path: path.join(process.env.HOME || '', '.bashrc'), shebang: '# bash' },

const content = fs.readFileSync(config.path, 'utf-8');
if (!content.includes('/root/.local/bin')) {
if (!content.includes(targetBin)) {
fs.appendFileSync(config.path, `\n# Added by Hive Doctor\n${pathEntry}\n`);

@@ -807,0 +808,0 @@ pathAdded = true;

{
"name": "@hung319/opencode-hive",
"version": "1.10.8",
"version": "1.10.9",
"type": "module",

@@ -5,0 +5,0 @@ "description": "OpenCode plugin for Agent Hive - from vibe coding to hive coding",

Sorry, the diff of this file is too big to display