Skip to content

cocktailpeanut/vibe-kanban.pinokio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vibe Kanban (Pinokio Launcher)

What this does

  • 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.

How to use

  1. Click Install to fetch the npm package.
  2. Click Start to launch the server.
  3. Click Open Web UI once the URL appears.

Configuration

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.

Programmatic access (HTTP)

Vibe Kanban does not publish a stable public API. For automation or health checks, you can request the base URL shown in the UI.

JavaScript

const res = await fetch("http://127.0.0.1:PORT/");
const html = await res.text();
console.log(html.slice(0, 200));

Python

import requests

res = requests.get("http://127.0.0.1:PORT/")
print(res.status_code, res.text[:200])

Curl

curl -i http://127.0.0.1:PORT/

Replace PORT with the port shown in the Pinokio UI.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors