feat(mise/tools): add vibe-kanban

This commit is contained in:
2025-08-17 01:10:58 +01:00
parent 753b4cec41
commit 124fcd921f
2 changed files with 13 additions and 0 deletions

12
bin/vk Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
export BACKEND_PORT=34802
if command -v vibe-kanban >/dev/null 2>&1; then
exec vibe-kanban "$@"
elif command -v npx >/dev/null 2>&1; then
exec npx vibe-kanban "$@"
else
echo "Neither vibe-kanban nor npx is installed"
exit 1
fi