Consolidate documentation to /content/docs#260
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Refactor Fumadocs website documentation and homepage
Consolidate documentation to /content/docs
Feb 12, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR consolidates ObjectOS documentation into a single source of truth under /content/docs, updates the Fumadocs site to read from that directory, and removes the legacy /docs and apps/site/content/docs sources to simplify maintenance.
Changes:
- Migrated legacy Markdown docs into
/content/docsas MDX with frontmatter + new navigationmeta.jsonfiles. - Updated
apps/site/source.config.tsto load docs from../../content/docs. - Removed legacy documentation files under
/docsand legacy meta files underapps/site/content/docs.
Reviewed changes
Copilot reviewed 33 out of 52 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| apps/site/source.config.ts | Points Fumadocs to the consolidated /content/docs directory and simplifies transformer config. |
| apps/site/content/docs/meta.json | Removes legacy docs navigation meta file (old docs source). |
| apps/site/content/docs/spec/meta.json | Removes legacy spec navigation meta file (old docs source). |
| content/docs/meta.json | Adds top-level consolidated documentation navigation. |
| content/docs/index.mdx | Updates docs landing page content (removes Card components in favor of links). |
| content/docs/spec/meta.json | Adds consolidated “Specifications” navigation. |
| content/docs/spec/index.mdx | Adds consolidated spec index page. |
| content/docs/spec/metadata-format.mdx | Adds consolidated metadata format specification (MDX + frontmatter). |
| content/docs/spec/query-language.mdx | Adds consolidated query language specification (MDX + frontmatter). |
| content/docs/spec/http-protocol.mdx | Adds consolidated HTTP protocol specification (MDX + frontmatter). |
| content/docs/adr/meta.json | Adds ADR section navigation. |
| content/docs/adr/index.mdx | Adds ADR index page. |
| content/docs/adr/001-vitest-standardization.mdx | Converts ADR to MDX frontmatter format. |
| content/docs/getting-started/meta.json | Adds “Getting Started” section navigation. |
| content/docs/getting-started/index.mdx | Adds “Getting Started” landing page. |
| content/docs/getting-started/installation.mdx | Adds installation instructions under the new structure. |
| content/docs/guide/meta.json | Expands guide navigation to include additional pages. |
| content/docs/guide/index.mdx | Adds consolidated guide index page (MDX + frontmatter). |
| content/docs/guide/data-modeling.mdx | Adds consolidated data modeling guide (MDX + frontmatter). |
| content/docs/guide/logic-hooks.mdx | Adds consolidated logic hooks guide (MDX + frontmatter). |
| content/docs/guide/logic-actions.mdx | Adds consolidated logic actions guide (MDX + frontmatter). |
| content/docs/guide/platform-components.mdx | Adds consolidated platform components guide (MDX + frontmatter). |
| content/docs/guide/ui-framework.mdx | Adds consolidated UI framework reference (MDX + frontmatter). |
| content/docs/guide/contributing-development.mdx | Adds consolidated contributing guide (MDX + frontmatter). |
| content/docs/guide/api-reference.mdx | Updates existing guide page to MDX frontmatter format. |
| content/docs/guide/cli-usage.mdx | Updates existing guide page to MDX frontmatter format. |
| content/docs/guide/plugin-development.mdx | Updates existing guide page to MDX frontmatter format. |
| content/docs/guide/migration-from-kernel.mdx | Updates existing guide page to MDX frontmatter format. |
| content/docs/guide/quickstart.mdx | Updates existing guide page to MDX frontmatter format. |
| content/docs/guide/troubleshooting.mdx | Updates existing guide page to MDX frontmatter format. |
| content/docs/guide/technical-debt-resolution.mdx | Updates existing guide page to MDX frontmatter format. |
| docs/index.md | Removes legacy docs home page. |
| docs/public/logo.svg | Removes legacy docs logo asset. |
| docs/spec/index.md | Removes legacy spec index. |
| docs/spec/metadata-format.md | Removes legacy metadata spec. |
| docs/spec/query-language.md | Removes legacy query language spec. |
| docs/spec/http-protocol.md | Removes legacy HTTP protocol spec. |
| docs/guide/index.md | Removes legacy guide index. |
| docs/guide/data-modeling.md | Removes legacy data modeling guide. |
| docs/guide/logic-hooks.md | Removes legacy logic hooks guide. |
| docs/guide/logic-actions.md | Removes legacy logic actions guide. |
| docs/guide/ui-framework.md | Removes legacy UI framework guide. |
| docs/guide/security-guide.md | Removes legacy security guide. |
| docs/guide/sdk-reference.md | Removes legacy SDK reference. |
| docs/guide/platform-components.md | Removes legacy platform components doc. |
| docs/guide/development-plan.md | Removes legacy development plan doc. |
| docs/guide/contributing-development.md | Removes legacy contributing doc. |
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.
Documentation was fragmented across
/docs(24 MD files) and/apps/site/content/docs(18 MDX files). Consolidated to single source at repository root/content/docsfor cleaner monorepo structure and easier maintenance.Changes
/docsand/apps/site/content/docsinto/content/docs(32 MDX files total)apps/site/source.config.tsnow references../../content/docs/docsand/apps/site/content/docsStructure
All pages build successfully and maintain existing navigation structure.
Original prompt
Created from VS Code.
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.