Set up with an AI agent
If you work with a coding agent (Claude Code, Cursor, Copilot, Windsurf, whatever), you don't have to hand-wire bull-board. Paste the prompt below and let the agent do the mechanical part: install the packages, mount the adapter, match the base path. Then read the diff.
Copy this prompt
Swap the base path (/admin/queues) for wherever you want the dashboard to live. The agent should handle the rest, including the one thing people get wrong by hand: keeping setBasePath and the mount path identical.
Point your agent at the current docs
This documentation site publishes machine-readable versions of itself, generated on every build:
llms.txt: a concise index of every page.llms-full.txt: the full text of the docs in one file.
Feed either to an agent (or an "ask the docs" tool) so it works from the current API surface instead of whatever it remembers from training. The llms-full.txt version is the one to use when you want it to get option names and defaults exactly right.
After the agent is done
The agent gets you mounted. These are on you:
- Add auth before anything reachable from outside localhost. Agents will happily leave the dashboard wide open.
- Read-only mode if the people opening it shouldn't be retrying or obliterating queues.
- Alerting: the dashboard shows failures, it doesn't tell you about them. Wire that separately.
If the page loads but looks broken, it's almost always a base-path mismatch. See Troubleshooting.