@farming-labs/docs — Getting Started
Always consult the project docs (and /docs routes when available) for the latest API and examples.
@farming-labs/docs is a modern, flexible MDX-based documentation framework. Write markdown, get a polished docs site. Supported frameworks: Next.js, TanStack Start, Farm.js, SvelteKit, Astro, Nuxt.
Quick reference
CLI (see also the cli skill)
| Scenario |
Command |
| Interactive init (existing or fresh) |
npx @farming-labs/docs@latest init — first asks Existing project or Fresh project; then theme (or Create your own theme), entry path, etc. Prompts with a placeholder (e.g. docs, my-docs) accept Enter as default. |
| Add docs to existing app |
Run init in project root; choose Existing project when prompted. |
| Start from scratch (bootstrap, no prompts) |
npx @farming-labs/docs@latest init --template <next | tanstack-start | nuxt | sveltekit | astro> --name <project-name> |
| Add generated API reference during init |
npx @farming-labs/docs@latest init --api-reference (optional --api-route-root <path>) |
| Upgrade docs packages |
npx @farming-labs/docs@latest upgrade — auto-detects next, tanstack-start, nuxt, sveltekit, or astro; use --framework if detection is ambiguous. |
Packages by framework
| Framework |
Core + adapter |
Theme package |
| Next.js |
@farming-labs/docs, @farming-labs/next |
@farming-labs/theme |
| TanStack Start |
@farming-labs/docs, @farming-labs/tanstack-start |
@farming-labs/theme |
| Farm.js |
@farming-labs/docs, @farming-labs/farmjs |
@farming-labs/theme |
| SvelteKit |
@farming-labs/docs, @farming-labs/svelte |
@farming-labs/svelte-theme |
| Astro |
@farming-labs/docs, @farming-labs/astro |
@farming-labs/astro-theme |
| Nuxt |
@farming-labs/docs, @farming-labs/nuxt |
@farming-labs/nuxt-theme |
Install only the Farming Labs package set for the chosen framework. Do not ask users to install
Fumadocs or Scalar packages directly; API reference renderers are bundled by @farming-labs/docs
and the framework adapters.
Built-in themes
Twelve CLI-selectable built-in theme entrypoints: fumadocs (default), darksharp, pixel-border, colorful, greentree, darkbold, shiny, ledger, shadcn, concrete, command-grid, and hardline. hardline is the existing hard-edge preset, concrete is the louder brutalist poster-style variant, command-grid is the mono-first paper-grid preset inspired by the better-cmdk landing page, ledger is a Stripe Docs-inspired product docs shell, and shadcn recreates the compact neutral shadcn/ui documentation shell. The init CLI offers Create your own theme — it prompts for a theme name (default my-theme) and scaffolds themes/<name>.ts and themes/<name>.css. The theme name in config must match the theme's CSS import path (e.g. shadcn → @farming-labs/theme/shadcn/css for Next.js).
Built-in UI features
- MDX components — built-ins like
Callout, Tabs, HoverLink, Agent, Human, and
Audience are available without imports. Content is shared by default. Use <Agent> or
<Audience> for agent-only context, and <Human> or
<Audience> for human-only context. Keep Audience.only static and avoid spread
props; docs review reports declarations that static agent outputs cannot resolve consistently.
- Page feedback — enable with
feedback: true or feedback: { enabled: true, onFeedback() {} }.
- Agent discovery — agents can use the RFC 9727
/.well-known/api-catalog linkset and the hashed /.well-known/agent-skills/index.json index. The existing /.well-known/agent.json manifest remains the preferred Farming Labs document, with /.well-known/agent as fallback and /api/docs/agent/spec as its canonical framework route. These resources cross-link one another, and dynamic responses expose discovery Link headers.
- Generated AGENTS.md —
GET /AGENTS.md, GET /.well-known/AGENTS.md, and GET /api/docs?format=agents return coding-agent instructions by default. A root AGENTS.md or AGENT.md overrides the generated fallback; use docs agents generate for static exports.
- Generated robots.txt — use
docs robots generate to write a static policy that allows docs routes, .md routes, llms.txt, sitemaps, AGENTS.md, skill.md, the API catalog, Agent Skills discovery, MCP aliases, existing agent discovery routes, and common AI crawler user agents. Existing files are preserved by default; use --append to add the managed block or --force to replace the file.
- Structured data — every docs page emits Schema.org
TechArticle JSON-LD with title, description, canonical URL, freshness, and breadcrumbs. It reuses sitemap.baseUrl, llmsTxt.baseUrl, robots.baseUrl, or ai.docsUrl; no separate config flag is required.
- Agent feedback endpoints — add
feedback.agent when agents should report structured { context?, payload } feedback through /api/docs/agent/feedback and /api/docs/agent/feedback/schema.
- Page actions — enable with
pageActions.copyMarkdown and pageActions.openDocs.
- Built-in changelog pages (Next.js) — enable
changelog to publish a release feed from dated MDX entries.
- Built-in MCP server — enabled by default at
/mcp and /.well-known/mcp, backed by /api/docs/mcp, and for local stdio tools. Next.js wires rewrites with withDocs(); TanStack Start/SvelteKit/Astro/Nuxt scaffold one public forwarder each. Opt out with mcp: false or mcp: { enabled: false }.
- Machine-readable markdown routes —
/docs.md and /docs/<slug>.md return agent-ready markdown in Next.js and in the generated TanStack Start, SvelteKit, Astro, and Nuxt forwarding layer. Next.js also returns the same markdown from /docs/<slug> when the request sends an unambiguous Accept: text/markdown; mixed headers containing an HTML-capable range should use the exact .md URL or API format route. Markdown responses start with YAML frontmatter for title, optional description, canonical_url, markdown_url, and last_updated when a freshness date is known. Use embedded <Agent>...</Agent> or <Audience> blocks inside page.mdx when the normal page only needs extra machine context. Use <Human> or <Audience> to keep presentation-only content out of agent context, and add a sibling agent.md when the whole machine-readable page should be overridden. The shared docs API also supports GET /api/docs?format=markdown&path=<slug>. Page frontmatter related appears as a comma-separated machine-readable markdown metadata line beside Description unless a sibling agent.md fully overrides the page.
- Audience projection — rendered HTML and public search use the human projection; Markdown,
Ask AI, MCP,
llms-full.txt, and static agent exports use the agent projection. Compact
llms.txt contains discovery links to agent-projected Markdown, and sitemaps contain route
metadata only. Audience filtering is not authentication, so never place secrets in an audience
block or agent.md.
MCP quick test
To verify the HTTP MCP route in this repo, use the Next example:
pnpm --dir examples/next dev
Then point your MCP client or inspector at http://127.0.0.1:3000/mcp or http://127.0.0.1:3000/.well-known/mcp.
Critical: theme CSS
Every setup must import the theme's CSS in the global stylesheet. Without it, docs pages will not be styled.
- Next.js:
app/global.css → @import "@farming-labs/theme/<theme>/css"; (e.g. default, greentree, pixel-border).
- TanStack Start:
src/styles/app.css (or your main global CSS file) → @import "@farming-labs/theme/<theme>/css";
- Farm.js:
src/app/globals.css (or your main global CSS file) → @import "@farming-labs/theme/<theme>/css";
- SvelteKit:
src/app.css → @import "@farming-labs/theme/<theme>/css";
- Astro: Import in the docs layout or page file:
import "@farming-labs/theme/<theme>/css";
- Nuxt:
nuxt.config.ts → css: ["@farming-labs/theme/<theme>/css"]
Use the same theme name in docs.config and in the CSS import.
Core config: defineDocs
All frameworks use a single config file (docs.config.ts or docs.config.tsx):
import { defineDocs } from "@farming-labs/docs";
import { fumadocs } from "@farming-labs/theme"; // or svelte-theme, astro-theme, nuxt-theme
export default defineDocs({
entry: "docs",
contentDir: "docs", // SvelteKit, Astro, Nuxt
theme: fumadocs(),
metadata: {
titleTemplate: "%s – Docs",
description: "My documentation site",
},
});
- Next.js:
docs.config.ts at project root; wrap Next config with withDocs() from @farming-labs/next/config. Content lives under app/docs/ (path derived from entry).
- TanStack Start:
docs.config.ts or docs.config.tsx at project root; set contentDir and nav, create /api/docs, and load content from your docs/ directory via @farming-labs/tanstack-start/server.
- Farm.js:
docs.config.ts at project root; set contentDir and nav, then wrap Farm's defineConfig() result with withDocs() from @farming-labs/farmjs/config. Farm owns development and production docs routing.
- SvelteKit:
src/lib/docs.config.ts; routes under src/routes/docs/; set contentDir to the folder containing your markdown (e.g. docs).
- Astro:
src/lib/docs.config.ts; pages under src/pages/<entry>/; set contentDir.
- Nuxt:
docs.config.ts at project root; server/api/docs.ts and pages/docs/[...slug].vue; set contentDir and nav.
TanStack Start, Farm.js, SvelteKit, Astro, and Nuxt require contentDir (path to markdown files) and nav (sidebar title and base URL).
Optional generated pages
- API reference: Read references/api-reference.md when enabling
local route scanning, a hosted OpenAPI document, or non-Next handler routes.
- Changelog: Read references/changelog.md when adding the generated
Next.js release feed and dated entry pages.
Doc content and frontmatter
Docs live under the entry directory (e.g. docs/ or app/docs/). Each page is MDX or Markdown with frontmatter:
---
title: "Installation"
description: "Get up and running"
related:
- /docs/configuration
- /docs/customization/agent-primitive
icon: "rocket"
order: 1
---
# Installation
Content here.
Routing is file-based: docs/getting-started/page.mdx → /docs/getting-started. Use order in frontmatter to control sidebar order (numeric ordering).
Path aliases and defaults (CLI)
When running init and choosing Existing project, the CLI asks about path aliases (Next: @/, SvelteKit: $lib/, Nuxt: ~/ vs relative paths). If the user chooses "no alias", generated code uses relative paths to docs.config, and tsconfig may omit the paths block.
Optional defaults: Prompts that show a placeholder (entry path docs, theme name my-theme, project name my-docs, global CSS path) use that value as the default — the user can press Enter to accept without typing.
Static export
For fully static builds (e.g. Cloudflare Pages, no server), set staticExport: true in defineDocs(). This hides search and AI chat in the layout. Omit or do not deploy the docs API route so no server is required.
Common gotchas
- Theme CSS missing — Docs look unstyled until the theme CSS is imported in the global stylesheet (or Nuxt
css).
- Wrong theme helper package — Use the framework theme helper for
docs.config (e.g. @farming-labs/svelte-theme for SvelteKit), while theme CSS imports come from the shared @farming-labs/theme/<theme>/css path.
- From scratch — Use
init --template <next|tanstack-start|nuxt|sveltekit|astro> --name <project>; the CLI bootstraps a project with that name and runs install.
- Existing project — Run
init in the project root; the CLI detects the framework and scaffolds files.
- Static hosting — Set
staticExport: true; search and AI are then hidden.
- API reference on non-Next frameworks —
apiReference in docs.config is not enough by itself on TanStack Start, SvelteKit, Astro, or Nuxt; add the /{path} handler manually or let init --api-reference scaffold it, even when you use a remote specUrl.
- Changelog generation today — The built-in generated changelog pages are currently wired in Next.js. Use the Next adapter if you want the turn-key
/docs/changelogs flow.
- TanStack Start in a monorepo — If the app and docs packages live in the same workspace, keep
@farming-labs/docs, @farming-labs/theme, and @farming-labs/tanstack-start linked locally (for example workspace:*). This avoids Node 22 / Vercel loading raw adapter TypeScript from node_modules.
Resources
1---2name: getting-started3description: Get started with @farming-labs/docs — MDX-based documentation for Next.js, TanStack Start, Farm.js, SvelteKit, Astro, and Nuxt. Use when setting up docs, scaffolding with the CLI, choosing themes, changelog, API reference, or writing docs.config. Covers init, manual setup per framework, theme CSS, defineDocs, changelog, apiReference, entry, contentDir, and common gotchas.4---56# @farming-labs/docs — Getting Started78**Always consult the project docs (and `/docs` routes when available) for the latest API and examples.**910@farming-labs/docs is a modern, flexible MDX-based documentation framework. Write markdown, get a polished docs site. Supported frameworks: **Next.js**, **TanStack Start**, **Farm.js**, **SvelteKit**, **Astro**, **Nuxt**.1112---1314## Quick reference1516### CLI (see also the `cli` skill)1718| Scenario | Command |19| -------- | ------- |20| Interactive init (existing or fresh) | `npx @farming-labs/docs@latest init` — first asks **Existing project** or **Fresh project**; then theme (or Create your own theme), entry path, etc. Prompts with a placeholder (e.g. `docs`, `my-docs`) accept **Enter** as default. |21| Add docs to existing app | Run `init` in project root; choose **Existing project** when prompted. |22| Start from scratch (bootstrap, no prompts) | `npx @farming-labs/docs@latest init --template <next \| tanstack-start \| nuxt \| sveltekit \| astro> --name <project-name>` |23| Add generated API reference during init | `npx @farming-labs/docs@latest init --api-reference` (optional `--api-route-root <path>`) |24| Upgrade docs packages | `npx @farming-labs/docs@latest upgrade` — auto-detects `next`, `tanstack-start`, `nuxt`, `sveltekit`, or `astro`; use `--framework` if detection is ambiguous. |2526### Packages by framework2728| Framework | Core + adapter | Theme package |29| --------- | -------------- | -------------- |30| Next.js | `@farming-labs/docs`, `@farming-labs/next` | `@farming-labs/theme` |31| TanStack Start | `@farming-labs/docs`, `@farming-labs/tanstack-start` | `@farming-labs/theme` |32| Farm.js | `@farming-labs/docs`, `@farming-labs/farmjs` | `@farming-labs/theme` |33| SvelteKit | `@farming-labs/docs`, `@farming-labs/svelte` | `@farming-labs/svelte-theme` |34| Astro | `@farming-labs/docs`, `@farming-labs/astro` | `@farming-labs/astro-theme` |35| Nuxt | `@farming-labs/docs`, `@farming-labs/nuxt` | `@farming-labs/nuxt-theme` |3637Install only the Farming Labs package set for the chosen framework. Do not ask users to install38Fumadocs or Scalar packages directly; API reference renderers are bundled by `@farming-labs/docs`39and the framework adapters.4041### Built-in themes4243Twelve CLI-selectable built-in theme entrypoints: `fumadocs` (default), `darksharp`, `pixel-border`, `colorful`, `greentree`, `darkbold`, `shiny`, `ledger`, `shadcn`, `concrete`, `command-grid`, and `hardline`. `hardline` is the existing hard-edge preset, `concrete` is the louder brutalist poster-style variant, `command-grid` is the mono-first paper-grid preset inspired by the better-cmdk landing page, `ledger` is a Stripe Docs-inspired product docs shell, and `shadcn` recreates the compact neutral shadcn/ui documentation shell. The init CLI offers **Create your own theme** — it prompts for a theme name (default `my-theme`) and scaffolds `themes/<name>.ts` and `themes/<name>.css`. The theme name in config must match the theme's CSS import path (e.g. `shadcn` → `@farming-labs/theme/shadcn/css` for Next.js).4445### Built-in UI features4647- **MDX components** — built-ins like `Callout`, `Tabs`, `HoverLink`, `Agent`, `Human`, and48 `Audience` are available without imports. Content is shared by default. Use `<Agent>` or49 `<Audience only="agent">` for agent-only context, and `<Human>` or50 `<Audience only="human">` for human-only context. Keep `Audience.only` static and avoid spread51 props; `docs review` reports declarations that static agent outputs cannot resolve consistently.52- **Page feedback** — enable with `feedback: true` or `feedback: { enabled: true, onFeedback() {} }`.53- **Agent discovery** — agents can use the RFC 9727 `/.well-known/api-catalog` linkset and the hashed `/.well-known/agent-skills/index.json` index. The existing `/.well-known/agent.json` manifest remains the preferred Farming Labs document, with `/.well-known/agent` as fallback and `/api/docs/agent/spec` as its canonical framework route. These resources cross-link one another, and dynamic responses expose discovery `Link` headers.54- **Generated AGENTS.md** — `GET /AGENTS.md`, `GET /.well-known/AGENTS.md`, and `GET /api/docs?format=agents` return coding-agent instructions by default. A root `AGENTS.md` or `AGENT.md` overrides the generated fallback; use `docs agents generate` for static exports.55- **Generated robots.txt** — use `docs robots generate` to write a static policy that allows docs routes, `.md` routes, `llms.txt`, sitemaps, `AGENTS.md`, `skill.md`, the API catalog, Agent Skills discovery, MCP aliases, existing agent discovery routes, and common AI crawler user agents. Existing files are preserved by default; use `--append` to add the managed block or `--force` to replace the file.56- **Structured data** — every docs page emits Schema.org `TechArticle` JSON-LD with title, description, canonical URL, freshness, and breadcrumbs. It reuses `sitemap.baseUrl`, `llmsTxt.baseUrl`, `robots.baseUrl`, or `ai.docsUrl`; no separate config flag is required.57- **Agent feedback endpoints** — add `feedback.agent` when agents should report structured `{ context?, payload }` feedback through `/api/docs/agent/feedback` and `/api/docs/agent/feedback/schema`.58- **Page actions** — enable with `pageActions.copyMarkdown` and `pageActions.openDocs`.59- **Built-in changelog pages (Next.js)** — enable `changelog` to publish a release feed from dated MDX entries.60- **Built-in MCP server** — enabled by default at `/mcp` and `/.well-known/mcp`, backed by `/api/docs/mcp`, and for local stdio tools. Next.js wires rewrites with `withDocs()`; TanStack Start/SvelteKit/Astro/Nuxt scaffold one public forwarder each. Opt out with `mcp: false` or `mcp: { enabled: false }`.61- **Machine-readable markdown routes** — `/docs.md` and `/docs/<slug>.md` return agent-ready markdown in Next.js and in the generated TanStack Start, SvelteKit, Astro, and Nuxt forwarding layer. Next.js also returns the same markdown from `/docs/<slug>` when the request sends an unambiguous `Accept: text/markdown`; mixed headers containing an HTML-capable range should use the exact `.md` URL or API format route. Markdown responses start with YAML frontmatter for `title`, optional `description`, `canonical_url`, `markdown_url`, and `last_updated` when a freshness date is known. Use embedded `<Agent>...</Agent>` or `<Audience only="agent">...</Audience>` blocks inside `page.mdx` when the normal page only needs extra machine context. Use `<Human>` or `<Audience only="human">` to keep presentation-only content out of agent context, and add a sibling `agent.md` when the whole machine-readable page should be overridden. The shared docs API also supports `GET /api/docs?format=markdown&path=<slug>`. Page frontmatter `related` appears as a comma-separated machine-readable markdown metadata line beside `Description` unless a sibling `agent.md` fully overrides the page.62- **Audience projection** — rendered HTML and public search use the human projection; Markdown,63 Ask AI, MCP, `llms-full.txt`, and static agent exports use the agent projection. Compact64 `llms.txt` contains discovery links to agent-projected Markdown, and sitemaps contain route65 metadata only. Audience filtering is not authentication, so never place secrets in an audience66 block or `agent.md`.6768### MCP quick test6970To verify the HTTP MCP route in this repo, use the Next example:7172```bash73pnpm --dir examples/next dev74```7576Then point your MCP client or inspector at `http://127.0.0.1:3000/mcp` or `http://127.0.0.1:3000/.well-known/mcp`.7778---7980## Critical: theme CSS8182**Every setup must import the theme's CSS** in the global stylesheet. Without it, docs pages will not be styled.8384- **Next.js:** `app/global.css` → `@import "@farming-labs/theme/<theme>/css";` (e.g. `default`, `greentree`, `pixel-border`).85- **TanStack Start:** `src/styles/app.css` (or your main global CSS file) → `@import "@farming-labs/theme/<theme>/css";`86- **Farm.js:** `src/app/globals.css` (or your main global CSS file) → `@import "@farming-labs/theme/<theme>/css";`87- **SvelteKit:** `src/app.css` → `@import "@farming-labs/theme/<theme>/css";`88- **Astro:** Import in the docs layout or page file: `import "@farming-labs/theme/<theme>/css";`89- **Nuxt:** `nuxt.config.ts` → `css: ["@farming-labs/theme/<theme>/css"]`9091Use the same theme name in `docs.config` and in the CSS import.9293---9495## Core config: defineDocs9697All frameworks use a single config file (`docs.config.ts` or `docs.config.tsx`):9899```ts100import { defineDocs } from "@farming-labs/docs";101import { fumadocs } from "@farming-labs/theme"; // or svelte-theme, astro-theme, nuxt-theme102103export default defineDocs({104 entry: "docs",105 contentDir: "docs", // SvelteKit, Astro, Nuxt106 theme: fumadocs(),107 metadata: {108 titleTemplate: "%s – Docs",109 description: "My documentation site",110 },111});112```113114- **Next.js:** `docs.config.ts` at project root; wrap Next config with `withDocs()` from `@farming-labs/next/config`. Content lives under `app/docs/` (path derived from `entry`).115- **TanStack Start:** `docs.config.ts` or `docs.config.tsx` at project root; set `contentDir` and `nav`, create `/api/docs`, and load content from your `docs/` directory via `@farming-labs/tanstack-start/server`.116- **Farm.js:** `docs.config.ts` at project root; set `contentDir` and `nav`, then wrap Farm's `defineConfig()` result with `withDocs()` from `@farming-labs/farmjs/config`. Farm owns development and production docs routing.117- **SvelteKit:** `src/lib/docs.config.ts`; routes under `src/routes/docs/`; set `contentDir` to the folder containing your markdown (e.g. `docs`).118- **Astro:** `src/lib/docs.config.ts`; pages under `src/pages/<entry>/`; set `contentDir`.119- **Nuxt:** `docs.config.ts` at project root; `server/api/docs.ts` and `pages/docs/[...slug].vue`; set `contentDir` and `nav`.120121TanStack Start, Farm.js, SvelteKit, Astro, and Nuxt require `contentDir` (path to markdown files) and `nav` (sidebar title and base URL).122123---124125## Optional generated pages126127- **API reference:** Read [references/api-reference.md](references/api-reference.md) when enabling128 local route scanning, a hosted OpenAPI document, or non-Next handler routes.129- **Changelog:** Read [references/changelog.md](references/changelog.md) when adding the generated130 Next.js release feed and dated entry pages.131132---133134## Doc content and frontmatter135136Docs live under the `entry` directory (e.g. `docs/` or `app/docs/`). Each page is MDX or Markdown with frontmatter:137138```mdx139---140title: "Installation"141description: "Get up and running"142related:143 - /docs/configuration144 - /docs/customization/agent-primitive145icon: "rocket"146order: 1147---148149# Installation150151Content here.152```153154Routing is file-based: `docs/getting-started/page.mdx` → `/docs/getting-started`. Use `order` in frontmatter to control sidebar order (numeric ordering).155156---157158## Path aliases and defaults (CLI)159160When running `init` and choosing **Existing project**, the CLI asks about path aliases (Next: `@/`, SvelteKit: `$lib/`, Nuxt: `~/` vs relative paths). If the user chooses "no alias", generated code uses relative paths to `docs.config`, and `tsconfig` may omit the `paths` block.161162**Optional defaults:** Prompts that show a placeholder (entry path `docs`, theme name `my-theme`, project name `my-docs`, global CSS path) use that value as the default — the user can press **Enter** to accept without typing.163164---165166## Static export167168For fully static builds (e.g. Cloudflare Pages, no server), set `staticExport: true` in `defineDocs()`. This hides search and AI chat in the layout. Omit or do not deploy the docs API route so no server is required.169170---171172## Common gotchas1731741. **Theme CSS missing** — Docs look unstyled until the theme CSS is imported in the global stylesheet (or Nuxt `css`).1752. **Wrong theme helper package** — Use the framework theme helper for `docs.config` (e.g. `@farming-labs/svelte-theme` for SvelteKit), while theme CSS imports come from the shared `@farming-labs/theme/<theme>/css` path.1763. **From scratch** — Use `init --template <next|tanstack-start|nuxt|sveltekit|astro> --name <project>`; the CLI bootstraps a project with that name and runs install.1774. **Existing project** — Run `init` in the project root; the CLI detects the framework and scaffolds files.1785. **Static hosting** — Set `staticExport: true`; search and AI are then hidden.1796. **API reference on non-Next frameworks** — `apiReference` in `docs.config` is not enough by itself on TanStack Start, SvelteKit, Astro, or Nuxt; add the `/{path}` handler manually or let `init --api-reference` scaffold it, even when you use a remote `specUrl`.1807. **Changelog generation today** — The built-in generated changelog pages are currently wired in Next.js. Use the Next adapter if you want the turn-key `/docs/changelogs` flow.1818. **TanStack Start in a monorepo** — If the app and docs packages live in the same workspace, keep `@farming-labs/docs`, `@farming-labs/theme`, and `@farming-labs/tanstack-start` linked locally (for example `workspace:*`). This avoids Node 22 / Vercel loading raw adapter TypeScript from `node_modules`.182183---184185## Resources186187- **Repo:** [github.com/farming-labs/docs](https://github.com/farming-labs/docs)188- **Docs site:** [docs.farming-labs.dev](https://docs.farming-labs.dev) (or the project's `/docs` route)189- **Other skills in this repo:** `cli`, `creating-themes`, `ask-ai`, `page-actions`, `configuration` under `skills/farming-labs/`.