Quickstart
The quickstart gets you from zero to a visible OpenHands trace. The full runnable instructions live in the repo at 01-quickstart.md.
What You Are Proving
You are checking that Agent Server and Agent Canvas are working, that the model can run through the harness, and that you can inspect the resulting events.
The first run is intentionally small:
Read the current repo and write three facts about it into FACTS.txt.Minimal Flow
- Clone
OpenHands/agent-canvas. - Run
npm install. - Run
npm run dev. - Open
http://localhost:8000. - Configure the model key in settings.
- Send the first prompt.
- Inspect the trace.
The quickstart also shows how to call the same server through the Python SDK, which makes the key point visible: Canvas and the SDK are different clients on the same harness runtime.
Safety Note
The first setup is dockerless so the moving parts are easy to see. Be careful and use a scratch repo. For regular work, you will want to use a sandbox. P06 moves the harness into DockerWorkspace.
Continue
After the health check passes, take the Harness Tour.