act-on-feedback

Applies code changes based on user feedback comments attached to a session.

Updated Aug 30, 2026
One-click install
npx skills add https://github.com/Tyrizx/Tyrizx --skill act-on-feedback-tyrizx
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: act-on-feedback
Source: https://github.com/Tyrizx/Tyrizx/tree/main/src/vs/sessions/skills/act-on-feedback
Command: npx skills add https://github.com/Tyrizx/Tyrizx --skill act-on-feedback-tyrizx

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When a user submits feedback on changes made during a coding session, someone must interpret each comment, modify the code accordingly, and close out the feedback loop. This Skill automates that cycle by retrieving session feedback, acting on the requested changes, and resolving the comments. ## Core Features & Use Cases - Feedback Retrieval: Uses the listComments tool to pull all feedback comments attached to the current session. - Targeted Action: Acts only on specifically attached comments when provided, or on all listed comments otherwise. - Comment Lifecycle Management: Marks addressed comments as resolved with resolveComments or removes them with deleteComments. - Use Case: After an AI coding session modifies several files, the user clicks Submit Feedback noting that a function should handle null inputs. This Skill reads that comment, updates the function, and marks the feedback resolved. ## Quick Start Submit feedback on the session's changes and ask the assistant to act on the submitted feedback comments.

Frequently Asked Questions about act-on-feedback

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I act on feedback submitted during a coding session?▼

Submit your feedback through the Submit Feedback button, then invoke this Skill. It retrieves your comments with listComments, makes the requested code changes, and marks the comments resolved once addressed.

How does the skill handle multiple feedback comments at once?▼

If specific comments are attached to the message, it acts only on those matched by comment id. Otherwise it processes all listed comments, or whichever subset the user specifies in their message.

Can I target only one specific feedback comment?▼

Yes. When specific feedback comments are attached to your message, the Skill matches them by comment id and acts only on those, leaving other comments untouched.

What happens to feedback comments after changes are made?▼

Once the requested changes are complete, the Skill uses resolveComments to mark them as resolved, or deleteComments to remove them entirely, keeping the feedback queue clean.

Does acting on feedback verify consistency with the codebase?▼

Yes. The final step of the workflow verifies that the changes made to address feedback are consistent with the rest of the codebase before the comments are resolved.