You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Jetpack AI Sidebar: add chip descriptions and rename review labels (#112034)
* Jetpack AI Sidebar: add chip descriptions and rename review labels
- Add a one-line description to the starting-screen suggestion chips: Optimize Title, Simple Review, Editorial Review
- Rename labels: Generate Feedback → Simple Review, AI Editorial Review → Editorial Review
- Widen getEmptyViewSuggestions/useSuggestions return types with an optional description
- Update label assertions and add a description-presence test
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* Jetpack AI Sidebar: add description to the Proofread chip
- Add "Correct spelling, grammar, and punctuation." to PROOFREAD_SUGGESTION
- Extend the description test to cover Proofread (enable proofreadContent)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* Jetpack AI Sidebar: add SEO Enhancer + Generate Excerpt descriptions
- Add descriptions to the SEO Enhancer and Generate Excerpt chips
- Refine the Optimize Title description to differentiate it from SEO Enhancer
- Extend the description test to cover the two new chips
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* Bump agenttic to 0.1.74
---------
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
description: __('In-depth review against your content guidelines.','jetpack'),
161
168
prompt: __(
162
169
'Run an AI Editorial Review for this post. Check the content, reviewer notes, and site guidelines, then surface conflicts, implications, guideline issues, and suggested edits.',
description: __('Quick feedback on your content’s structure.','jetpack'),
170
178
prompt: __(
171
179
'Generate feedback for this saved post. Review the saved title and saved block content for content structure, reader clarity, completeness, media/caption/link issues, and obvious publishability concerns. Return practical feedback with one-click suggestions when safe.',
description: __('Correct spelling, grammar, and punctuation.','jetpack'),
179
188
prompt: __(
180
189
'Proofread this saved post for spelling, grammar, and punctuation. Review the saved title and saved block content, and return practical fixes with one-click suggestions when safe.',
181
190
'jetpack'
@@ -863,6 +872,7 @@ export function useCheckpoint(): any {
863
872
exportfunctiongetEmptyViewSuggestions(): Array<{
864
873
id: string;
865
874
label: string;
875
+
description?: string;
866
876
prompt?: string;
867
877
options?: SuggestionOption[];
868
878
}>{
@@ -1030,6 +1040,7 @@ export function useSuggestions(
0 commit comments