PAB-54: improve palette feedback workflow#131
Merged
Conversation
Co-authored-by: multica-agent <github@multica.ai>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Co-authored-by: multica-agent <github@multica.ai>
pablopunk
marked this pull request as ready for review
July 17, 2026 15:59
Kody Review CompleteGreat news! 🎉 Keep up the excellent work! 🚀 Kody Guide: Usage and ConfigurationInteracting with Kody
Current Kody ConfigurationReview OptionsThe following review options are enabled or disabled:
|
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.
This PR improves the feedback workflow for command palette actions by replacing ad‑hoc error and status views with a consistent, accessible list‑based feedback pattern. The changes deliver clearer user messaging, better accessibility, and richer toast notifications while protecting users from internal error details.
What changed
Standardized feedback views
Errors, warnings, and success states in the palette now use a structured list view (
feedbackView) instead of raw markdown previews. Each feedback view shows:Richer toast notifications
Toast messages now support
infoandsuccesstones in addition todefaultanderror, allowing more precise feedback for completed tasks (e.g., “1 item moved to Trash” shown as a success toast). Error toasts userole="alert"for screen readers.Safer user‑facing error messages
System‑returned errors (such as app uninstall failures) are now replaced with concise, user‑friendly messages that never expose internal paths or raw system output.
Accessibility enhancements
disableditem property prevents non‑selectable items from receiving keyboard focus, keeping navigation streamlined.aria-invalidandaria-describedbyto associate error messages with their controls.statusrole.Extension API updates
Extensions can now set
disabled: trueon palette items and useinfo/successtoast tones. Theui.error()helper returns a feedback view instead of a plain markdown preview, aligning with the new pattern.These changes make the overall palette feedback more predictable, visually scannable, and accessible while reducing the risk of leaking sensitive information through error messages.