agentcmd
Getting Started

Quick Start

Get from zero to your first AI workflow in 5 minutes.

Start the Server

Launch the agentcmd server:

npx agentcmd start

This starts two services:

ServicePortPurpose
AgentCmd Server4100Web UI, API server, and WebSocket
Inngest Dev UI8288Workflow execution dashboard

Output:

Server Output
✓ Server running on http://localhost:4100
✓ Inngest Dev UI on http://localhost:8288

agentcmd is ready! Open http://localhost:4100

Keep this terminal open - It shows live logs from workflow executions. Open a new tab for other commands.

For production use, run with pm2: pm2 start "npx agentcmd start" --name agentcmd. See Deployment for full setup.

Importing Projects

agentcmd automatically imports projects from your Claude Code sessions.

When you start the server, it scans your Claude Code session history and creates projects for each codebase you've worked on. This means you can immediately start running workflows on your existing projects without manual setup.

Next Steps


UI tour complete! Continue to Build Your First Workflow to write a workflow from scratch.