examples/showcases/chatkit-studio/README.md
Explore and build embeddable chat experiences.
# Install dependencies
pnpm install
# Setup environment variables for agents (optional)
cp apps/playground/agent/.env.example apps/playground/agent/.env
cp apps/world/agent/.env.example apps/world/agent/.env
# Edit the .env files with your API keys
# Run all apps concurrently
pnpm dev
# Run individual apps
pnpm dev:studio # Studio launcher only
pnpm dev:playground # Playground app only
pnpm dev:world # World app only
open-chatkit-studio/
├── apps/
│ ├── studio/ # Main launcher (Next.js 15)
│ ├── playground/ # AG-UI Playground with LangGraph agent
│ └── world/ # CopilotKit World Explorer
├── package.json # Root workspace config
├── pnpm-workspace.yaml
└── turbo.json # Turborepo config
This is a monorepo combining multiple chat applications:
Each app runs on its own port and can be developed independently. The studio launcher provides a unified entry point with visual cards linking to each application.
pnpm build
pnpm build:studio
pnpm build:playground
pnpm build:world
Playground and World apps each have their own LangGraph agents:
# Playground agent (port 8124)
cd apps/playground && pnpm dev:agent
# World agent (port 8125)
cd apps/world && pnpm dev:agent