- Launches Vibe Kanban locally using the official npm CLI (downloads a platform-specific binary on first run).
- Provides a web UI for orchestrating coding agents and tasks from a single dashboard.
- Click Install to fetch the npm package.
- Click Start to launch the server.
- Click Open Web UI once the URL appears.
The launcher sets HOST=127.0.0.1 and assigns a free PORT automatically. To customize ports or other environment variables, edit start.js or add overrides via Pinokio's Configure menu.
Vibe Kanban does not publish a stable public API. For automation or health checks, you can request the base URL shown in the UI.
const res = await fetch("http://127.0.0.1:PORT/");
const html = await res.text();
console.log(html.slice(0, 200));import requests
res = requests.get("http://127.0.0.1:PORT/")
print(res.status_code, res.text[:200])curl -i http://127.0.0.1:PORT/Replace PORT with the port shown in the Pinokio UI.