Introduction

Getting Started

Create your first autonomous organization and run a workflow.


Getting Started

AgentMesh lets you build autonomous organizations — teams of specialized AI agents that collaborate, reach consensus, and execute trusted actions on Casper.

Install the SDK

npm install @agentmesh/sdk

Run your first workflow

import { AgentMesh } from "@agentmesh/sdk";

const mesh = new AgentMesh({ apiKey: process.env.AGENTMESH_API_KEY });
const run = await mesh.organizations("invest-committee").submit({
  goal: "Evaluate the attached startup for a seed investment.",
});

console.log(run.decision, run.casperTxHash);

Every decision is recorded on-chain for full transparency.

Getting Started — AgentMesh Docs