Bee Community — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Bee Community (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Open community repository for Bee by CUI Labs — public code, developer tooling, documentation, examples, and community-facing components for building with and contributing to Bee.
<!-- mcp-name: io.github.cuilabs/bee -->
| Path | What |
|---|---|
mcp/ | Bee MCP Server install instructions for Claude Desktop, Cursor, VS Code, Zed, Windsurf, OpenCode |
llms-install.md | AI-agent-readable MCP install guide (Cline & friends) |
sdks/typescript/ | Pointer + quickstart for @cuilabs/bee (live on npm) |
sdks/python/ | Pointer + quickstart for bee-sdk (live on PyPI) |
examples/typescript/ | Working @cuilabs/bee SDK examples (quickstart, streaming, vision) |
examples/python/ | Working bee-sdk examples |
CONTRIBUTING.md | How to file an issue, propose a change, or run a workshop on Bee |
# TypeScript / JavaScript / Node / Deno / Bun / browsers — live on npm
npm install @cuilabs/bee
# Python (3.10+) — live on PyPI; also ships the `bee-mcp` MCP server
pip install bee-sdkFull install + quickstart on the marketing site: bee.cuilabs.io/docs/sdks.
Bee ships an MCP server that exposes 11 domain-specialised tools (chat, code explanation, security audit, threat modelling, quantum circuits, smart-contract review, paper critique, …) over the Model Context Protocol. Listed on the official MCP Registry as io.github.cuilabs/bee.
pip install bee-sdk # provides the `bee-mcp` console script
export BEE_API_KEY=bee_sk_… # create at bee.cuilabs.io/app/account/api-keys
bee-mcp # stdio transport — what every desktop client usesSee mcp/ for per-client configs, or the marketing page at bee.cuilabs.io/docs/mcp.
import { BeeClient } from "@cuilabs/bee";
const bee = new BeeClient({ apiKey: process.env.BEE_API_KEY! });
const out = await bee.chat.completions.create({
model: "bee-cell",
messages: [{ role: "user", content: "What is Bee?" }],
});
console.log(out.choices[0].message.content);Get an API key at bee.cuilabs.io/app/account/api-keys.
Apache-2.0 — © CUI Labs Pte. Ltd.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.