-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
karurikwao edited this page Jul 5, 2026
·
1 revision
This page covers the fastest ways to run AgentDesk and the first demo path new users should follow.
- Node.js
20.19.0or newer. - A modern browser.
- Optional: Ollama running on
127.0.0.1:11434if you want live local model execution. - Optional: OpenAI or Anthropic API key if you want Cloud BYOK model-node execution.
Use the published package:
npx --yes --package=@papaplus/agentdesk agentdesk --port 5173Open:
http://127.0.0.1:5173
This serves the built app through the packaged loopback CLI. It is the best path for users who want the local Runtime mode available.
git clone https://github.com/karurikwao/agentdesk.git
cd agentdesk
npm install
npm run devOpen:
http://127.0.0.1:5173
Use source mode when you want to modify the app, run tests, or inspect implementation details.
npm run build
node ./bin/agentdesk.mjs --port 5173This matches the packaged runtime path closely. Use it when testing local Runtime mode changes.
The fastest useful demo is the Failure Replay Lab.
- Open AgentDesk.
- Make sure the selected workflow is
Failure Replay Lab. - Click
Run demo trace. - Click the failed
Browser Replaytrace event. - Confirm that the graph node highlights.
- Open
Debugto inspect the prompt, tool call, result, and error. - Open
Artifactsto inspect JSON, markdown, screenshot, stdout, and stderr evidence. - Open
Coststo inspect provider/model cost breakdown. - Click
Replay failed step. - Export the replay session or trace bundle ZIP.
Demo mode should work without accounts, API keys, local model servers, or MCP servers. If the demo does not run, check the browser console and run the local verification commands from the source checkout:
npm run typecheck
npm test
npm run build- Want local model execution: read Run Modes and configure Ollama.
- Want OpenAI or Anthropic calls: read LLM Configuration.
- Want MCP discovery or local commands: read MCP and Runtime.
- Want to share evidence: read Replay Sessions and Exports.