docs: flip site_url to apex openarmature.ai#34
Merged
Conversation
The docs site now lives at https://openarmature.ai/ (apex) rather than the originally-scoped docs.openarmature.ai subdomain — for the Phase A launch we don't have a separate landing site, so the top level is the natural home. mkdocs.yml's site_url is the canonical-link / sitemap / OG-meta source, so it has to match where visitors actually land. AGENTS.md's docs section updated to reference the new URL.
There was a problem hiding this comment.
Pull request overview
Updates MkDocs metadata to reflect that the documentation site is now served from the apex domain (openarmature.ai) rather than the docs. subdomain, ensuring canonical URLs / sitemap / social metadata match the deployed origin.
Changes:
- Update
mkdocs.ymlsite_urltohttps://openarmature.ai/. - Update
AGENTS.mddocumentation host reference toopenarmature.ai.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| mkdocs.yml | Switches MkDocs site_url to the apex domain for correct canonical/sitemap/metadata URLs. |
| AGENTS.md | Aligns contributor documentation to reference the new deployed docs origin. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Summary
mkdocs.yml'ssite_urlfromhttps://docs.openarmature.ai/tohttps://openarmature.ai/, matching where the deployed site now lives.AGENTS.md's docs section reference to match.For Phase A there's no separate landing site, so the apex is the natural home for the docs. The subdomain framing was a holdover from the original
docs-site-plan.mdscoping.site_urlis what mkdocs bakes into canonical<link>tags,sitemap.xml, and OG / social-card URLs — purely metadata, but it needs to match the actual served origin for SEO + social embedders to work correctly.Test plan
uv run mkdocs build --strict— clean.site/index.htmlcarries<link rel="canonical" href="https://openarmature.ai/">.site/sitemap.xmlentries point athttps://openarmature.ai/....Docsworkflow on this PR builds the site withmkdocs build --strict.Docsonmainredeploys to Pages; visithttps://openarmature.ai/, view-source on the landing page, confirm the new canonical link.