Quick Start
Get from zero to your first AI workflow in 5 minutes.
Start the Server
Launch the agentcmd server:
npx agentcmd startThis starts two services:
| Service | Port | Purpose |
|---|---|---|
| AgentCmd Server | 4100 | Web UI, API server, and WebSocket |
| Inngest Dev UI | 8288 | Workflow execution dashboard |
Output:
✓ Server running on http://localhost:4100
✓ Inngest Dev UI on http://localhost:8288
agentcmd is ready! Open http://localhost:4100Keep 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
Build Your First Workflow
Write a simple 10-line workflow from scratch
Running Workflows
Learn the 3 ways to create and run workflows from the UI
Understand Agents
How AI agents are orchestrated with slash commands
Explore Examples
Real-world workflow templates
UI tour complete! Continue to Build Your First Workflow to write a workflow from scratch.