Skip to content

Quickstart

.md

Get up and running with Dewee on your local machine or server in 5 minutes.

Terminal window
git clone -b main https://github.com/nextlevelbuilder/dewee.git
cd dewee
make build
./dewee onboard
source .env.local && ./dewee
Terminal window
curl http://localhost:18790/health

Expected response (internal/gateway/server.go:672 and pkg/protocol/frames.go:8):

{"status":"ok","protocol":3}
Terminal window
# Start interactive terminal chat with default agent
./dewee agent chat
Terminal window
curl -X POST http://localhost:18790/v1/chat/completions \
-H "Authorization: Bearer $GOCLAW_GATEWAY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-sonnet-4-20250514",
"messages": [{"role": "user", "content": "Hello Dewee!"}]
}'