USE GUIDE — AGENT ZERO

Main takeaway: give scoped tasks, clear output format, and success criteria

Docker runs Agent Zero in a portable container so setup is consistent on Windows, macOS, and Linux.

WINDOWS / MACOS / LINUX

Check running container

docker ps

Expected result: you see agent0ai/agent-zero in the running container list.

UI

Open local app

http://localhost:50001

Expected result: Agent Zero interface opens and accepts a task prompt.

FIRST TASK

Use a structured prompt

Goal: summarize today's support tickets.
Context: queue from 8 AM to now.
Output: top 5 issue themes and one action each.
Constraints: avoid guessing missing data.

Expected result: output is focused, auditable, and easier to action than a vague prompt.

QUALITY CHECK

Fast review checklist

Before accepting output, confirm: does it answer the goal, cite available context, avoid invented facts, and end with a clear next action. If one item fails, refine the prompt and rerun.

STOP

Stop container after work

docker stop $(docker ps -q --filter ancestor=agent0ai/agent-zero)

Expected result: container stops and machine resources are freed.

TROUBLESHOOTING

Common fixes

If localhost:50001 fails, rerun container with docker run -p 50001:80 agent0ai/agent-zero.

If port 50001 is busy, use -p 50002:80 and open that port in browser.

If image is missing, run docker pull agent0ai/agent-zero.