Documentation v1.2
Build+ Documentation
Everything you need to integrate the Control Plane into your agentic stack. SDKs for Go, Python, and TypeScript.
⌘K
Choose Your SDK
First-class support for your preferred language. All SDKs are open-source and actively maintained.
🔵
Go SDK
v1.2.0High-performance SDK for Go applications
go get github.com/build+-os/build+-go
🐍
Python SDK
v0.2.0Pythonic interface for ML pipelines
pip install build+-sdk
💙
TypeScript SDK
v1.0.5Type-safe SDK for Node.js & browsers
npm install build+-os
Explore the Docs
Comprehensive guides and references for every aspect of Build+.
Quick Start
Get Running in Minutes
Our SDKs handle the complexity of memory management, policy enforcement, and audit logging. Focus on building your agent logic.
- Automatic policy validation
- Built-in memory persistence
- Full audit trail logging
- Type-safe API bindings
example.ts
import { Build+Client } from '@build+-os';
// Initialize the Build+ client
const client = new Build+Client({
apiKey: process.env.BUILD+_API_KEY, // Optional if set in env
endpoint: 'https://api.build+-os.com' // Optional, defaults to production
});
// Follow: https://www.npmjs.com/package/build+-os?activeTab=readme
// Create an agent with policy constraints
const agent = await build+.agents.create({
name: 'data-processor',
policies: ['no-pii-exposure', 'rate-limit-100'],
memory: {
type: 'episodic',
retention: '30d'
}
});
// Execute with full audit trail
const result = await agent.execute({
task: 'Process customer feedback',
context: { batchId: 'batch-123' }
});
console.log(result.decision); // Deterministic outputPopular Resources
Curated guides and articles to help you get the most out of Build+.
Ready to Build Safer Agents?
Join the developers using Build+ to build the next generation of AI applications with built-in safety guarantees.