From kaiten-connector
List all spaces and boards from Kaiten. Use when the user asks about their Kaiten boards, spaces, or wants to see available boards.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kaiten-connector:kaiten-boardsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fetch and display all spaces and boards from the user's Kaiten instance.
Fetch and display all spaces and boards from the user's Kaiten instance.
Ensure environment variables are set:
KAITEN_HOST — Kaiten domain (e.g. mycompany.kaiten.ru)KAITEN_TOKEN — API bearer tokenIf either is missing, ask the user to configure them.
curl -s -H "Authorization: Bearer $KAITEN_TOKEN" \
"https://$KAITEN_HOST/api/latest/spaces"
curl -s -H "Authorization: Bearer $KAITEN_TOKEN" \
"https://$KAITEN_HOST/api/latest/space/{space_id}/boards"
Display as a structured table:
| Space | Space ID | Board | Board ID |
|---|---|---|---|
| ... | ... | ... | ... |
If $ARGUMENTS is provided, filter results by the argument (search by name).
Hint the user that they can use /kaiten board <id> to see board details.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub stillfrozen/kaiten-connector --plugin kaiten-connector