fix(dashboard): correct broken aao-verified doc links, remove stale live hint - #6232
Draft
bokelley wants to merge 1 commit into
Draft
fix(dashboard): correct broken aao-verified doc links, remove stale live hint#6232bokelley wants to merge 1 commit into
bokelley wants to merge 1 commit into
Conversation
…hint Closes #6231 Four links in the agent dashboard hint UI pointed to /docs/building/aao-verified, which 404s — the page lives at /docs/building/verification/aao-verified. Fixes all four href values. Also removes the (Live) hint block (lines 2445–2449): hasLive checks verification_modes.includes('live') which is permanently false under the current schema (modes are 'spec'/'sandbox'), the block always rendered the stale hint for every user, the anchor #verified-live no longer exists in the target page, and the roadmap claim ("ships in 3.1") is outdated. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_014EKuiUMS3Ei2Kh8ZSqqTSr
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.
Closes #6231
Four hint-text links in the agent dashboard pointed to
/docs/building/aao-verified, which returns 404 — the page lives at/docs/building/verification/aao-verified. This PR corrects all four hrefs and removes a stale(Live)hint block that had become permanently dead code.Non-breaking justification: this is a pure
server/public/HTML fix — link paths and dead JS variable removal. No schema, protocol, or API surface is touched; no changeset is needed.Changes
server/public/dashboard-agents.htmlLines 2288, 2299, 2300, 2302 — four
hrefvalues updated from/docs/building/aao-verified[#anchor]to/docs/building/verification/aao-verified[#anchor]. The#declare-specialismsanchor in hunk 1 remains valid (## Declare specialismsat line 94 of the target MDX, which Mintlify slugifies correctly).Lines 2445–2449 + 2468 — removed the stale
(Live)upgrade hint block entirely. Three independent reasons:hasLivecheckedverification_modes.includes('live')— permanentlyfalsebecause the badge-issuance path only writes'spec'or'sandbox', never'live'. The hint rendered on every badge load unconditionally.hrefpointed to#verified-live, an anchor that no longer exists in the target page (the reframe to "(Sandbox)" removed it).Pre-PR review
falsebranch of thefailing/degradedternary (line 2300) was verified as already correct in the diff context; touching it is a no-op. (out of scopeper reviewer.)aao-verified(correct). Verifieddocs/building/verification/aao-verified.mdxexists,#declare-specialismsanchor is valid, and all stale references are absent post-patch.Session: https://claude.ai/code/session_014EKuiUMS3Ei2Kh8ZSqqTSr
Generated by Claude Code