From 05276a47854f6c71cd2f97e52131ac44fb294b9d Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Sat, 24 Jan 2026 11:06:13 -0500 Subject: [PATCH] Add card reactions documentation The --comment flag is now documented as optional for reaction commands. When omitted, reactions are applied directly to cards rather than to comments on cards. Co-Authored-By: Claude Opus 4.5 --- fizzy/SKILL.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/fizzy/SKILL.md b/fizzy/SKILL.md index 234dbc1..cc479d1 100644 --- a/fizzy/SKILL.md +++ b/fizzy/SKILL.md @@ -521,12 +521,26 @@ fizzy step delete STEP_ID --card NUMBER ### Reactions +Reactions can be added to cards directly or to comments on cards. + ```bash +# Card reactions (react directly to a card) +fizzy reaction list --card NUMBER +fizzy reaction create --card NUMBER --content "emoji" +fizzy reaction delete REACTION_ID --card NUMBER + +# Comment reactions (react to a specific comment) fizzy reaction list --card NUMBER --comment COMMENT_ID fizzy reaction create --card NUMBER --comment COMMENT_ID --content "emoji" fizzy reaction delete REACTION_ID --card NUMBER --comment COMMENT_ID ``` +| Flag | Required | Description | +|------|----------|-------------| +| `--card` | Yes | Card number (always required) | +| `--comment` | No | Comment ID (omit for card reactions) | +| `--content` | Yes (create) | Emoji or text, max 16 characters | + ### Tags Tags are created automatically when using `card tag`. List shows all existing tags. @@ -655,13 +669,23 @@ fizzy card list --indexed-by closed --closed thisweek fizzy card list --unassigned --board BOARD_ID ``` +### React to a Card + +```bash +# Add reaction directly to a card +fizzy reaction create --card 579 --content "👍" + +# List reactions on a card +fizzy reaction list --card 579 | jq '[.data[] | {id, content, reacter: .reacter.name}]' +``` + ### Add Comment with Reaction ```bash # Add comment COMMENT=$(fizzy comment create --card 579 --body "

Looks good!

" | jq -r '.data.id') -# Add reaction +# Add reaction to the comment fizzy reaction create --card 579 --comment $COMMENT --content "👍" ```