Skip to content

Point docs links at docs.getbased.health (Mintlify)#9

Merged
elkimek merged 2 commits into
mainfrom
feat/docs-to-mintlify
May 14, 2026
Merged

Point docs links at docs.getbased.health (Mintlify)#9
elkimek merged 2 commits into
mainfrom
feat/docs-to-mintlify

Conversation

@elkimek
Copy link
Copy Markdown
Owner

@elkimek elkimek commented May 14, 2026

Summary

Docs moved from app.getbased.health/docs (VitePress) to docs.getbased.health (Mintlify). Companion to get-based#231 (which adds the 301 redirects on the app domain).

  • Footer "Docs" links — all pages (index, compare, blog, 404, thank-you, blog-template) → https://docs.getbased.health
  • llms.txt — Documentation link + all 8 docs-highlights links repointed, with the Mintlify rename mapping (getting-startedquickstart, ai-chatguides/ai-chat, etc.)
  • .well-known/mcp.json + SKILL.md — docs URL → docs.getbased.health/guides/agent-access; index.json digest regenerated
  • blog/building-getbased.md — inline docs link → /quickstart
  • index.html — dropped the now-dead local-dev /docs link-rewrite snippet (nothing points at app.getbased.health/docs anymore)
  • Regenerated blog/*/index.html + blog.html via build-blog.js

Test plan

  • grep -rn "app.getbased.health/docs" . returns nothing (excl. node_modules)
  • Footer "Docs" link on each page → docs.getbased.health
  • sha256sum of SKILL.md matches the digest in index.json

🤖 Generated with Claude Code

Docs moved from app.getbased.health/docs (VitePress) to docs.getbased.health
(Mintlify).

- Footer "Docs" links across all pages → docs.getbased.health
- llms.txt: documentation + docs-highlights links repointed, with the
  Mintlify rename mapping (getting-started → quickstart, etc.)
- .well-known/mcp.json + SKILL.md docs URL (digest regenerated)
- blog/building-getbased.md inline docs link
- Drop the now-dead local-dev /docs link-rewrite in index.html
- Regenerated blog pages via build-blog.js

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@vercel
Copy link
Copy Markdown

vercel Bot commented May 14, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
get-based-site Ready Ready Preview, Comment May 14, 2026 1:29pm

@greptile-apps
Copy link
Copy Markdown

greptile-apps Bot commented May 14, 2026

Greptile Summary

This PR migrates all documentation links from the old VitePress location at app.getbased.health/docs to the new Mintlify site at docs.getbased.health, with path renames applied (e.g. guide/getting-startedquickstart, guide/ai-chatguides/ai-chat).

  • Footer "Docs" anchors updated across all six HTML pages (index, compare, blog, blog-template, 404, thank-you) plus the three pre-built blog post files.
  • llms.txt, SKILL.md, and mcp.json docs URLs repointed; index.json SHA-256 digest regenerated and verified correct.
  • Dead local-dev rewrite for app.getbased.health/docs removed from index.html (the selector was already ineffective — the preceding app.getbased.health rewrite ran first — so the removal is safe).

Confidence Score: 5/5

Pure URL migration with no logic changes — safe to merge.

Every changed line is a URL swap or a comment update. The SHA-256 digest in index.json was recomputed correctly (verified on the actual file). The removed local-dev rewrite in index.html was already a no-op because the broader app.getbased.health selector ran first. All 13 files update exactly the same class of change with no conditional logic, state, or data-processing involved.

No files require special attention.

Important Files Changed

Filename Overview
.well-known/agent-skills/index.json SHA-256 digest updated to 2f8bfd0… — verified correct against the committed SKILL.md.
.well-known/agent-skills/getbased-health-data/SKILL.md Single URL repoint from app.getbased.health/docs/guide/agent-access to docs.getbased.health/guides/agent-access.
.well-known/mcp.json Documentation URL updated to match SKILL.md; no other changes.
llms.txt Main documentation link and all 8 docs-highlights entries repointed with correct Mintlify path renames.
index.html Footer link updated; dead local-dev /docs rewrite selector removed (was already a no-op due to selector ordering).
blog/building-getbased.md Inline prose link updated from guide/getting-started to quickstart on the new domain.
blog-template.html Footer Docs link updated; template is now consistent with all generated blog post pages.
blog/building-getbased/index.html Inline article link and footer Docs link both updated to new domain and paths.

Flowchart

%%{init: {'theme': 'neutral'}}%%
flowchart TD
    subgraph OLD["Old paths (app.getbased.health/docs)"]
        O1["/docs/guide/getting-started"]
        O2["/docs/guide/ai-chat"]
        O3["/docs/guide/interpretive-lens"]
        O4["/docs/guide/dna-import"]
        O5["/docs/guide/cross-device-sync"]
        O6["/docs/guide/agent-access"]
        O7["/docs/guide/wearables"]
        O8["/docs/guide/encryption"]
        O9["/docs (root)"]
    end

    subgraph NEW["New paths (docs.getbased.health)"]
        N1["/quickstart"]
        N2["/guides/ai-chat"]
        N3["/guides/interpretive-lens"]
        N4["/guides/dna-import"]
        N5["/guides/cross-device-sync"]
        N6["/guides/agent-access"]
        N7["/guides/wearables"]
        N8["/guides/encryption"]
        N9["/ (root)"]
    end

    O1 -->|renamed| N1
    O2 -->|moved| N2
    O3 -->|moved| N3
    O4 -->|moved| N4
    O5 -->|moved| N5
    O6 -->|moved| N6
    O7 -->|moved| N7
    O8 -->|moved| N8
    O9 -->|moved| N9
Loading

Reviews (2): Last reviewed commit: "Address Greptile review on #9: drop blog..." | Re-trigger Greptile

Comment thread blog.html
Comment thread blog/a-month-in/index.html
Running build-blog.js to regenerate the blog pages dragged in unintended
changes — noindex/nofollow meta tags on all three blog pages and a removed
publish date on the 'a-month-in' post — because the committed blog HTML had
drifted from current build-blog.js output.

Restored the three generated files from main and hand-applied only the
docs-URL edits (footer link + the one inline link), so this PR's blog diff
is now strictly the Mintlify URL change. The build-blog.js drift is a
separate pre-existing issue.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@elkimek elkimek merged commit 2c5ca8e into main May 14, 2026
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant