Polish the workflow prompt wizard - #53769
Merged
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
pelikhan
August 18, 2026 17:15
View session
pelikhan
marked this pull request as ready for review
August 18, 2026 17:19
Contributor
There was a problem hiding this comment.
Pull request overview
Polishes the workflow prompt wizard with clearer content, compact responsive styling, and expanded browser coverage.
Changes:
- Restyles the five-step wizard and dynamically rendered controls.
- Simplifies user-facing guidance and page content.
- Expands tests for all steps and mobile containment.
Show a summary per file
| File | Description |
|---|---|
docs/src/components/Wizard.astro |
Updates wizard content and responsive styling. |
docs/src/content/docs/wizard.mdx |
Simplifies page metadata and content. |
docs/tests/wizard.spec.ts |
Extends workflow and mobile styling tests. |
Review details
- Files reviewed: 3/3 changed files
- Comments generated: 3
- Review effort level: Balanced
Comment on lines
+757
to
763
| .aw-wizard__progress-button:focus-visible, | ||
| .aw-wizard__button:focus-visible, | ||
| .aw-wizard__option:has(input:focus-visible), | ||
| .aw-wizard__textarea:focus-visible { | ||
| outline: 2px solid var(--sl-color-accent); | ||
| outline-offset: 2px; | ||
| } |
|
|
||
| <style> | ||
| .sr-only { | ||
| <style is:global> |
| <h2 class="aw-wizard__title">Build an agentic workflow</h2> | ||
| <p class="aw-wizard__intro"> | ||
| This shell loads the shared wizard data model, keeps state in memory, and demonstrates the WHAT → WHEN → WHERE flow with generic step rendering, plus a free-text task description and a final self-contained prompt you can copy. | ||
| Choose what your workflow does, when it runs, and where it reports. We’ll combine your answers with any task details into a prompt you can copy. |
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.
The wizard was oversized and difficult to scan, while Astro’s scoped CSS left client-rendered controls unstyled and visually merged.
Layout
Styling
Content
Coverage