kanban-app
Installation
SKILL.md
/kanban-app
Launch an interactive web app to visually manage the kanban board.
Instructions
-
Verify
KANBAN.mdexists in the current working directory. If not, tell the user to run/kanban-initfirst. -
Ask the user where to install the kanban app dependencies. Suggest two options:
- Skill directory (default) — install inside
{{SKILL_DIR}}. Keeps the user's project clean, but requires using--prefixto run. - Project directory — install into the current working directory. Adds
vite,react, etc. to the project's owndevDependencies.
- Skill directory (default) — install inside
-
Based on their choice:
- Skill directory: Check for
node_modulesin{{SKILL_DIR}}. If not present, runnpm installin{{SKILL_DIR}}. - Project directory: Copy
package.json,tsconfig.json, andvite.config.tsfrom{{SKILL_DIR}}into the current working directory (warn before overwriting any existing files). Then runnpm install.
- Skill directory: Check for
-
Ask if they'd like to add a
kanbanscript to theirpackage.json. If yes:- Read the project's
package.json. - Add a script entry:
"kanban": "KANBAN_FILE=\"$(pwd)/KANBAN.md\" vite --config {{path_to_vite_config}}"- If they installed to the skill directory, use:
vite --config {{SKILL_DIR}}/vite.config.ts --root {{SKILL_DIR}}/web - If they installed to the project directory, use:
vite
- If they installed to the skill directory, use:
- Write the updated
package.json. - Tell them they can now run
npm run kanbananytime to launch the board.
- Read the project's
-
Start the Vite dev server:
- Skill directory install:
KANBAN_FILE="$(pwd)/KANBAN.md" npm run dev --prefix {{SKILL_DIR}} - Project directory install:
KANBAN_FILE="$(pwd)/KANBAN.md" npm run dev
Run this in the background so the user can continue using the CLI.
- Skill directory install:
-
Tell the user:
- The board app is running at http://localhost:5555
- They can drag and drop cards between columns and reorder within columns
- They can add new cards, edit existing ones, and delete cards
- All changes are saved directly to
KANBAN.md - To stop the server, they can press
Ctrl+Cin the terminal or kill the background process - If they added the script: they can start the app next time with
npm run kanban
Weekly Installs
2
Repository
charlieclark/sk…l-kanbanFirst Seen
Feb 5, 2026
Security Audits
Installed on
amp2
opencode2
kimi-cli2
codex2
github-copilot2
claude-code2