From kaiten-connector
List and search cards on a Kaiten board with filtering. Use when the user asks about cards, tasks, or items on a board.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kaiten-connector:kaiten-cardsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fetch and display cards from a Kaiten board with optional filtering.
Fetch and display cards from a Kaiten board with optional filtering.
KAITEN_HOST and KAITEN_TOKEN must be set$ARGUMENTS should contain board_id and optionally filtersParse $ARGUMENTS for:
--column <id>, --member <id>, --tag <name>, --type <id>, --limit <n> (default 50)curl -s -H "Authorization: Bearer $KAITEN_TOKEN" \
"https://$KAITEN_HOST/api/latest/cards?board_id={board_id}&limit={limit}&offset={offset}"
Additional query parameters based on filters:
column_id — filter by columnmember_id — filter by assigned membercondition — filter by card state (1=active, 2=archived, 3=draft)If there are more cards than the limit, fetch additional pages using offset parameter.
Display as a table:
| ID | Title | Column | Members | Tags | Size | Created |
|---|---|---|---|---|---|---|
| ... | ... | ... | ... | ... | ... | ... |
Show total count. If results are truncated, mention how many more cards exist.
Hint the user they can use kaiten-card-details <id> to see full card 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