pypi bee-sdkstdioupdated 2mo ago
The public developer distribution for Bee, HEOSSI's governed multimodal intelligence platform. This repository contains the actual source of Bee's Apache-2.0 SDKs, MCP integration, API contracts, runnable examples, and public trust-verification material.
Bee — The Progressive Intelligence Engine 能做什么?
Bee by HEOSSI
Website | Documentation | Packages | Machine-readable package index | System status
The public developer distribution for Bee, HEOSSI's governed multimodal intelligence platform. This repository contains the actual source of Bee's Apache-2.0 SDKs, MCP integration, API contracts, runnable examples, and public trust-verification material.
This repository is generated from reviewed, public-safe paths in the Bee monorepo. MANIFEST.json records the exact source commit and content digest for every export; SHA256SUMS and the SPDX SBOM support independent artifact inspection.
Developer surface
The canonical package catalog records each public developer distribution, exact version, registry, role, license boundary, and install command. Its machine-readable companion is PACKAGE-INDEX.json. These distributions do not expose the private Bee service monorepo.
| Surface | Install or entry point | Source / contract |
|---|---|---|
| TypeScript SDK | npm install @heossihq/bee |
sdks/typescript |
| Python SDK | pip install bee-sdk |
sdks/python |
| MCP server | uvx --from bee-sdk@latest bee-mcp |
mcp · server.json |
| OpenAI-compatible API | https://api.bee.heossi.com/bee |
openapi.json · postman.json |
| BEE Code for VS Code | Heossi.beecode |
Microsoft Marketplace · Open VSX |
| Bee Code CLI | npm install -g @heossihq/beecode |
Download guide |
| PQ assurance | Signed public coverage register | trust/pq-register |
Quickstart
import { BeeClient } from "@heossihq/bee";
const bee = new BeeClient({ apiKey: process.env.BEE_API_KEY! });
const result = await bee.chat.completions.create({
model: "bee-cell",
messages: [{ role: "user", content: "Explain hybrid post-quantum TLS." }],
});
console.log(result.choices[0].message.content);
Create an API key in Bee Workspace. The free Cell tier works with both SDKs and MCP.
Repository map
api/ Versioned OpenAPI and Postman contracts
docs/ Public architecture and enterprise scenario flows
examples/ Runnable TypeScript and Python examples
mcp/ Client configuration and MCP setup
sdks/typescript/ Published @heossihq/bee package source and tests
sdks/python/ Published bee-sdk and bee-mcp source and tests
trust/pq-register/ Public PQ coverage register and offline verification tools
Enterprise evaluation paths
| Evaluator | Start here | What can be verified publicly |
|---|---|---|
| Enterprise architect | Reference architecture and scenario flows | System boundaries, governed request flow, deployment profiles, and responsibility split |
| Security or risk lead | Security policy, PQ coverage register, and diligence index | Disclosure path, released PQ claims, evidence limitations, and public control references |
| Platform engineer | API contracts, SDKs, MCP, and examples | Integration contracts, install paths, source, examples, and client configuration |
| Procurement or technical diligence | MANIFEST.json, SHA256SUMS, SPDX SBOM, and NOTICE | Export provenance, file integrity, package inventory, licensing, and the public/proprietary boundary |
Architecture and scenarios
Start with the public reference architecture, then follow the control boundary through three concrete flows:
The matching visual architecture centre is published at bee.heossi.com/docs/architecture.
Bee Code's agent path is durable, subscription-bounded, and independently metered. Workspace, mobile, desktop, SDK, and MCP requests retain their own documented execution contracts; common entitlement enforcement does not imply that every surface has local IDE tools.
Integrity and provenance
The public distribution is locally rendered from an allowlisted monorepo surface. Verify it with:
sha256sum --check SHA256SUMS
python3 scripts/verify_bee_package_index.py PACKAGE-INDEX.json
SHA256SUMS covers every exported payload file except itself and the
commit-specific MANIFEST.json. The manifest separately binds the export to
its source commit and contains a deterministic digest of the complete payload.
The SPDX document is package-level (filesAnalyzed: false); it inventories the
published SDK and MCP packages without claiming a binary or deployment SBOM.
Public and proprietary boundary
The files in this repository are Apache-2.0 licensed. Bee's model engine, orchestration plane, hosted gateway, Bee Code CLI implementation, editor-extension implementation, and commercial applications remain proprietary and are not represented as open source here. Public API and package behavior is defined by the contracts and SDK source in this repository.
Support and security
- SDK, MCP, contract, or example defect: open an issue
- Product or account support: bee.heossi.com/contact
- Vulnerability disclosure:
bee-security@heossi.com; see SECURITY.md - Service health: status · changelog · roadmap
Contributing
Read CONTRIBUTING.md, SUPPORT.md, and the Code of Conduct. Generated paths must be changed in their canonical monorepo source; community examples and documentation can be proposed here and are reconciled during the next local export.
License
Apache License 2.0 · Copyright 2026 HEOSSI (Pte.) Ltd.
安装
把 Bee — The Progressive Intelligence Engine 添加到你的客户端。选择你正在使用的那个。
claude mcp add bee-sdk -- uvx bee-sdkcodex mcp add bee-sdk -- uvx bee-sdkamp mcp add bee-sdk -- uvx bee-sdk{
"mcpServers": {
"bee-sdk": {
"command": "uvx",
"args": [
"bee-sdk"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"bee-sdk": {
"command": "uvx",
"args": [
"bee-sdk"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"bee-sdk","command":"uvx","args":["bee-sdk"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"bee-sdk": {
"command": "uvx",
"args": [
"bee-sdk"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"bee-sdk": {
"command": "uvx",
"args": [
"bee-sdk"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"bee-sdk": {
"command": "uvx",
"args": [
"bee-sdk"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"bee-sdk": {
"type": "local",
"command": "uvx",
"args": [
"bee-sdk"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"bee-sdk": {
"command": {
"path": "uvx",
"args": [
"bee-sdk"
]
}
}
}
}Add to your Zed `settings.json`.
uvx bee-sdkRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
评分
39 / 100
不完整
- 文档25/25
- 维护22/25
- 可信度6/20
- 能力0/15
- 安装体验12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 80 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 0.6.0最新 | 2026年6月12日 |
| 0.5.0 | 2026年6月12日 |
| 0.4.0 | 2026年6月12日 |
| 0.3.2 | 2026年6月11日 |
| 0.3.1 | 2026年6月11日 |
| 0.2.2 | 2026年6月11日 |
| 0.2.1 | 2026年6月11日 |