/channels-setup
Use when a developer wants to build their first CopilotKit Channels agent and get it answering in Slack or Microsoft Teams — "set up a channel", "connect my agent to Slack", "get my agent into Teams", or starting from nothing and wanting a working channel end to end. Covers the
$ npx -y skills add CopilotKit/CopilotKit --skill channels-setup --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/channels-setup
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use when a developer wants to build their first CopilotKit Channels agent and get it answering in Slack or Microsoft Teams — "set up a channel", "connect my agent to Slack", "get my agent into Teams", or starting from nothing and wanting a working channel end to end. Covers the
SKILL.md
channels-setup.SKILL.mdname: channels-setup
description: >
Use when a developer wants to build their first CopilotKit Channels agent and
get it answering in Slack or Microsoft Teams — "set up a channel", "connect my
agent to Slack", "get my agent into Teams", or starting from nothing and
wanting a working channel end to end. Covers the whole path: inspecting or
scaffolding the project, building the AG-UI agent, creating and reconciling
the managed Channel with the public CopilotKit CLI, running the long-running
host, and proving a real provider mention gets a reply. The workflow is not in
this file — it is fetched from https://copilotkit.ai/channels-guide.md at run
time, so it cannot go stale against the CLI.
version: 1.0.0
Set up a CopilotKit Channel
The workflow is **not written down here**. It lives at one canonical URL so it is corrected in one place instead of on every surface that describes it:
**https://copilotkit.ai/channels-guide.md**
Do this
1. Fetch `https://copilotkit.ai/channels-guide.md`. 2. Verify you actually got the guide (below). 3. Follow it exactly, start to finish.
The guide asks for its own inputs — the target project, the agent's real job, Slack or Microsoft Teams, and the agent framework and model. Do not pre-empt those questions, and do not substitute remembered channel-setup steps for what the guide says. Remembered steps are the reason this file is a pointer.
Verify you actually got the guide
**A missing guide does not return 404.** The site answers unknown paths with a "Page not found" HTML page under HTTP 200, so a successful status code proves nothing. Check the body instead:
- It is markdown, not HTML.
- It begins with `# Build and prove a CopilotKit Channels agent`.
- It contains five `## Phase` headings.
If any of those fail, you did not get the guide — treat it as unavailable no matter what the status code said.
If you did not get the guide
Stop. Tell the user you could not reach the guide, show them the URL, and ask them to paste its contents or retry.
Do not improvise the workflow from memory. It spans the CopilotKit CLI, a managed Channel, provider setup performed by the user in Slack or Azure, and a long-running runtime host. A half-remembered version produces a project that installs cleanly and answers nothing, which is the most expensive failure available here — it looks finished.
Read more
name: channels-setup description: > Use when a developer wants to build their first CopilotKit Channels agent and get it answering in Slack or Microsoft Teams — "set up a channel", "connect my agent to Slack", "get my agent into Teams", or starting from nothing and wanting a working channel end to end. Covers the whole path: inspecting or scaffolding the project, building the AG-UI agent, creating and reconciling the managed Channel with the public CopilotKit CLI, running the long-running host, and proving a real provider mention gets a reply. The workflow is not in this file — it is fetched from https://copilotkit.ai/channels-guide.md at run time, so it cannot go stale against the CLI. version: 1.0.0
Set up a CopilotKit Channel
The workflow is **not written down here**. It lives at one canonical URL so it is corrected in one place instead of on every surface that describes it:
**https://copilotkit.ai/channels-guide.md**
Do this
1. Fetch `https://copilotkit.ai/channels-guide.md`. 2. Verify you actually got the guide (below). 3. Follow it exactly, start to finish.
The guide asks for its own inputs — the target project, the agent's real job, Slack or Microsoft Teams, and the agent framework and model. Do not pre-empt those questions, and do not substitute remembered channel-setup steps for what the guide says. Remembered steps are the reason this file is a pointer.
Verify you actually got the guide
**A missing guide does not return 404.** The site answers unknown paths with a "Page not found" HTML page under HTTP 200, so a successful status code proves nothing. Check the body instead:
- It is markdown, not HTML.
- It begins with `# Build and prove a CopilotKit Channels agent`.
- It contains five `## Phase` headings.
If any of those fail, you did not get the guide — treat it as unavailable no matter what the status code said.
If you did not get the guide
Stop. Tell the user you could not reach the guide, show them the URL, and ask them to paste its contents or retry.
Do not improvise the workflow from memory. It spans the CopilotKit CLI, a managed Channel, provider setup performed by the user in Slack or Azure, and a long-running runtime host. A half-remembered version produces a project that installs cleanly and answers nothing, which is the most expensive failure available here — it looks finished.
Docs · Examples · Enterprise Intelligence Platform · Build agent-native applications — on any framework, on any surface. Generative UI, shared state, and human-in-the-loop workflows for React, Angular, Vue, React Native — and beyond the browser.
Repo: CopilotKit/CopilotKit
Other skills on copilotkit.
- /a2ui-renderer
Render A2UI (Agent-to-UI declarative surfaces) in CopilotKit v2. Enable the runtime via CopilotRuntime({ a2ui: {...} }), then enable the provider via <CopilotKit a2ui={{ theme }}>. Auto-activates via /info — do NOT manually pass renderActivityMessages. createA2UIMessageRenderer
Open skill - /react-core
@copilotkit/react-core — mount the CopilotKit provider (from @copilotkit/react-core/v2) in a Next.js App Router / React Router v7 / TanStack Start / SPA app, drop in CopilotChat/CopilotPopup/CopilotSidebar (v2 chat components ship from react-core/v2 — NOT react-ui, which is
Open skill - /runtime
@copilotkit/runtime — mount a fetch-native CopilotRuntime on any JS server, wire middleware, pick an AgentRunner, instantiate BuiltInAgent (Factory Mode with TanStack AI is the preferred default) or plug in any of 12 external agent frameworks (Mastra, LangGraph, CrewAI
Open skill - /a2ui-renderer
Render A2UI (Agent-to-UI declarative surfaces) in CopilotKit v2. Enable the runtime via CopilotRuntime({ a2ui: {...} }), then enable the provider via <CopilotKit a2ui={{ theme }}>. Auto-activates via /info — do NOT manually pass renderActivityMessages. createA2UIMessageRenderer
Open skill - /copilotkit-agui
Use when building custom agent backends, implementing the AG-UI protocol, debugging streaming issues, or understanding how agents communicate with frontends. Covers event types, SSE transport, AbstractAgent/HttpAgent patterns, state synchronization, tool calls, and
Open skill - /copilotkit-channels
Use for the CODE half of a managed Intelligence Channel with Slack or Microsoft Teams: customising the Channel a CLI-scaffolded project already ships, or — for a project the CLI did not generate — writing the Channel declaration, the long-running host, and the awaited activation
Open skill

