Skip to main content

Commands

Every command referenced by these docs, traced to the root package.json script that defines it.

CommandWhat it does
pnpm installInstall all workspace dependencies.
pnpm devprocess-compose up — the full local stack (see Quick Start).
pnpm supabase:startStart local Supabase, with secrets redacted from output.
pnpm supabase:stopStop local Supabase.
pnpm supabase:resetStop, remove stale Docker volumes, restart — the standard stuck-stack fix.
pnpm typechecktsc --build across the explicit tsconfig.json references list.
pnpm linteslint .
pnpm format:checkprettier --check .
pnpm testvitest run, repo-wide.
pnpm buildtsc --build (same scope as typecheck).
pnpm build:libstsc --build tsconfig.libs.json — a narrower set of packages built for deploy; does not include packages/mcp-tool-server.
pnpm docs:mcp-toolsRegenerate the MCP Tool Reference from the live tool registry.
pnpm db:migrateRun Drizzle migrations against @jobweave/db.
pnpm db:seedSeed the local database.
pnpm wlRun the job CLI from source (apps/cli/src/index.ts) via tsx.

Website-local commands (run from website/, not the repo root — see Monorepo Layout):

CommandWhat it does
pnpm installInstall the docs site's own dependencies (separate lockfile).
pnpm buildBuild the static site to website/build/.
pnpm startRun the Docusaurus dev server.