Any model. Works with Claude, GPT, and open-source models.
Run anywhere. Webhooks, built-in cron, CI/CD, Mac, Linux, Windows or Docker.
No SDK required. Define your agent in Markdown.
Quick Start β’ Example β’ Deploy β’ Documentation
# Try it now - no install needed
ANTHROPIC_API_KEY=sk-ant-... npx agentuse@latest run https://agentuse.io/hello.agentuseCreate my-agent.agentuse:
---
model: anthropic:claude-sonnet-4-5
---
Generate a daily motivation quote with a tech fact.
Format as JSON with 'quote' and 'fact' fields.Run it:
agentuse run my-agent.agentuseA real-world agent with MCP tools:
---
model: anthropic:claude-sonnet-4-5
mcpServers:
postgres:
command: npx
args: ["-y", "@modelcontextprotocol/server-postgres"]
requiredEnvVars: [DATABASE_URL]
---
Query the sales table for yesterday's metrics.
Generate an executive summary with trends.Webhook Server - Trigger agents via HTTP:
agentuse serve
curl -X POST http://localhost:12233/run -d '{"agent": "my-agent"}'Scheduled Agents - Run on a schedule:
---
schedule: "0 9 * * *"
---Works with Anthropic (Claude), OpenAI (GPT), and OpenRouter for open source models like GLM and Minimax. Switch models with a single line change.
Trigger agents via HTTP webhooks. Integrate with Zapier, Make, GitHub Actions, or any system that can POST. Supports streaming responses for real-time output.
Schedule agents to run automatically with built-in cron support. Use intervals for sub-daily (5m, 2h) or cron expressions for daily+ (0 9 * * *).
Define agents as .agentuse files with YAML frontmatter and plain English instructions. Version control, code review, and collaborate on agents like any other code.
Connect to any Model Context Protocol server. Access databases, APIs, file systems, and external services through a standardized tool interface.
Compose complex workflows by delegating tasks to specialized child agents. Parent agents can spawn sub-agents with isolated contexts and step limits.
Create reusable agent instructions as SKILL.md files. Reuse your existing Claude Code skills directly - AgentUse reads from the same .claude/skills/ directories. List available skills with agentuse skills.
Full execution history with message logs, tool call traces, token usage, and timing metrics. Debug and audit agent runs with agentuse sessions.
npm install -g agentuseSet your API key:
agentuse auth loginFull guides and API reference at docs.agentuse.io
Apache 2.0