From kaiten-connector
Get full details of a Kaiten card — description, comments, checklists, blockers, children, history. Use when the user asks about a specific card or task.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kaiten-connector:kaiten-card-detailsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fetch and display comprehensive information about a specific Kaiten card.
Fetch and display comprehensive information about a specific Kaiten card.
KAITEN_HOST and KAITEN_TOKEN must be set$ARGUMENTS)If no card ID is provided, ask the user for it.
curl -s -H "Authorization: Bearer $KAITEN_TOKEN" \
"https://$KAITEN_HOST/api/latest/cards/$ARGUMENTS"
curl -s -H "Authorization: Bearer $KAITEN_TOKEN" \
"https://$KAITEN_HOST/api/latest/cards/$ARGUMENTS/comments"
curl -s -H "Authorization: Bearer $KAITEN_TOKEN" \
"https://$KAITEN_HOST/api/latest/cards/$ARGUMENTS/children"
curl -s -H "Authorization: Bearer $KAITEN_TOKEN" \
"https://$KAITEN_HOST/api/latest/cards/$ARGUMENTS/location-history"
Display the card in a structured format:
Card #ID: "Title"
━━━━━━━━━━━━━━━━━━━━━
Status: Column Name
Members: User1, User2
Tags: tag1, tag2
Size: X
Created: YYYY-MM-DD
Updated: YYYY-MM-DD
Due date: YYYY-MM-DD (if set)
Description:
<card description text>
Checklists:
- [x] Done item
- [ ] Pending item
Blockers:
- Blocker reason (blocker_type)
Comments (N):
- User1 (YYYY-MM-DD): Comment text...
- User2 (YYYY-MM-DD): Comment text...
Child cards (N):
- #ID1: "Child title 1" (status)
- #ID2: "Child title 2" (status)
Location history:
- YYYY-MM-DD: Column A -> Column B
Include custom properties if present. Show external links if any.
npx claudepluginhub stillfrozen/kaiten-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.