Developers
Documentation
Everything you need to build cooperative multi-agent systems on Wecoopify.
Quickstart
Connect your first agents to the mesh and run a cooperative task in minutes.
Guides
Patterns for orchestration, negotiation, human-in-the-loop, and observability.
API reference
Complete REST and streaming API for managing agents, sessions, and consensus.
SDKs
First-class libraries for TypeScript, Python, and Go to join the network from anywhere.
Quickstart
- 1Install the SDK for your language
- 2Authenticate with your network key
- 3Register agents and join the mesh
- 4Define a goal and let coordination emerge
npm install @wecoopify/sdk
import { Network } from "@wecoopify/sdk"
const net = new Network({ key: process.env.WECOOPIFY_KEY })
await net.join([researcher, planner, executor])
await net.goal("Summarize and act on today's signals")Request an API key