Conversation
Comment commands (lib/fizzy/commands/comment.rb): - list: List comments on a card with pagination support - show: Show a specific comment by ID - create: Create comment with --body or --body-file options - update: Update comment body - delete: Delete a comment Reaction commands (lib/fizzy/commands/reaction.rb): - list: List reactions on a comment - create: Add emoji reaction to a comment - delete: Remove a reaction Step commands (lib/fizzy/commands/step.rb): - show: Show a specific to-do item - create: Create step with --content and optional --completed flag - update: Update content or toggle completed state - delete: Delete a step Notification commands (lib/fizzy/commands/notification.rb): - list: List notifications with pagination support - read: Mark notification as read - unread: Mark notification as unread - read-all: Mark all notifications as read Card action commands (added to lib/fizzy/commands/card.rb): - close/reopen: Close or reopen a card - postpone: Mark card as "not now" - column: Move card into a column (triage) - untriage: Send card back to triage - assign: Toggle user assignment (uses assignee_id param) - tag: Toggle tag on card (uses tag_title param) - watch/unwatch: Toggle watching a card Test coverage: - 96 tests, 188 assertions, all passing - New test files for each command group
waynemsmith
added a commit
to Concurrent-Systems/fizzy-cli
that referenced
this pull request
Mar 28, 2026
- Convert literal \n sequences to actual newlines in markdownToHtml() so CLI comments render line breaks instead of showing literal \n text - Use <pre><code> for fenced code blocks instead of inline <code> spans - Extract code blocks before inline formatting to protect their content - Added tests for literal newlines and code block rendering Closes basecamp#5 Closes basecamp#3 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
New Commands
Comment commands
Reaction commands
Step commands (to-do items)
Notification commands
Card action commands
Test plan
fizzy card tagworks correctly (usestag_titleparam)fizzy card assignworks correctly (usesassignee_idparam)fizzy card watchworks correctlyfizzy comment create/listworks correctlyfizzy reaction create/listworks correctly