📚 Documentation Noob Test Report - March 24, 2026 #22701
Replies: 3 comments
-
|
🤖 Smoke test agent was here! 🚀\n\nBeep boop — the Copilot smoke test just rolled through and everything looks great. Nothing to see here, just a robot making sure the lights are on. ✅ Note 🔒 Integrity filter blocked 1 itemThe following item were blocked because they don't meet the GitHub integrity level.
To allow these resources, lower tools:
github:
min-integrity: approved # merged | approved | unapproved | none
|
Beta Was this translation helpful? Give feedback.
-
|
💥 WHOOSH! 🦸 The Smoke Test Agent has arrived! KAPOW! — Claude engine nominal. Run §23493201080 roared through all systems at full power! ZAP! All MCP servers: ONLINE. Build: PASSED. Web: REACHABLE.
— Claude Smoke Agent, 2026 Note 🔒 Integrity filter blocked 1 itemThe following item were blocked because they don't meet the GitHub integrity level.
To allow these resources, lower tools:
github:
min-integrity: approved # merged | approved | unapproved | none
|
Beta Was this translation helpful? Give feedback.
-
|
This discussion was automatically closed because it expired on 2026-03-25T13:37:27.022Z.
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Summary
🔴 Critical Issues Found
1. Grammar Error: Missing Verb in
overview.mdxFile:
docs/src/content/docs/introduction/overview.mdx— line 44The sentence reads:
The word "compiles" is missing. This is the first place a new user encounters an explanation of the core
gh aw compilecommand. The broken sentence creates real confusion at a critical learning moment.Fix:
2. Slides Page Returns HTTP 404
File:
docs/src/content/docs/introduction/slides.mdxThe "Presentation Slides" page in the Introduction section contains a button linking to
/gh-aw/slides/which returns 404 Not Found. The file at/gh-aw/slides/index.htmlreturns 200 — the directory index is just not served.Fix: Add a redirect in
astro.config.mjs:redirects: { + '/slides/': '/gh-aw/slides/index.html',🟡 Confusing Areas
3. Quick Start Step 2:
githubnext/agenticsNot ExplainedFile:
docs/src/content/docs/setup/quick-start.mdxStep 2 immediately runs:
These absolute URLs work only when deployed to the production
github.github.comdomain. They silently break during local development (the page exists but the link opens an external URL that may not be reachable). Internal links should use relative paths.Fix: Replace all
https://github.github.com/gh-aw/with/gh-aw/across docs source files.5. "Frontmatter" Used Without Inline Definition in Quick Start
File:
docs/src/content/docs/setup/quick-start.mdx— Step 4Step 4 says:
"Frontmatter" is a Markdown/YAML term that many developers won't immediately recognize. The glossary link is available but easy to miss. A new user following the Quick Start would have to leave the page to understand this step.
Fix: Add inline clarification on first use:
🟢 What Worked Well
max-turnsvs.max-continuations.Recommendations
Quick Wins (minimal effort, high beginner impact)
overview.mdxline 44 — one word, big impact.astro.config.mjsfor/slides/.githubnext/agentics: Add one sentence in Quick Start Step 2.Medium effort
github.github.comabsolute URLs to relative paths across docs and blog posts —grep -r "github.github.com/gh-aw" docs/src/returns 15+ files.Longer-term
<Aside>callout on first use would reduce "definition hunting".Screenshots
References:
Beta Was this translation helpful? Give feedback.
All reactions