Stack Decisions
These are the current default decisions for new TypeScript product work and shared config repos.
Core Versions
Pin these unless there is a deliberate repo-specific reason not to:
| Tool | Baseline |
|---|---|
pnpm | 11.10.0 |
turbo | 2.10.4 |
typescript | 6.0.3 |
husky | 9.1.7 |
lint-staged | 17.0.8 |
@howells/lint | 1.0.0 |
@howells/typescript-config | 0.1.6 |
@howells/envy | 0.3.7 |
| Node | latest Node 24 LTS patch (currently 24.18.0) |
Package Manager
- Use
pnpm. - Pin
packageManagerin the rootpackage.json. - Prefer one lockfile at the repo root.
- Treat
pnpm@11.10.0as the settled baseline. - Use Node 24 LTS for development, CI, apps, and services.
- Default workspace layout is:
packages:
- "apps/*"
- "packages/*"Node Version Policy
Use Node 24 LTS as the Howells stack baseline.
Defaults:
- app and service repos:
"node": ">=24.18.0 <25" - CI: Node
24.x - local version files: pin the latest Node 24 LTS patch
- published packages: keep runtime support at
>=22.22.3when the package does not need Node 24 APIs, but build and test on Node 24
Do not start new work on Node 20. It is end-of-life. Do not standardize on Node 26 until it reaches LTS.
Turborepo
Use Turbo as an orchestrator, not as a place to hide complexity.
- Keep
turbo.jsonsmall. - Keep cache disabled by default.
- Keep
globalDependencieslimited to.envfiles. - Scope environment variables at the task level, not globally.
- Put package-specific exceptions in leaf packages when needed.
- Avoid deprecated
turbo run --parallel; let persistentdevtasks run through task config.
The recent pattern across active Turborepos is clear: hidden stale-cache failures cost more than slower local runs.
TypeScript
Use @howells/typescript-config and select the leaf preset explicitly:
- Next.js app:
@howells/typescript-config/nextjs - Bundler DOM app:
@howells/typescript-config/bundler-dom-app - React library:
@howells/typescript-config/react-library - Non-DOM app:
@howells/typescript-config/bundler-no-dom-app - Non-DOM package:
@howells/typescript-config/bundler-no-dom-library-monorepoortsc-no-dom-library
Rules:
- do not reintroduce a vague
base.json - keep shared presets thin
- keep local
pathsandbaseUrlin the consumer repo only
Linting and Formatting
Prefer the Oxlint/Oxfmt lane through @howells/lint.
Default preset selection:
- non-React or server repo:
@howells/lint/oxlint/core - React package:
@howells/lint/oxlint/react - Next.js app:
@howells/lint/oxlint/next - formatting:
@howells/lint/oxfmt
Rules:
- avoid repo-local lint wrappers unless the repo has a genuinely unique constraint
- do not install direct
oxlint,oxfmt, Biome, Prettier, or ESLint dependencies in consumer repos - use
howells-check,howells-fix,howells-oxlint, andhowells-oxfmtinstead of raw tool binaries - prefer inline suppressions over broad config weakening
- keep format and lint behavior consistent across repos
For env access, use @howells/envy lint helpers with Oxlint when a repo needs to enforce "no direct process.env" strongly.
Environment Variables
Use @howells/envy for repos with runtime configuration.
Default approach:
- put the schema in
packages/env - parse explicitly by default
- expose separate server and client env modules
- allow direct
process.envonly inside the env boundary - run local env checks in
pnpm check - run Vercel or Railway env checks before deploy
Do not keep hand-written dotenv loading, ad hoc process.env reads, or provider env setup scripts once Envy can own that surface.
Husky and Git Hooks
Use Husky for lightweight quality gates.
Default approach:
prepare:huskypre-commit: runlint-staged, then repo-widelintandtypecheckpre-push: only when the repo needs a heavier gate such astestor stricter validation
Across recent repos, the stable baseline is small hooks plus standard root scripts.
UI Stack
For new UI repos:
- Next.js 16.2 App Router
- React 19.2
- Tailwind CSS 4.3
- Base UI primitives (
@base-ui/react) motionfor animation, imported frommotion/reactin React code- Storybook for reusable exported components
- the bundled UI baseline as the starting point for shared UI packages
Use Base UI as the primitive layer for new repos. shadcn defaults to Base UI as of July 2026, so npx shadcn init scaffolds Base UI-backed components. Base UI ships as a single package, @base-ui/react — do not split it into per-component packages.
Radix stays a supported deliberate opt-out. Choose it with npx shadcn init -b radix when a repo has a concrete reason. On Radix, use the unified radix-ui package. Do not install the split per-component Radix packages.
This does not mean every product should look the same. It means structural decisions should be shared while brand and product expression stay local.
Next 16 baseline
- Turbopack is the default bundler.
- Adopt Cache Components (
use cache) as the caching model. - Use
proxy.tsfor request interception.middleware.tsis deprecated. This repo ships aproxy.tsexample itself — markdown content negotiation on the docs routes.
Client Data Fetching
Use @tanstack/react-query for all client-side data fetching. No raw fetch in components.
Rules:
- Create a
lib/api.tswith typed hooks (usePersonas,useEvaluation, etc.) wrappinguseQueryanduseMutation - Create a
lib/query-provider.tsxclient component withQueryClientProvider - Server Components fetch data directly from the database or internal packages — React Query is only for client components
- Mutations should invalidate related query keys on success
- SSE streams and one-shot fire-and-forget fetches are the only exceptions to using React Query
Pattern:
// lib/api.ts
export function usePersonas() {
return useQuery({
queryKey: ["personas"],
queryFn: () => apiFetch<Persona[]>("/api/personas"),
});
}
export function useUpdatePersona() {
const qc = useQueryClient();
return useMutation({
mutationFn: ({ id, data }) => apiFetch(`/api/personas/${id}`, { method: "PUT", ... }),
onSuccess: (_, { id }) => {
qc.invalidateQueries({ queryKey: ["personas"] });
qc.invalidateQueries({ queryKey: ["personas", id] });
},
});
}This replaces useEffect + useState + fetch patterns. React Query handles loading states, error states, caching, and cache invalidation.
Dependency Standard
The active repos are not just converging on config. They are also converging on a real dependency baseline.
The strongest direct-dependency signals in the 2026-05 inventory are:
typescript: 90 projectsreact: 80 projectstailwindcss: 75 projectsnext: 72 projectszod: 54 projects@howells/lint: 48 projectslucide-react: 48 projectsvitest: 47 projectsturbo: 45 projectsmotion: 44 projectstsx: 43 projects@howells/typescript-config: 40 projectsdrizzle-orm: 33 projects@neondatabase/serverless: 31 projectsai: 22 projects@mastra/core: 18 projects@modelcontextprotocol/sdk: 18 projects
The packages that recur most often in UI work are:
motionlucide-reactzodclsxtailwind-mergesonnernuqsnext-themesdate-fns@tanstack/react-queryusehooks-ts@base-ui/react@howells/envy
The repeated package names across your Turborepos are also clear enough to treat as default boundaries, not accidental patterns:
- first tier:
db,ui,typescript-config,tailwind-config - second tier:
utils,trpc,motion,auth,mastra,agents,mcp, repo-localaipackages above@howells/ai - optional but frequent:
assets,upload,storage,env,config
The detailed policy lives in Default Dependencies.
For media-heavy projects, there is also a platform-level default:
- use
howells/motiffor image generation, editing, utility media tools, and agent-facing creative automation - prefer the house media storage platform for image, vector, and general media storage/delivery
- use
files-sdkbehind storage/upload packages when project code needs a portable object/blob API across S3-compatible storage, R2, GCS, Azure Blob, Vercel Blob, Netlify Blobs, MinIO, or similar providers
There is also a recurring architecture baseline for full-stack apps:
tRPCfor typed API boundaries- React Query for server state
- Drizzle plus Neon for persistence
The detailed guidance lives in Architecture Defaults.
AI, Agents, and MCP
AI-capable repos are now common enough that they should have a standard starting shape.
Default package choices:
ai(AI SDK v6) for the Vercel AI SDK surface@howells/aifor shared provider defaults and house wrappershowells/motifpackages when image generation, image editing, media utilities, CLI automation, or MCP image tools are part of the productzodfor structured model IO and tool schemas@mastra/coreandmastrawhen the repo needs agent orchestration, memory, observability, or workflow structure@modelcontextprotocol/sdkwhen the repo exposes MCP tools, resources, or transports- provider packages such as
@ai-sdk/openai,@ai-sdk/anthropic,@ai-sdk/google, and@openrouter/ai-sdk-provideronly when a direct-provider need justifies them
Model access
Default model access is the AI Gateway. On AI SDK v6 the global provider is the Vercel AI Gateway, so pass a "provider/model" string straight into AI SDK calls and requests route through the Gateway. This is the default surface — one credential, provider switching without new SDK wiring, and no per-provider client in app code.
Per-provider @ai-sdk/* packages are the escape hatch for direct-provider needs, and they still sit behind @howells/ai. Keep model-string selection behind that boundary rather than hardcoding provider strings across app routes.
Default boundaries:
packages/aifor repo-specific model/provider composition above@howells/aipackages/mastrafor Mastra runtime code, agents, tools, workflows, storage, memory, observability, scorers, and runtime routespackages/agentsfor reusable non-Mastra product agents, evaluators, prompts, and tool wiringpackages/mcporpackages/mcp-serverfor MCP contracts and server codepackages/cliwhen ingestion or model workflows need a real command line
Do not scatter raw provider clients through app routes. Keep provider plumbing behind @howells/ai or a repo-local packages/ai boundary.
Use Agentic Development for Mastra, agentsurface.dev, MCP, tool design, workflows, memory, and observability guidance.
Documentation
If the repo needs a docs site:
- prefer Fumadocs for Next.js-based docs experiences
- otherwise keep docs as plain Markdown until the repo actually needs a full docs UI
Do not install a docs framework out of habit.