发现优质的 AI Agent 技能
聚合 Claude Skills、LangChain、AutoGPT 等优质资源,助力开发者快速构建智能应用
Dialogflow CX → CX Agent Studio Migration
Use this skill when you need to migrate a Dialogflow CX agent into CX Agent Studio (Gemini Enterprise for Customer Engagement / CES). It exports the full CX agent package, enumerates all components (intents, entities, flows, pages, webhooks, route groups, etc.), and creates a CES app + agent that runs the CX agent as a **remote Dialogflow agent**.
Variables in CX Agent Studio
Variables store and retrieve runtime conversation data.
Tools in CX Agent Studio
Tools connect agents to external systems or inline code to fetch, update, format, or analyze info.
Instructions in CX Agent Studio
Agent instructions provide detailed natural-language guidance for the model (goal, persona, tool/sub-agent use).
Guardrails in CX Agent Studio
Guardrails are checks and balances protecting agent applications (model input and output).
Flows in CX Agent Studio
Dialogflow CX flows can be integrated into CX Agent Studio agents. - Flow-based agents hand off conversation to the flow until `END_SESSION` is reached, returning to the steering agent. - Agent apps send user input to flows using the `DetectIntent` API. - Require permissions: `Customer Engagement Suite Service Agent` needs `Dialogflow API Client` role.
CX Agent Studio Evaluation Reference
Evaluation helps automate testing, catch regressions, and measure agent quality via test cases.
Callbacks in CX Agent Studio
Callbacks let you hook into an agent's execution process using Python code to observe, customize, and control behavior at specific points.
Best Practices in CX Agent Studio
This guide provides best practices for designing reliable agent applications.
Agents in CX Agent Studio
An agent application is composed of one or more agents: - **Root agent (steering agent)**: Primary entry point and orchestrator. Handles main user interactions, understands overall goals, and delegates tasks. - **Sub-agent (child agent)**: Specialized agent for specific tasks/domains (e.g., searching a database). Promotes modularity.