Available

Bee SDK

Developer tools for creating custom agents, tools, templates, and vertical integrations for the BeeSystem platform.

TypeScript / JavaScript

agent.tstypescript
import { BeeAgent, Tool } from "@beesystem/sdk";

const agent = new BeeAgent({
  name: "research-agent",
  description: "Reads, summarizes, and synthesizes research",
  tools: [webSearch, documentReader, summarizer],
  memory: { type: "session", maxTokens: 8192 },
});

await agent.run({
  task: "Summarize the latest papers on agent orchestration",
});

Python

agent.pypython
from beesystem import BeeAgent, Tool, Memory

agent = BeeAgent(
    name="workflow-agent",
    description="Automates business workflows",
    tools=[api_connector, document_writer],
    memory=Memory(type="persistent"),
)

result = await agent.run(
    task="Process and route incoming support requests"
)

Custom Agent Builders

Create fully custom agents with typed configuration and behavioral constraints.

Tool Connectors

Build tool connectors for any external API, database, or service.

Template System

Create and publish reusable agent templates for specific use cases.

Vertical Integrations

Build domain-specific integrations and publish to the agent ecosystem.

Install

npmbash
npm install @beesystem/sdk
pipbash
pip install beesystem-sdk
gobash
go get github.com/beesystem/sdk-go