feat: improve SetTodoList rendering with Markdown styles#284
Merged
stdrc merged 1 commit intoMoonshotAI:mainfrom Nov 14, 2025
Merged
feat: improve SetTodoList rendering with Markdown styles#284stdrc merged 1 commit intoMoonshotAI:mainfrom
stdrc merged 1 commit intoMoonshotAI:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR enhances the visual presentation of todo items in the SetTodoList tool by adding Markdown formatting based on task status. The implementation uses a match statement to apply strikethrough formatting to completed tasks ("Done"), bold formatting to tasks in progress ("In Progress"), and default formatting to pending tasks.
- Replaced simple string concatenation with a match statement for status-based formatting
- Applied strikethrough (
~~text~~) for "Done" items and bold (**text**) for "In Progress" items - Maintained backward compatibility with existing status values defined in the
Todomodel
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
stdrc
approved these changes
Nov 14, 2025
Collaborator
stdrc
left a comment
There was a problem hiding this comment.
I like this PR. Nice and clean, and improves a lot.
abhishekbhakat
added a commit
to abhishekbhakat/cimi
that referenced
this pull request
Nov 14, 2025
feat: improve SetTodoList rendering with Markdown styles (MoonshotAI#284)
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.
Description
This PR introduces a small improvement to the rendering of todo items in the
SetTodoListtool. The formatting now visually distinguishes items based on their status, making the todo list easier to read and understand."Done"are now displayed with strikethrough formatting, while items"In Progress"are bolded; all other statuses retain the default formatting.Now, It looks like below image
