DolphinClaw mascot

DolphinClaw

LET AGENTS DO THE WORK.

Brain

Watch Agents Work in Real Time

Brain is DolphinClaw’s live visualization layer. Observe agents executing tasks, calling tools, and collaborating with other agents as workflows unfold in real time. Follow every step with live logs, dependency graphs, and execution flows.

Real-time monitoring
Agent dependency visualization
Instant logs and results
Visual debugging of complex flows
Agent Core
LLM Core
Data Agent
API Agent
Analysis
Storage
Output Agent
dolphinclaw.agent.ts
1const agent = {
2 name: "daily-ai-reporter",
3 description: "AI agent that sends daily reports",
4
5 async setup(): Promise<void> {
6 },
7
8 async run(input?: { topic?: string }) {
9 const topic = input?.topic || "crypto market"
10
11 if (!invoke_claude(topic)) {
12 return {
13 success: false,
14 message: "Failed to invoke claude."
15 }
16 }
17
18 return {
19 success: true,
20 message: `Agent scheduled. Daily updates about "${topic}".`
21 }
22 }
23}
24
25export default agent
For Developers

Build. Collaborate. Share.

Built by developers. Used by everyone. DolphinClaw agents are open source, modular, and available to run or rent instantly.

100% Open Source

All agent code is open. See exactly how they work before using them.

Modular

Agents are built in modules that can be combined and reused.

Easy to Extend

Fork, modify and publish your own improved versions.

Reusable

Use existing agents as a base to create new, more specialized agents.

Marketplace

Agent Marketplace

Browse, rent, and instantly deploy autonomous open-source agents created by the community.

Fetching featured agent...