Remove hidden README and docs navigation text - #53816
Merged
pelikhan merged 4 commits intoAug 18, 2026
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Investigate hidden text cloaking flag on docs site and README
Remove hidden README and docs navigation text
Aug 18, 2026
Collaborator
|
@copilot keep the cloaked comment as a details section |
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Contributor
Author
Addressed in |
pelikhan
marked this pull request as ready for review
August 18, 2026 21:20
pelikhan
deleted the
copilot/deep-report-investigate-hidden-text-cloaking
branch
August 18, 2026 21:20
Contributor
There was a problem hiding this comment.
Pull request overview
Updates README and responsive docs navigation to reduce hidden text flagged by the GEO audit.
Changes:
- Reworks README agent guidance and removes setup instructions.
- Dynamically populates and clears responsive navigation links.
- Adds Playwright regression coverage.
Show a summary per file
| File | Description |
|---|---|
README.md |
Revises agent guidance visibility. |
docs/src/components/CustomHeader.astro |
Dynamically manages responsive links. |
docs/tests/no-hidden-cloaking.spec.ts |
Adds hidden-text regression tests. |
Review details
💡 Add a code-review agent skill for context-aware, tailored reviews. Learn more in the docs.
- Files reviewed: 3/3 changed files
- Comments generated: 3
- Review effort level: Balanced
Comment on lines
+3
to
+4
| <details> | ||
| <summary>Agent quick links</summary> |
Comment on lines
18
to
+19
| <nav class="custom-header-links" aria-label="Primary navigation"> | ||
| <a href={`${base}setup/quick-start/`} class="header-link">Quick Start</a> | ||
| <a href={`${base}setup/creating-workflows/`} class="header-link">Create</a> | ||
| <a href={`${base}index.html#gallery`} class="header-link">Examples</a> | ||
| <a href={`${base}introduction/overview/`} class="header-link">Docs</a> | ||
| <a href={`${base}reference/faq/`} class="header-link">FAQ</a> | ||
| <a href={`${base}blog/`} class="header-link">Blog</a> | ||
| <a href={`${base}blog/2026-01-12-welcome-to-pelis-agent-factory/`} class="header-link">Peli's Agent Factory</a> | ||
| {navItems.map((item) => <a href={item.href} class="header-link">{item.label}</a>)} |
Comment on lines
+153
to
+156
| ...navItems.map((item) => { | ||
| const link = document.createElement('a'); | ||
| link.href = item.href; | ||
| link.className = 'dropdown-link'; |
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 GEO audit flagged hidden text in the README and docs site as a cloaking risk. This change removes non-visible instructional content and avoids shipping hidden navigation text in the closed responsive menu.
README
Docs header