Claude Code Plugins

Community-maintained marketplace

Feedback

Development server and build commands for Oak AI project including running dev server on port 2525, production and development builds, and running scripts with environment variables. Use when starting local development, building the project, or running scripts.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name local-development
description Development server and build commands for Oak AI project including running dev server on port 2525, production and development builds, and running scripts with environment variables. Use when starting local development, building the project, or running scripts.

Local Development

Development Server

Start the Next.js development server:

pnpm dev
  • Runs on port 2525
  • Hot reload enabled

Build Commands

Production Build

pnpm build

Development Build

pnpm build:dev

Running Scripts with Environment Variables

Use pnpm with-env to run scripts with environment variables loaded:

pnpm with-env tsx src/script.ts

Monorepo Structure

This is a Turborepo monorepo using pnpm workspaces. Target specific packages with --filter:

pnpm --filter @oakai/nextjs dev
pnpm --filter @oakai/aila build