Loading...
Loading...
Documents the opencode-kanban CLI contract and provides correct command patterns for task/category operations.
npx skill4agent add qrafty-ai/opencode-kanban opencode-kanban-cliopencode-kanbanopencode-kanban--project--id--project <PROJECT>--project--jsonPROJECT_NOT_FOUNDtask list [--repo <REPO>] [--category-id <UUID> | --category-slug <SLUG>] [--archived]task create --title <TEXT> --branch <BRANCH> --repo <REPO> [--category-id <UUID> | --category-slug <SLUG>]task move --id <TASK_ID_OR_PREFIX> (--category-id <UUID> | --category-slug <SLUG>)task show --id <TASK_ID_OR_PREFIX>task archive --id <TASK_ID_OR_PREFIX>category listcategory create --name <TEXT> [--slug <SLUG>]category update --id <CATEGORY_ID> [--name <TEXT>] [--slug <SLUG>] [--position <N>]category delete --id <CATEGORY_ID>--category-id--category-slugtask movetask showtask movetask archivee11ad40a--repotask create# Global flags can be placed after subcommands
opencode-kanban task list --project test --json
# Create task with full workflow (worktree + tmux session + metadata)
opencode-kanban task create --project test --title "Refactor parser" --branch feature/refactor-parser --repo /path/to/repo --category-slug todo
# Move using short task id prefix from table output
opencode-kanban task move --project test --id e11ad40a --category-slug in-progress
# Show categories as pretty table
opencode-kanban category list --project testPROJECT_REQUIRED--projectPROJECT_NOT_FOUNDUNIQUE_CONSTRAINT(repo, branch)TASK_ID_AMBIGUOUSCATEGORY_SELECTOR_CONFLICT