• bitcoinBitcoin(BTC)$64,306.00-0.50%
  • ethereumEthereum(ETH)$1,903.46-0.20%
  • tetherTether(USDT)$1.000.00%
  • binancecoinBNB(BNB)$591.52-0.50%
  • usd-coinUSDC(USDC)$1.000.00%
  • rippleXRP(XRP)$1.04-2.50%
  • solanaSolana(SOL)$72.63-1.90%
  • tronTRON(TRX)$0.327127-0.10%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.02-3.00%
  • HyperliquidHyperliquid(HYPE)$56.20-1.00%
  • dogecoinDogecoin(DOGE)$0.068967-1.50%
  • USDSUSDS(USDS)$1.000.00%
  • RainRain(RAIN)$0.012564-0.10%
  • leo-tokenLEO Token(LEO)$9.760.00%
  • zcashZcash(ZEC)$495.62-4.20%
  • cardanoCardano(ADA)$0.2007345.60%
  • moneroMonero(XMR)$369.231.00%
  • whitebitWhiteBIT Coin(WBT)$55.71-0.50%
  • chainlinkChainlink(LINK)$8.190.50%
  • stellarStellar(XLM)$0.161670-2.70%
  • daiDai(DAI)$1.000.00%
  • bitcoin-cashBitcoin Cash(BCH)$212.57-0.80%
  • USD1USD1(USD1)$1.000.00%
  • Ethena USDeEthena USDe(USDE)$1.000.00%
  • the-open-networkGram (prev. Toncoin)(GRAM)$1.37-2.10%
  • CantonCanton(CC)$0.091755-12.20%
  • litecoinLitecoin(LTC)$45.410.50%
  • Global DollarGlobal Dollar(USDG)$1.000.00%
  • Circle USYCCircle USYC(USYC)$1.130.00%
  • hedera-hashgraphHedera(HBAR)$0.068215-1.00%
  • avalanche-2Avalanche(AVAX)$6.45-2.90%
  • shiba-inuShiba Inu(SHIB)$0.000005-4.50%
  • paypal-usdPayPal USD(PYUSD)$1.000.00%
  • suiSui(SUI)$0.67-2.30%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • tether-goldTether Gold(XAUT)$4,222.56-0.20%
  • crypto-com-chainCronos(CRO)$0.053265-1.30%
  • uniswapUniswap(UNI)$4.00-1.90%
  • nearNEAR Protocol(NEAR)$1.66-1.90%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.140.20%
  • pax-goldPAX Gold(PAXG)$4,234.64-0.20%
  • BittensorBittensor(TAO)$192.22-1.90%
  • okbOKB(OKB)$85.35-0.40%
  • OndoOndo(ONDO)$0.359657-3.80%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.052672-1.70%
  • HTX DAOHTX DAO(HTX)$0.000002-0.20%
  • AsterAster(ASTER)$0.60-0.90%
  • Ripple USDRipple USD(RLUSD)$1.000.00%
  • usddUSDD(USDD)$1.000.10%
  • MemeCoreMemeCore(M)$1.14-6.90%
TradePoint.io
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop
No Result
View All Result
TradePoint.io
No Result
View All Result

CopilotKit Open Sources Channels SDK: An MIT Licensed Library That Runs Any AG-UI Agent Inside Slack And Microsoft Teams

August 5, 2026
in AI & Technology
Reading Time: 20 mins read
A A
CopilotKit Open Sources Channels SDK: An MIT Licensed Library That Runs Any AG-UI Agent Inside Slack And Microsoft Teams
ShareShareShareShareShare

CopilotKit has just released the Channels SDK. It is an open source library that puts an existing agent inside a messaging platform. The core assumption is focused and verifiable. You already have an agent. It already has a model, tools and business logic. Channels gives it a place to work with people, without a rewrite per platform.

It runs on Slack and Microsoft Teams as early access surfaces. Discord and Google Chat are named as planned.

YOU MAY ALSO LIKE

OpenAI’s Ring-Shaped Smart Speaker Will Reportedly Cost Between $300 And $400

Cloudflare Introduces Kitesurf: An Agent-First Web Browser That Runs Entirely in V8 Isolates on Cloudflare Workers

Installation is two packages:

npm install @copilotkit/channels @copilotkit/runtime

The connection to your agent is AG-UI, the agent-user interaction protocol CopilotKit maintains. Anything that speaks AG-UI works. That includes LangGraph, CrewAI, Mastra, Pydantic AI, Google ADK, and a plain HTTP agent you wrote yourself. Your model and orchestration layer stay where they are.

The distinction that matters is what a channel is not. It is not a second agent. It is a transport along with a rendering target. You write a message once, and the adapter lowers it into each platform’s native format. That means Block Kit in Slack and Adaptive Cards in Teams. Not a text blob pushed through a webhook.

Is It Deployable? 

Yes. The SDK is published, MIT licensed, and has a documented runtime contract. 

How One Turn Actually Flows

Here is the single path for every turn:

  1. A person messages your app in Slack or Microsoft Teams.
  2. CopilotKit Intelligence receives the platform event and delivers it to your Channels process.
  3. Channels runs your agent over AG-UI, executes tools, and renders the result.
  4. Intelligence sends native platform UI back into the conversation.

The split of responsibility follows from that. You run your agent, model credentials, tools and business logic. You run the long-running Channels listener, plus application state, deployment and logs. Intelligence manages the Slack and Teams platform credentials. It also owns platform ingress, credentialed delivery, runtime registration, health and reconnects.

Rendering is worth one more sentence. Messages are authored as JSX and lowered to a serializable intermediate representation. The adapter translates that into the platform’s native format, and interactive handlers are bound through an action store.

The Runtime Contract

The lifecycle is the part worth understanding. There is no channel.start(). The runtime owns activation.

import { createChannel } from "@copilotkit/channels";
import { CopilotRuntime, CopilotKitIntelligence } from "@copilotkit/runtime/v2";
import { createCopilotNodeListener } from "@copilotkit/runtime/v2/node";

const channel = createChannel({
  name: process.env.CHANNEL_CODE,
  provider: "slack",
  agent: makeAgent,
});

const runtime = new CopilotRuntime({
  agents: {},
  intelligence: new CopilotKitIntelligence({ apiKey: process.env.INTELLIGENCE_API_KEY }),
  identifyUser: () => ({ id: "channels-runtime", name: "Channels Runtime" }),
  channels: [channel],
});

const listener = createCopilotNodeListener({ runtime, basePath: "/api/copilotkit" });
await listener.channels.ready({ timeoutMs: 30_000 });

Creating the listener starts the channel connection. Awaiting channels.ready() makes a broken configuration fail startup loudly instead of silently. channels.status() returns an overall state you can gate on, and channels.stop() tears the channel down for graceful shutdown.

The runtime exposes listeners for Node, Hono and Express through the @copilotkit/runtime/v2/* subpaths.

createChannel takes more than a name and an agent. The shipped options include tools, context, components, commands, store, sanitizeAgentEvents, showToolStatus and replyContinuation. Registering named JSX components is what lets a channel re-render and re-fire handlers after a restart. Without registration, a click on a message posted before the restart degrades to an expired action.

What The Agent Can Do Inside The Channel

The feature set targets work that happens in a thread, not chat for its own sake.

  • Generative UI, so the agent renders interface when the task calls for it.
  • Human in the loop, so a person approves before a critical action runs.
  • Tools, so the agent can file an issue, book a meeting or open a pull request.
  • A persistence layer, plus transcripts that carry memory across platforms.
  • Slash commands and mentions, mapped to the right agent interaction.

OpenTag demonstrates the approval pattern concretely. Every Linear and Notion mutation is intercepted in code before the MCP request runs. The interceptor emits a confirm_write and proceeds only after approval. Reads and rendering do not pause.

Key Takeaways

  • @copilotkit/channels 0.5.0 is live on npm under MIT, with Slack and Microsoft Teams as the early access surfaces.
  • Every channel requires a CopilotKit Intelligence API key, on the managed path and the direct path.
  • Slack is generally available as a managed provider; Teams is listed as early access but still carries a gating note in the shipped types.
  • Discord, Telegram and WhatsApp adapters ship in the package as upcoming integrations.
  • Deployment needs Node.js 22+, an ESM project, and a long-running process; serverless will not hold the connection.

Thanks to the Copilotkit team for the thought leadership / resources for this article. This article is sponsored by Copilokit.


Asif Razzaq is the CEO of Marktechpost Media Inc.. As a visionary entrepreneur and engineer, Asif is committed to harnessing the potential of Artificial Intelligence for social good. His most recent endeavor is the launch of an Artificial Intelligence Media Platform, Marktechpost, which stands out for its in-depth coverage of machine learning and deep learning news that is both technically sound and easily understandable by a wide audience. The platform boasts of over 2 million monthly views, illustrating its popularity among audiences.

Credit: Source link

ShareTweetSendSharePin

Related Posts

OpenAI’s Ring-Shaped Smart Speaker Will Reportedly Cost Between 0 And 0
AI & Technology

OpenAI’s Ring-Shaped Smart Speaker Will Reportedly Cost Between $300 And $400

August 6, 2026
Cloudflare Introduces Kitesurf: An Agent-First Web Browser That Runs Entirely in V8 Isolates on Cloudflare Workers
AI & Technology

Cloudflare Introduces Kitesurf: An Agent-First Web Browser That Runs Entirely in V8 Isolates on Cloudflare Workers

August 6, 2026
Suno Is Adding Audio Watermarks So AI-Generated Songs Are More Easily Identifiable
AI & Technology

Suno Is Adding Audio Watermarks So AI-Generated Songs Are More Easily Identifiable

August 6, 2026
OpenAI Gives Free ChatGPT Users Unlimited Text Chats on GPT-5.6 Luna – Unite.AI
AI & Technology

OpenAI Gives Free ChatGPT Users Unlimited Text Chats on GPT-5.6 Luna – Unite.AI

August 6, 2026
Next Post
Seaplane makes hard landing in New York City’s East River

Seaplane makes hard landing in New York City's East River

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

No Result
View All Result
TikTok settles trio of social media addiction lawsuits in Los Angeles

TikTok settles trio of social media addiction lawsuits in Los Angeles

August 4, 2026
Israel says it has serious concerns with Hamas disarmament deal – AP News

Israel says it has serious concerns with Hamas disarmament deal – AP News

August 2, 2026
AI Content Labels Become Mandatory Under EU Law – Unite.AI

AI Content Labels Become Mandatory Under EU Law – Unite.AI

July 31, 2026

About

Learn more

Our Services

Legal

Privacy Policy

Terms of Use

Bloggers

Learn more

Article Links

Contact

Advertise

Ask us anything

©2020- TradePoint.io - All rights reserved!

Tradepoint.io, being just a publishing and technology platform, is not a registered broker-dealer or investment adviser. So we do not provide investment advice. Rather, brokerage services are provided to clients of Tradepoint.io by independent SEC-registered broker-dealers and members of FINRA/SIPC. Every form of investing carries some risk and past performance is not a guarantee of future results. “Tradepoint.io“, “Instant Investing” and “My Trading Tools” are registered trademarks of Apperbuild, LLC.

This website is operated by Apperbuild, LLC. We have no link to any brokerage firm and we do not provide investment advice. Every information and resource we provide is solely for the education of our readers. © 2020 Apperbuild, LLC. All rights reserved.

No Result
View All Result
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop

© 2023 - TradePoint.io - All Rights Reserved!