Instructions for AI coding agents working with this codebase.
Always check the latest version before installing a package.
Before adding or updating any dependency, verify the current latest version on npm:
npm view <package-name> version
Or check multiple packages at once:
npm view ai version
npm view @ai-sdk/provider-utils version
npm view zod version
This ensures we don't install outdated versions that may have incompatible types or missing features.
pnpm dlx shadcn@latest add <component>apps/web/): Never use Markdown table syntax (| col | col |). Always use HTML <table> with <thead>, <tbody>, <tr>, <th>, <td>. Markdown tables do not render correctly in the web app. Inside HTML table cells, curly braces must be escaped as JSX expressions (e.g. <code>{'{ "$state": "/path" }'}</code>) because MDX parses { as a JSX expression boundary.When using the Vercel AI SDK (ai package) with AI Gateway, pass the model as a plain string identifier -- do not import a provider constructor:
import { streamText } from "ai";
const result = streamText({
model: "anthropic/claude-haiku-4.5",
prompt: "...",
});
This requires AI_GATEWAY_API_KEY to be set in the environment. See tests/e2e/ for examples.
All apps and examples with dev servers use portless to avoid hardcoded ports. Portless assigns random ports and exposes each app via .localhost URLs.
Naming convention:
json-render → json-render.localhost:1355[name]-demo.json-render → [name]-demo.json-render.localhost:1355When adding a new example that runs a dev server, wrap its dev script with portless <name>:
{
"scripts": {
"dev": "portless my-example-demo.json-render next dev --turbopack"
}
}
Do not add --port flags -- portless handles port assignment automatically. Do not add portless as a project dependency; it must be installed globally.
pnpm type-check after each turn to ensure type safetyREADME.md files in packages/*/README.mdREADME.md (if packages table, install commands, or examples are affected)apps/web/ (if guides, API references, or examples need updating)skills/*/SKILL.md (if the package has a corresponding skill)AGENTS.md (if workflow or conventions change)This monorepo uses Changesets for versioning and publishing.
All public @json-render/* packages are in a fixed group (see .changeset/config.json). A changeset that bumps any one of them bumps all of them to the same version. You only need to list the packages that actually changed in the changeset front matter — the fixed group handles the rest.
When asked to prepare a release (e.g. "prepare v0.12.0"):
.changeset/v0-<N>-release.md following the existing pattern:
minor for feature releases, patch for bug-fix-only releases)### New: / ### Improved: / ### Fixed: sections describing each change@json-render/core plus any packages with actual code changespackage.json files — CI runs pnpm ci:version (which calls changeset version) to do that automaticallyCHANGELOG.md entries — changeset version generates them from the changeset file.changeset/config.json if they should be versioned together with the restREADME.md packages tableREADME.md (if it's a renderer)apps/web/app/(main)/docs/api/<name>/page.mdxapps/web/lib/page-titles.ts and apps/web/lib/docs-navigation.tsapps/web/app/api/docs-chat/route.ts)skills/<name>/SKILL.mdpackages/<name>/README.mdpnpm type-check after all changes to verify nothing is brokenpnpm changeset — interactively create a new changesetpnpm ci:version — run changeset version + lockfile update (CI only)pnpm ci:publish — build all packages and publish to npm (CI only)Source code for dependencies is available in opensrc/ for deeper understanding of implementation details.
See opensrc/sources.json for the list of available packages and their versions.
Use this source code when you need to understand how a package works internally, not just its types/interface.
To fetch source code for a package or repository you need to understand, run:
npx opensrc <package> # npm package (e.g., npx opensrc zod)
npx opensrc pypi:<package> # Python package (e.g., npx opensrc pypi:requests)
npx opensrc crates:<package> # Rust crate (e.g., npx opensrc crates:serde)
npx opensrc <owner>/<repo> # GitHub repo (e.g., npx opensrc vercel/ai)