Describe the bug
docs/content/docs/packages/meta.json includes "ai" and "testing" in its pages array, but neither ai.mdx/ai/ nor testing.mdx/testing/ exists under docs/content/docs/packages/ — so the AI package (which ships in the template as @repo/ai) has no documentation page at all, and both nav entries dangle.
Relatedly, the only AI documentation that does exist — docs/content/docs/examples/ai-chatbot.mdx — uses the AI SDK v4-era useChat API (input, handleInputChange) while the template ships ai@^6, so the example no longer matches the shipped package.
To Reproduce
grep -o '"ai"\|"testing"' docs/content/docs/packages/meta.json → both present
ls docs/content/docs/packages/ → no ai(.mdx), no testing(.mdx)
Expected behavior
Either the pages exist (an ai.mdx documenting @repo/ai, a testing.mdx documenting the vitest setup) or the entries are removed from meta.json.
Happy to PR either direction — authoring the missing ai.mdx + refreshing the chatbot example to AI SDK v6 seems the more useful fix.
Describe the bug
docs/content/docs/packages/meta.jsonincludes"ai"and"testing"in itspagesarray, but neitherai.mdx/ai/nortesting.mdx/testing/exists underdocs/content/docs/packages/— so the AI package (which ships in the template as@repo/ai) has no documentation page at all, and both nav entries dangle.Relatedly, the only AI documentation that does exist —
docs/content/docs/examples/ai-chatbot.mdx— uses the AI SDK v4-erauseChatAPI (input,handleInputChange) while the template shipsai@^6, so the example no longer matches the shipped package.To Reproduce
grep -o '"ai"\|"testing"' docs/content/docs/packages/meta.json→ both presentls docs/content/docs/packages/→ noai(.mdx), notesting(.mdx)Expected behavior
Either the pages exist (an
ai.mdxdocumenting@repo/ai, atesting.mdxdocumenting the vitest setup) or the entries are removed frommeta.json.Happy to PR either direction — authoring the missing
ai.mdx+ refreshing the chatbot example to AI SDK v6 seems the more useful fix.