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

@bundy-lmw/hive-core

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bundy-lmw/hive-core

Hive - Multi-Agent Collaboration Framework. Like bees collaborating efficiently, an AI Agent SDK.

latest
Source
npmnpm
Version
1.0.24
Version published
Maintainers
1
Created
Source

@bundy-lmw/hive-core

Hive - Multi-Agent Collaboration Framework. Like bees collaborating efficiently, an AI Agent SDK.

Features

  • Multi-Provider Support - OpenAI, Anthropic, DeepSeek, Google, Mistral, xAI, and any OpenAI-compatible API
  • Agent System - Explore / Plan / General sub-agents with tool delegation
  • Plugin System - Extensible plugin architecture with channel abstraction
  • Session Persistence - SQLite-based session storage
  • Built-in Tools - Bash, File, Glob, Grep, Web Search, Web Fetch, Ask User
  • Hooks - Lifecycle event hooks for tool calls, capabilities, and workflows
  • Skills - Markdown-based skill definitions with YAML frontmatter
  • Message Bus - Pub/sub event system for inter-component communication
  • Schedule Engine - Cron-based task scheduling with push notifications

Quick Start

npm install @bundy-lmw/hive-core
import { Agent } from '@bundy-lmw/hive-core'

const agent = new Agent({
  provider: {
    id: 'glm',
    apiKey: process.env.GLM_API_KEY!,
    model: 'glm-4-flash',
    baseUrl: 'https://open.bigmodel.cn/api/coding/paas/v4',
  },
})

const result = await agent.dispatch('Hello, world!')
console.log(result.text)

Documentation

Full documentation: hive/README.md

License

MIT

FAQs

Package last updated on 03 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts