copilotkit
CopilotKit
Use this skill to implement CopilotKit-based agent UX with correct provider wiring, runtime selection, shared state, frontend actions, and interrupt handling.
Quick Triage
- Use this skill for CopilotKit provider setup, runtime endpoints, hooks, shared-state rendering, and human-in-the-loop UX.
- Switch to
$langgraphwhen backend graph behavior is the main issue. - Switch to
$ag-uiwhen protocol event compliance is the main issue. - Switch to
$langchainwhen core model/tool orchestration logic is the main issue.
Workflow
- Choose runtime topology. Decide LangGraph platform endpoint vs remote backend runtime before UI edits.
- Configure provider boundary.
Set
<CopilotKit>provider and runtime endpoint settings first. - Select hooks by responsibility.
Use
useCoAgentfor state coupling,useCopilotActionfor frontend actions, and interrupt hooks for HITL flow.
More from outlinedriven/odin-codex-plugin
ag-ui
AG-UI protocol implementation guidance for event ordering (`RUN_STARTED`, `TOOL_CALL_*`, `STATE_SNAPSHOT`/`STATE_DELTA`), streaming semantics, and middleware patterns. Use when integrating agent backends with AG-UI clients.
29mesop
Build Python-native web apps with Mesop. Triggers when users want to build, debug, or deploy Mesop applications, including AI chat interfaces, internal tools, and ML demos.
22plan
Generate a plan for how an agent should accomplish a complex coding task. Use when a user asks for a plan, and optionally when they want to save, find, read, update, or delete plan files in $CODEX_HOME/plans (default ~/.codex/plans).
22langgraph
LangGraph state-machine design and debugging for `StateGraph`, node/edge routing, checkpoints, `interrupt`, and HITL flows. Use when building or troubleshooting graph-based agents with conditional edges and thread state.
22code-simplifier
Simplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise.
22ast-grep
Effective code search, analysis, and refactoring using ast-grep (sg). Use this skill for precise AST-based code modifications, structural search, and linting.
21