From kaiten-connector
Fetch and display the full structure of a specific Kaiten board including columns, subcolumns, and lanes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kaiten-connector:kaiten-board-detailsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fetch and display the full structure of a specific Kaiten board including columns, subcolumns, and lanes.
Fetch and display the full structure of a specific Kaiten board including columns, subcolumns, and lanes.
KAITEN_HOST and KAITEN_TOKEN must be set$ARGUMENTS)If no board ID is provided, ask the user for it or suggest running kaiten-boards first.
curl -s -H "Authorization: Bearer $KAITEN_TOKEN" \
"https://$KAITEN_HOST/api/latest/board/$ARGUMENTS"
curl -s -H "Authorization: Bearer $KAITEN_TOKEN" \
"https://$KAITEN_HOST/api/latest/board/$ARGUMENTS/columns"
curl -s -H "Authorization: Bearer $KAITEN_TOKEN" \
"https://$KAITEN_HOST/api/latest/boards/$ARGUMENTS/lanes"
curl -s -H "Authorization: Bearer $KAITEN_TOKEN" \
"https://$KAITEN_HOST/api/latest/column/{column_id}/subcolumns"
Display the board structure as a tree:
Board: "Board Name" (ID: 123)
├── Column: "To Do" (ID: 1, WIP: 5)
│ ├── Subcolumn: "New" (ID: 10)
│ └── Subcolumn: "Refined" (ID: 11)
├── Column: "In Progress" (ID: 2, WIP: 3)
└── Column: "Done" (ID: 3)
Lanes:
├── Lane: "Team A" (ID: 100)
└── Lane: "Team B" (ID: 101)
Include WIP limits where set. Hint the user they can use kaiten-cards to see cards on this board.
npx claudepluginhub stillfrozen/kaiten-cursor-connector --plugin kaiten-connectorCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.