AgentArm
Get Started
Deploy
Agents
Logs
Config

No agents yet. Install AgentArm in 15 minutes.

Framework-agnostic observability for AI agents.
Install once, monitor everything.

1. Choose your framework
OpenClaw
Official plugin
LangChain
CallbackHandler
Custom
HTTP proxy
2. Install and configure
bash
# Install AgentArm proxy
npm install -g agentarm
# Start the proxy
agentarm start --port 8080
# Configure your agent
export AGENTARM_API_KEY="your-api-key-here"
export OPENAI_BASE_URL="http://localhost:8080/v1"
3. Deploy your first agent
javascript
import { OpenAI } from "openai";
const client = new OpenAI({
baseURL: "http://localhost:8080/v1",
});
// All your agent calls are now monitored
const response = await client.chat.completions.create({...});