Skip to content

fix(dashboard): correct broken aao-verified doc links, remove stale live hint - #6232

Draft
bokelley wants to merge 1 commit into
mainfrom
claude/issue-6231-fix-aao-verified-links
Draft

fix(dashboard): correct broken aao-verified doc links, remove stale live hint#6232
bokelley wants to merge 1 commit into
mainfrom
claude/issue-6231-fix-aao-verified-links

Conversation

@bokelley

@bokelley bokelley commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

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.html

  1. Lines 2288, 2299, 2300, 2302 — four href values updated from /docs/building/aao-verified[#anchor] to /docs/building/verification/aao-verified[#anchor]. The #declare-specialisms anchor in hunk 1 remains valid (## Declare specialisms at line 94 of the target MDX, which Mintlify slugifies correctly).

  2. Lines 2445–2449 + 2468 — removed the stale (Live) upgrade hint block entirely. Three independent reasons:

    • hasLive checked verification_modes.includes('live') — permanently false because the badge-issuance path only writes 'spec' or 'sandbox', never 'live'. The hint rendered on every badge load unconditionally.
    • The href pointed to #verified-live, an anchor that no longer exists in the target page (the reframe to "(Sandbox)" removed it).
    • The copy ("ships in 3.1") references a roadmap milestone that has since shipped under different terminology.

Pre-PR review

  • code-reviewer: approved — no blockers. Nit: the false branch of the failing/degraded ternary (line 2300) was verified as already correct in the diff context; touching it is a no-op. (out of scope per reviewer.)
  • docs-expert: approved after confirming working-copy line 2299 reads aao-verified (correct). Verified docs/building/verification/aao-verified.mdx exists, #declare-specialisms anchor is valid, and all stale references are absent post-patch.

Triage-managed PR. This bot does not currently iterate on review comments or PR conversation threads (only on the source issue). To unblock:

  • Push fixup commits directly: gh pr checkout 6231 → fix → push.
  • Or request a new first draft PR: comment /triage execute on the source issue only when no triage-managed PR is already open. Triage does not update existing PRs.

See #3121 for context.

Session: https://claude.ai/code/session_014EKuiUMS3Ei2Kh8ZSqqTSr


Generated by Claude Code

…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
@bokelley bokelley added the claude-triaged Issue has been triaged by the Claude Code triage routine. Remove to re-triage. label Aug 5, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

claude-triaged Issue has been triaged by the Claude Code triage routine. Remove to re-triage.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Docs: /docs/building/aao-verified returns 404

2 participants