Redirect Astro wizard docs to hosted wizard - #53815
Merged
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
Replace Astro docs wizard with hosted redirect
Redirect Astro wizard docs to hosted wizard
Aug 18, 2026
Copilot created this pull request from a session on behalf of
pelikhan
August 18, 2026 20:14
View session
pelikhan
marked this pull request as ready for review
August 18, 2026 20:17
Contributor
There was a problem hiding this comment.
Pull request overview
Replaces the local Astro wizard with the externally hosted gh-aw wizard.
Changes:
- Adds the
/wizard/external redirect. - Removes the local wizard implementation, model, schema, documentation, and tests.
Show a summary per file
| File | Description |
|---|---|
docs/astro.config.mjs |
Adds the hosted wizard redirect and reformats configuration. |
docs/tests/wizard.spec.ts |
Removes local wizard browser tests. |
docs/src/components/Wizard.astro |
Removes the Astro wizard UI. |
docs/src/content/docs/wizard.mdx |
Removes the local wizard page. |
docs/src/content/docs/specs/wizard-data-model-specification.md |
Removes the retired model specification. |
docs/src/data/wizard-data-model.json |
Removes local wizard data. |
docs/src/lib/wizard/model.ts |
Removes model loading and exports. |
docs/src/lib/wizard/model.test.js |
Removes model validation tests. |
docs/src/lib/wizard/validation.ts |
Removes model types and validation. |
docs/public/schemas/wizard-data-model.schema.json |
Removes the published schema. |
docs/public/schemas/wizard-data-model.example.json |
Removes the schema example. |
Review details
💡 Add a code-review agent skill for context-aware, tailored reviews. Learn more in the docs.
Suppressed comments (2)
docs/src/lib/wizard/model.test.js:1
- Deleting this test leaves
make test-docs-wizard-modelinMakefile:1203-1206invoking a nonexistent file, so that Make target now fails immediately. Remove the obsolete target as part of the wizard cleanup.
docs/tests/wizard.spec.ts:1 - The replacement
/gh-aw/wizard/redirect is now the only wizard behavior, but deleting this suite removes all coverage for it. Keep a focused Playwright test that visits the local route and verifies the final URL ishttps://githubnext.github.io/gh-aw-wizard/(mocking the external response if necessary) so base-path and destination regressions are caught.
- Files reviewed: 11/11 changed files
- Comments generated: 0
- Review effort level: Balanced
Contributor
|
🎉 This pull request is included in a new release. Release: |
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 Astro-hosted wizard is replaced by the hosted gh-aw wizard. Existing
/wizard/links now redirect to the external experience.Routing
/wizard/redirect tohttps://githubnext.github.io/gh-aw-wizard/Removed local implementation