AI agent skills for CopilotKit — setup, develop, integrate, debug, upgrade, and contribute
npx claudepluginhub copilotkit/skillsAI agent skills for CopilotKit — setup, develop, integrate, debug, upgrade, and contribute to CopilotKit projects
Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations
Claude Code plugins for the Slidev presentation framework
Share bugs, ideas, or general feedback.
Skills, hooks, MCP configuration, and reference docs that teach AI coding agents how to build with CopilotKit. Covers project setup, feature development, integration wiring, debugging, version migration, and open-source contribution -- all targeting the v2 API surface (@copilotkit/*).
Built on the open Agent Skills standard. One set of SKILL.md files works across Claude Code, Codex, Cursor, and OpenCode.
CopilotKit has a rich API surface spanning React hooks, runtime configuration, agent frameworks, and a streaming protocol. An AI coding agent asked to "add CopilotKit to my app" needs to know which packages to install, which hooks to use, how to wire up the runtime, and how to connect an agent framework -- and it needs to get the v2 APIs right, not the deprecated v1 equivalents.
These skills encode that knowledge. Instead of relying on the agent's training data (which may be stale or incomplete), the skills provide authoritative, maintained guidance that stays current with CopilotKit releases.
| Feature | Claude Code | Codex | OpenCode | Cursor |
|---|---|---|---|---|
| Skill prompts (SKILL.md) | Yes | Yes | Yes | Yes |
| MCP docs integration | Yes | Yes | Yes | Yes |
| Auto-approval hooks | Yes | -- | -- | -- |
| Codex agent config | -- | Yes | -- | -- |
Works across Claude Code, Codex, Cursor, Gemini CLI, and all tools supporting the agentskills.io standard:
npx skills add copilotkit/skills --full-depth -y
Fresh clones from GitHub every time. To update, run the same command again — it always gets the latest.
/plugin marketplace add CopilotKit/skills
/plugin install copilotkit
/reload-plugins
Note: Claude Code's marketplace update mechanism has known issues with third-party plugins. If updates aren't being picked up, use npx skills add copilotkit/skills --full-depth -y instead.
Copy skills into ~/.codex/skills/:
git clone https://github.com/CopilotKit/skills.git /tmp/copilotkit-skills
cp -R /tmp/copilotkit-skills/skills/copilotkit-* ~/.codex/skills/
Copy each skill directory from skills/ into your tool's skills directory:
| Tool | Skills directory |
|---|---|
| Claude Code | ~/.claude/skills/<skill-name>/ |
| Codex | ~/.codex/skills/<skill-name>/ |
| OpenCode | ~/.config/opencode/skills/<skill-name>/ |
| Cursor | ~/.cursor/skills/<skill-name>/ |
Add CopilotKit to a project from scratch.
@copilotkit/* packagesCopilotRuntime with your LLM provider (OpenAI, Anthropic, Google, etc.)CopilotKitProvider and verifies the integration works end-to-endBuild AI-powered features using CopilotKit's v2 APIs.
useAgent -- connect a backend agent to the frontenduseFrontendTool -- expose UI actions as tools the agent can calluseComponent -- render agent-driven React componentsCopilotChat -- drop-in chat interface with message views and input handlinguseInterrupt, useHumanInTheLoop, useSuggestions -- control flow and UX primitivesAgentRunner and BuiltInAgent -- runtime agent orchestrationPer-framework integration guides for connecting agent backends to CopilotKit.