https://github.com/copilotkit/vnext_experimental
https://github.com/copilotkit/vnext_experimental
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/copilotkit/vnext_experimental
- Owner: CopilotKit
- License: other
- Created: 2025-09-03T08:19:57.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-12-17T15:54:03.000Z (4 months ago)
- Last Synced: 2025-12-17T18:18:18.832Z (4 months ago)
- Language: TypeScript
- Size: 4.08 MB
- Stars: 7
- Watchers: 0
- Forks: 4
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CopilotKit vnext_experimental
A modern TypeScript-first copilot framework built with React components and AI agents.
## Development
### Prerequisites
- Node.js 18+
- pnpm 9+
### Setup
```bash
pnpm install
```
### Available Commands
#### Build
```bash
# Build all packages
pnpm turbo run build
# Build specific package
pnpm turbo run build --filter=@copilotkitnext/react
```
#### Development
```bash
# Run tests
pnpm turbo run test
# Run tests in watch mode
pnpm turbo run test:watch
# Type checking
pnpm turbo run check-types
# Linting
pnpm turbo run lint
```
#### Storybook
```bash
# Start Storybook development server
pnpm turbo run storybook:dev --filter=storybook
# Build Storybook for production
pnpm turbo run storybook:build --filter=storybook
```
### Package Structure
- `packages/core` - Core utilities and types
- `packages/react` - React components and hooks
- `packages/runtime` - Server-side runtime handlers
- `packages/shared` - Common utilities
- `apps/storybook` - Component documentation and examples