Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
copilotkit avatar

Copilotkit Setup

  • 466 installs
  • 35 repo stars
  • Updated June 3, 2026
  • copilotkit/skills

copilotkit-setup is a CopilotKit agent skill that bootstraps packages, providers, copilot runtime, and minimum project structure for developers adding first CopilotKit agent features to new or existing apps.

About

copilotkit-setup is a copilotkit/skills agent skill that bootstraps CopilotKit into a new or existing application by installing required packages, configuring React or Next.js providers, wiring the CopilotKit runtime, and establishing the minimum folder and hook structure for first agent-powered UI features. Developers reach for copilotkit-setup when starting a CopilotKit integration from scratch, adding copilot chat or action hooks to an existing React codebase, or validating that runtime endpoints and provider wrappers are correctly placed before building custom agents. The skill reduces setup errors around missing providers, uninitialized runtime routes, and incomplete SDK installation steps common in first CopilotKit PRs.

  • Package and provider installation
  • Runtime and env configuration
  • Project scaffold conventions
  • First copilot entry component
  • Baseline agent-ready app structure

Copilotkit Setup by the numbers

  • 466 all-time installs (skills.sh)
  • Ranked #1,851 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Jul 29, 2026 (Skillselion catalog sync)
npx skills add https://github.com/copilotkit/skills --skill copilotkit-setup

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs466
repo stars35
Last updatedJune 3, 2026
Repositorycopilotkit/skills

How do you set up CopilotKit in a Next.js app?

Bootstrap a new or existing app with CopilotKit: install packages, configure providers, add the copilot runtime, and establish the minimum project structure for first agent features.

Who is it for?

Developers integrating CopilotKit agents into a new or existing React or Next.js app who need end-to-end SDK bootstrap guidance.

Skip if: Teams already running CopilotKit who only need version bumps and breaking-change migrations should use copilotkit-upgrade instead.

When should I use this skill?

User asks to add CopilotKit, set up copilot runtime, install CopilotKit packages, or bootstrap first agent features in an app.

What you get

Installed CopilotKit packages, configured providers, copilot runtime route, and starter project structure for agent UI hooks

  • CopilotKit provider setup
  • Copilot runtime route
  • Starter agent hook structure

Files

SKILL.mdMarkdownGitHub ↗

CopilotKit Setup

Prerequisites

Live Documentation (MCP)

This plugin includes an MCP server (copilotkit-docs) that provides search-docs and search-code tools for querying live CopilotKit documentation and source code.

  • Claude Code: Auto-configured by the plugin's .mcp.json -- no setup needed.
  • Codex: Requires manual configuration. See the copilotkit-debug skill for setup instructions.

Environment

Before starting setup, verify:

1. Node.js >= 18 (required for fetch globals used by the runtime) 2. An AI provider API key (one of: OPENAI_API_KEY, ANTHROPIC_API_KEY, GOOGLE_API_KEY) 3. A React-based frontend (Next.js App Router, Next.js Pages Router, Vite + React, or Angular) 4. A backend capable of running the runtime (same Next.js app via API routes, or a standalone Express/Hono server)

Framework Detection

Before generating any code, detect the project's framework by checking files in the project root. See references/framework-detection.md for the full decision tree.

Quick summary:

Signal FileFramework
next.config.{js,ts,mjs} + app/ directoryNext.js App Router
next.config.{js,ts,mjs} + pages/ directoryNext.js Pages Router
angular.jsonAngular
vite.config.{js,ts} + React deps in package.jsonVite + React

Setup Workflow

Step 1: Install packages

All packages use the @copilotkit namespace.

Frontend (React) packages:

npm install @copilotkit/react @copilotkit/core

Runtime packages (backend):

npm install @copilotkit/runtime @copilotkit/agent

If the runtime runs in the same Next.js app as the frontend, install all four packages together.

For standalone Express backends, also install Express adapter dependencies:

npm install express cors
npm install -D @types/express @types/cors

Step 2: Configure the runtime

The runtime is the server-side component that manages agent execution. See references/runtime-architecture.md for details.

There are two endpoint styles:

1. Multi-route (Hono) -- uses createCopilotEndpoint. Requires a catch-all route ([[...slug]] in Next.js). Each operation (run, connect, stop, info, transcribe, threads) gets its own HTTP path. 2. Single-route (Hono or Express) -- uses createCopilotEndpointSingleRoute or createCopilotEndpointSingleRouteExpress. All operations go through a single POST endpoint with method multiplexing.

Next.js App Router (recommended: multi-route with Hono)

Create src/app/api/copilotkit/[[...slug]]/route.ts:

import {
  CopilotRuntime,
  createCopilotEndpoint,
  InMemoryAgentRunner,
} from "@copilotkit/runtime";
import { BuiltInAgent } from "@copilotkit/agent";
import { handle } from "hono/vercel";

const agent = new BuiltInAgent({
  model: "openai/gpt-4o",
  prompt: "You are a helpful AI assistant.",
});

const runtime = new CopilotRuntime({
  agents: {
    default: agent,
  },
  runner: new InMemoryAgentRunner(),
});

const app = createCopilotEndpoint({
  runtime,
  basePath: "/api/copilotkit",
});

export const GET = handle(app);
export const POST = handle(app);

This requires hono as a dependency:

npm install hono
Next.js App Router (alternative: single-route)

Create src/app/api/copilotkit/route.ts:

import {
  CopilotRuntime,
  createCopilotEndpointSingleRoute,
  InMemoryAgentRunner,
} from "@copilotkit/runtime";
import { BuiltInAgent } from "@copilotkit/agent";
import { handle } from "hono/vercel";

const agent = new BuiltInAgent({
  model: "openai/gpt-4o",
  prompt: "You are a helpful AI assistant.",
});

const runtime = new CopilotRuntime({
  agents: {
    default: agent,
  },
  runner: new InMemoryAgentRunner(),
});

const app = createCopilotEndpointSingleRoute({
  runtime,
  basePath: "/api/copilotkit",
});

export const POST = handle(app);

When using single-route, the frontend must set useSingleEndpoint on the provider (see Step 3).

Standalone Express Server

Create src/index.ts:

import express from "express";
import { CopilotRuntime } from "@copilotkit/runtime";
import { createCopilotEndpointSingleRouteExpress } from "@copilotkit/runtime/express";
import { BuiltInAgent, defineTool } from "@copilotkit/agent";
import { z } from "zod";

const agent = new BuiltInAgent({
  model: "openai/gpt-4o",
});

const runtime = new CopilotRuntime({
  agents: {
    default: agent,
  },
});

const app = express();

app.use(
  "/api/copilotkit",
  createCopilotEndpointSingleRouteExpress({
    runtime,
    basePath: "/",
  }),
);

const port = Number(process.env.PORT ?? 4000);
app.listen(port, () => {
  console.log(`CopilotKit runtime listening at http://localhost:${port}/api/copilotkit`);
});

For multi-route Express, use createCopilotEndpointExpress instead (imported from @copilotkit/runtime/express).

Standalone Hono Server (non-Vercel)
import { CopilotRuntime, createCopilotEndpoint } from "@copilotkit/runtime";
import { BuiltInAgent } from "@copilotkit/agent";
import { serve } from "@hono/node-server";

const runtime = new CopilotRuntime({
  agents: {
    default: new BuiltInAgent({ model: "openai/gpt-4o" }),
  },
});

const app = createCopilotEndpoint({
  runtime,
  basePath: "/api/copilotkit",
});

serve({ fetch: app.fetch, port: 8787 });

Requires @hono/node-server:

npm install hono @hono/node-server

Step 3: Set up the frontend provider

Wrap your application with CopilotKitProvider from @copilotkit/react.

Important: Import the stylesheet in your root layout:

import "@copilotkit/react/styles.css";
Next.js App Router

In src/app/page.tsx (or a client component):

"use client";

import { CopilotKitProvider, CopilotChat } from "@copilotkit/react";

export default function Home() {
  return (
    <CopilotKitProvider runtimeUrl="/api/copilotkit">
      <div style={{ height: "100vh" }}>
        <CopilotChat />
      </div>
    </CopilotKitProvider>
  );
}
Connecting to an external runtime

When the runtime runs on a separate server (e.g., Express on port 4000):

<CopilotKitProvider
  runtimeUrl="http://localhost:4000/api/copilotkit"
  useSingleEndpoint
>
  {children}
</CopilotKitProvider>

Set useSingleEndpoint when the backend uses single-route endpoints (createCopilotEndpointSingleRoute or createCopilotEndpointSingleRouteExpress).

CopilotKitProvider key props
PropTypeDescription
runtimeUrlstringURL of the CopilotKit runtime endpoint
useSingleEndpointbooleanSet to true when using single-route endpoints
headersRecord<string, string>Custom headers sent with every request
credentialsRequestCredentialsFetch credentials mode (e.g., "include" for cookies)
publicApiKeystringCopilot Cloud public API key (if using hosted runtime)
showDevConsole`boolean \"auto"`
renderToolCallsReactToolCallRenderer[]Custom renderers for tool call UI
frontendToolsReactFrontendTool[]Frontend-defined tools (declarative alternative to useFrontendTool)
onError(event) => voidGlobal error handler

Step 4: Add a chat UI component

CopilotKit provides three pre-built chat layouts:

ComponentUsage
CopilotChatInline chat, fills its container
CopilotSidebarCollapsible sidebar panel
CopilotPopupFloating popup widget

Example with sidebar:

<CopilotKitProvider runtimeUrl="/api/copilotkit" showDevConsole="auto">
  <YourApp />
  <CopilotSidebar
    defaultOpen
    width="420px"
    labels={{
      modalHeaderTitle: "AI Assistant",
      chatInputPlaceholder: "Ask me anything...",
    }}
  />
</CopilotKitProvider>

Step 5: Set environment variables

Create a .env.local (Next.js) or .env file:

OPENAI_API_KEY=sk-...

The BuiltInAgent automatically resolves API keys from environment variables based on the model prefix:

  • openai/* models read OPENAI_API_KEY
  • anthropic/* models read ANTHROPIC_API_KEY
  • google/* models read GOOGLE_API_KEY

You can also pass apiKey directly to BuiltInAgent if needed.

Step 6: Connect to the cloud platform (telemetry)

CopilotKit uses telemetry to understand adoption, improve the product, and provide better support. Connecting to the CopilotKit cloud platform gives you access to analytics and optional premium features.

1. Ask the user if they'd like to connect to the CopilotKit cloud platform (default: yes). 2. If yes, run the CopilotKit CLI authentication flow (verify the exact command with npx copilotkit --help as it may vary by version):

   npx copilotkit auth

3. Guide the user through the browser-based authentication that opens. 4. Once authentication completes, the CLI outputs a license key (format: ck_...). 5. Add the license key to the CopilotKitProvider:

   <CopilotKitProvider
     runtimeUrl="/api/copilotkit"
     licenseKey="ck_..."
   >

Alternatively, store it as an environment variable (COPILOTKIT_LICENSE_KEY in .env.local or .env) and reference it:

   <CopilotKitProvider
     runtimeUrl="/api/copilotkit"
     licenseKey={process.env.NEXT_PUBLIC_COPILOTKIT_LICENSE_KEY}
   >

See references/telemetry-setup.md for full details on what the license key enables and how to opt out.

Step 7: Verify the setup

1. Start the dev server 2. Open the app in a browser 3. The chat UI should render and connect to the runtime 4. Send a test message -- you should receive an AI response 5. Check the runtime's /info endpoint (GET) to confirm it reports available agents

Quick Reference

Package map

PackagePurpose
@copilotkit/reactReact components, hooks, provider
@copilotkit/coreCore types, agent abstraction, state management
@copilotkit/runtimeServer-side runtime, endpoint factories, agent runners
@copilotkit/agentBuiltInAgent, defineTool, model resolution
@copilotkit/sharedShared utilities, logger, types

Endpoint factory functions

FunctionImportProtocolFramework
createCopilotEndpoint@copilotkit/runtimeMulti-route (Hono)Next.js App Router, Hono standalone
createCopilotEndpointSingleRoute@copilotkit/runtimeSingle-route (Hono)Next.js App Router
createCopilotEndpointExpress@copilotkit/runtime/expressMulti-route (Express)Express standalone
createCopilotEndpointSingleRouteExpress@copilotkit/runtime/expressSingle-route (Express)Express standalone

Runtime classes

ClassUse case
CopilotRuntimeCompatibility shim; auto-selects SSE or Intelligence mode
CopilotSseRuntimeExplicit SSE mode (default, in-memory threads)
CopilotIntelligenceRuntimeIntelligence mode (durable threads, realtime events)

Agent runners

RunnerDescription
InMemoryAgentRunnerDefault. Stores thread state in process memory. Suitable for development and single-instance deployments.
IntelligenceAgentRunnerUsed automatically with CopilotIntelligenceRuntime. Connects to CopilotKit Intelligence Platform via WebSocket.

Supported models (BuiltInAgent)

Format: "provider/model-name" string or a Vercel AI SDK LanguageModel instance.

OpenAI: openai/gpt-5, openai/gpt-5-mini, openai/gpt-4.1, openai/gpt-4.1-mini, openai/gpt-4.1-nano, openai/gpt-4o, openai/gpt-4o-mini, openai/o3, openai/o3-mini, openai/o4-mini

Anthropic: anthropic/claude-sonnet-4.5, anthropic/claude-sonnet-4, anthropic/claude-3.7-sonnet, anthropic/claude-opus-4.1, anthropic/claude-opus-4, anthropic/claude-3.5-haiku

Google: google/gemini-2.5-pro, google/gemini-2.5-flash, google/gemini-2.5-flash-lite

Any string is accepted (for custom/unlisted models); the provider is parsed from the prefix before /.

Related skills

FAQ

What does copilotkit-setup configure?

copilotkit-setup installs CopilotKit packages, configures providers, adds the copilot runtime, and creates the minimum project structure needed for first agent chat or action hooks in React or Next.js apps.

When should you use copilotkit-setup?

Use copilotkit-setup when adding CopilotKit to a greenfield app or integrating agents into an existing React or Next.js codebase that lacks CopilotKit runtime wiring.

Does copilotkit-setup handle SDK version upgrades?

copilotkit-setup focuses on initial bootstrap; use copilotkit-upgrade for bumping CopilotKit package versions and migrating breaking API changes in active repos.

AI & Agent Buildingagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.