Agent Skills
› asJEI/vscode
› act-on-feedback
act-on-feedback
GitHub用于处理用户对当前会话更改的反馈。通过listComments获取评论,根据ID或用户指定范围执行修改,完成后调用resolveComments或deleteComments标记状态,并验证代码一致性。
触发场景
用户通过提交反馈按钮提供反馈
消息中附带了特定的反馈评论
安装
npx skills add asJEI/vscode --skill act-on-feedback -g -y
SKILL.md
Frontmatter
{
"name": "act-on-feedback",
"description": "Act on user feedback attached to the current session. Use when the user submits feedback on the session's changes via the Submit Feedback button."
}
Act on Feedback
The user has provided feedback on the current session's changes.
- Use the
listCommentstool to retrieve the user's feedback comments for this session - If specific feedback comments were attached to this message, act on only those attached comments (match them by their comment id); otherwise act on all of the listed comments, or whatever subset the user specified in their message
- Understand the intent behind each piece of feedback you are acting on
- Make the requested changes to address the feedback
- When feedback has been tackled, use the
resolveCommentstool to mark those comments as resolved, or thedeleteCommentstool to delete them - Verify your changes are consistent with the rest of the codebase
版本历史
- ce4db66 当前 2026-07-19 08:58


