This release adds 4 notable features for engineering teams evaluating rollout.
✓ No known CVEs patched in this version
Topics
+12 more
Summary
AI summaryThreads tab added to the web inspector for per-agent conversation, state, and event inspection.
Full changelog
CopilotKit v1.57.0
A minor release on the 1.57 line. The headline is a new Threads tab in the web inspector — backed by a thread-store registry in @copilotkit/core, a useThreads hook, and per-thread inspection endpoints in the runtime — plus registerProxiedAgent for mounting frontend tools/context against a server-defined agent, IntelligenceIndicator auto-mount, and requiresUser for OAuth-gated MCP HTTP servers.
Install
npm install @copilotkit/[email protected] @copilotkit/[email protected] @copilotkit/[email protected]
Features
-
Threads tab in
@copilotkit/web-inspector— Each agent's threads now appear in a dedicated tab with three sub-views: Conversation (historical messages with expandable tool-call blocks), Agent State (lastSTATE_SNAPSHOTpayload), and AG-UI Events (full event stream with payload highlighting). Backed by:ThreadStoreRegistryin@copilotkit/core(keyed byagentId) and a newonAgentRunStartedsubscriber event so the inspector subscribes beforeagent.runAgent()snapshots the subscriber list.useThreadshook in@copilotkit/react-corethat fetches threads and subscribes to a Phoenix WebSocket channel for real-time metadata.- New runtime endpoints
GET /threads/:id/eventsandGET /threads/:id/state, plus list/update/archive/delete handlers, wired through bothInMemoryAgentRunnerand the Intelligence platform's_inspect/threads/:id/{events,state}endpoints.getThreadState()walks per-run compacted events and returns the latestSTATE_SNAPSHOTpayload. - All thread mutations authenticate via
identifyUser(request);userIdin the request body is ignored. - Inspector UI built in Lit, with tab DOM mounted once and toggled via
display:noneso switching sub-views is a CSS swap rather than a re-render.
The tab is publicly accessible and integrates out-of-the-box into [CopilotKit Enterprise Intelligence](https://docs.copilotkit.ai/threads?ref=1.57.0-release-notes).
-
registerProxiedAgentin@copilotkit/core— New API for mounting a frontend-side agent (with frontend tools, context, render hooks) against a server-defined runtime agent. Replaces an earlier per-thread cloning approach, which has been reverted because it wiped agent state on tool calls. The registry now keeps a single agent per id. ([e576bc16](https://github.com/CopilotKit/CopilotKit/commit/e576bc16), reverts [#3525](https://github.com/CopilotKit/CopilotKit/pull/3525))ts copilotkit.registerProxiedAgent({ id: "research", agent: clientAgent }); -
IntelligenceIndicatorauto-mounts in@copilotkit/react-core— When intelligence is configured on the<CopilotKit>provider, the indicator now mounts automatically. No manual placement required. ([678d143b](https://github.com/CopilotKit/CopilotKit/commit/678d143b)) -
requiresUserflag onMCPClientConfigHTTP— The runtime now accepts arequiresUserflag for HTTP MCP clients, signaling that the tool requires an authenticated end user (OAuth flow). Pairs with per-call MCP HTTP header resolution onBuiltInAgent, so headers can be derived per request rather than baked into the client config. ([8a2e6bd3](https://github.com/CopilotKit/CopilotKit/commit/8a2e6bd3), [5ee569e0](https://github.com/CopilotKit/CopilotKit/commit/5ee569e0))
Core fixes (@copilotkit/core)
ThreadStoreRegistryhardening — guard auto-unregister against the initial empty-agents seed; forwardprevStoreon unregister and freezegetAll()snapshots; tighten notify ordering so subscribers don't observe partial state during register/unregister. InternalɵMAX_SOCKET_RETRIESis now exported for tests. ([bd9fe016](https://github.com/CopilotKit/CopilotKit/commit/bd9fe016), [9b7c0517](https://github.com/CopilotKit/CopilotKit/commit/9b7c0517), [f5787e0b](https://github.com/CopilotKit/CopilotKit/commit/f5787e0b), [9fdfe23b](https://github.com/CopilotKit/CopilotKit/commit/9fdfe23b))
React fixes (@copilotkit/react-core)
- Pin-to-send re-anchors on reflow — when chat content reflows underneath the pinned send button, the anchor now recomputes instead of leaving the button visually orphaned. ([4c41270e](https://github.com/CopilotKit/CopilotKit/commit/4c41270e))
- Drop redundant
copilotkit.headersfromuseEffectdeps — prevents needless re-runs when the reference is stable. ([cdffd840](https://github.com/CopilotKit/CopilotKit/commit/cdffd840))
Inspector fixes (@copilotkit/web-inspector)
- Announcement banner — moved into the scrollable area, hardened copy-button helpers, scoped per-button reset timeouts, and consolidated
escapeHtmlinto a module-level helper. ([#4639](https://github.com/CopilotKit/CopilotKit/pull/4639)) - Tab DOM caching — keep tab DOM mounted, cache panel templates, defer off-screen events. Switching between Conversation / Agent State / AG-UI Events is now a CSS visibility swap rather than a re-render. ([e05c5ef1](https://github.com/CopilotKit/CopilotKit/commit/e05c5ef1))
- Tool-call status from parsed args — frontend-rendered generative-UI tools (charts, custom UI) never produce a
role: toolresult message. The inspector now derivesDONEfrom parsed-args presence so they no longer appear stuck inIN_PROGRESS. ([ce004920](https://github.com/CopilotKit/CopilotKit/commit/ce004920)) - Lazy-load events/state with spinner — tab clicks feel instant; the heavy fetch happens after the panel is visible. ([762eb79d](https://github.com/CopilotKit/CopilotKit/commit/762eb79d))
- Live conversation updates — re-fetch on active-agent message emit; silent background re-fetch keeps the panel in sync without flicker. ([94305c09](https://github.com/CopilotKit/CopilotKit/commit/94305c09), [09970072](https://github.com/CopilotKit/CopilotKit/commit/09970072))
- Type / JSDoc tightening — runtime+inspector types aligned with reality after the threads work; data-staleness, error-swallowing, and silent parse-fail paths plugged. ([3d616661](https://github.com/CopilotKit/CopilotKit/commit/3d616661), [daf52a20](https://github.com/CopilotKit/CopilotKit/commit/daf52a20))
Packages republished at 1.57.0
@copilotkit/runtime, @copilotkit/react-core, @copilotkit/react-ui, @copilotkit/core, @copilotkit/shared, @copilotkit/runtime-client-gql, @copilotkit/sdk-js, @copilotkit/voice, @copilotkit/web-inspector, @copilotkit/a2ui-renderer, @copilotkit/react-textarea, and @copilotkit/sqlite-runner.
Weekly OSS security release digest.
The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.
No spam, unsubscribe anytime.
Share this release
About CopilotKit
The Frontend Stack for Agents & Generative UI. React + Angular. Makers of the AG-UI Protocol
Related context
Related tools
Beta — feedback welcome: [email protected]