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
52
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.12.2
to
1.12.3
+13
dist/mcp/repomix.d.ts
import type { LocalMcpConfig } from './types';
/**
* Repomix MCP using the built-in MCP mode
*
* Runs `repomix --mcp` locally via npx, which exposes tools:
* - pack_codebase: Pack a local directory for AI analysis
* - pack_remote_repository: Clone and pack a remote GitHub repo
* - grep_repomix_output: Search patterns in packed output
*
* Replaces the old tool-based `execSync` approach with a proper
* non-blocking MCP server (separate process, async communication).
*/
export declare const repomixMcp: LocalMcpConfig;
+1
-1
{
"name": "@hung319/opencode-hive",
"version": "1.12.2",
"version": "1.12.3",
"type": "module",

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

import { type ToolDefinition } from '@opencode-ai/plugin';
export interface RepomixArgs {
/** GitHub repository URL or user/repo shorthand */
url: string;
/** Output style: xml (default), markdown, json, plain */
style?: 'xml' | 'markdown' | 'json' | 'plain';
/** Include only files matching these glob patterns (comma-separated) */
include?: string;
/** Additional patterns to exclude (comma-separated) */
ignore?: string;
/** Extract essential code structure (classes, functions, interfaces) */
compress?: boolean;
/** Skip scanning for sensitive data */
noSecurityCheck?: boolean;
/** Strip all code comments before packing */
removeComments?: boolean;
/** Remove blank lines from all files */
removeEmptyLines?: boolean;
/** Number of largest files to show in summary (default: 5) */
topFilesLen?: number;
}
export declare const repomixTool: ToolDefinition;

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