docs: generate llms.txt and llms-full.txt via vitepress-plugin-llms#290
Conversation
Replace the hand-maintained static llms.txt / llms-full.txt with build-time generation using vitepress-plugin-llms, so the AI-friendly docs stay in sync with the site automatically. - Add vitepress-plugin-llms (dev dependency) wired into vite.plugins. - domain set to https://developers.plane.so for absolute URLs. - description / details provide a spec-compliant blockquote + summary. - generateLLMFriendlyDocsForEachPage: false — the existing buildEnd hook already copies per-page .md into dist/ for the `Accept: text/markdown` rewrite in vercel.json, so the plugin owns only the two aggregate files. - injectLLMHint: false — rendered pages left untouched. - ignoreFiles excludes the two search: false / noindex commercial install pages, matching their search-engine treatment. - Delete the stale static docs/public/llms.txt and llms-full.txt; the plugin is now the single source of truth. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Warning Review limit reached
More reviews will be available in 45 minutes and 47 seconds. Learn how PR review limits work. Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file). ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits. 🚦 How do rate limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan refill rate. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, the refill rate gradually slows as usage increases. The highest same-day bursts are limited more strictly. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (4)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
…s/llms-txt-plugin # Conflicts: # docs/.vitepress/config.mts # package.json # pnpm-lock.yaml
What
Replaces the hand-maintained static
llms.txt/llms-full.txtwith build-time generation viavitepress-plugin-llms, served at:Both are emitted into the gitignored
dist/on everypnpm build, so they always stay in sync with the docs — nothing to maintain by hand.How
Wired into
vite.pluginsindocs/.vitepress/config.mts, mirroring makeplane/docs#465:domain→https://developers.plane.sofor absolute URLs (matches the old file androbots.txt).title/description/details→ spec-compliant blockquote + summary header.generateLLMFriendlyDocsForEachPage: false— the existingbuildEndhook already copies per-page.mdintodist/for theAccept: text/markdownrewrite invercel.json, so the plugin owns only the two aggregate files (no overlap).injectLLMHint: false— rendered pages left untouched.ignoreFiles— the twosearch: false/ noindex commercial install pages (docker-compose,kubernetesunderinstall-methods-commercial) are excluded, matching their search-engine treatment.docs/public/llms.txtanddocs/public/llms-full.txt; the plugin is now the single source of truth.Output
llms.txt: 334 documentation links (~21.3K tokens, ~78 kB)llms-full.txt: 334 pages (~324K tokens, ~1.31 MB)Notes
pnpm buildandpnpm check:formatboth pass..md(with full API-page content) continues to be served by the keptbuildEndhook.