Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Manage flows and pages in Google Dialogflow CX via REST API. Use for creating and organizing conversation paths within agents. Supports v3beta1 API.
Manage flows and pages in Google Dialogflow CX via REST API. Use for creating and organizing conversation paths within agents. Supports v3beta1 API.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Manage flows and pages in Google Dialogflow CX via REST API for organizing conversation paths.
Google Cloud project with Dialogflow CX API enabled Service account or OAuth credentials with Dialogflow API access gcloud CLI authenticated OR bearer token
gcloud auth application-default login TOKEN=$(gcloud auth print-access-token)
export GOOGLE_APPLICATION_CREDENTIALS="/path/to/service-account.json" TOKEN=$(gcloud auth application-default print-access-token)
https://dialogflow.googleapis.com/v3beta1 Regional endpoints available: https://{region}-dialogflow.googleapis.com (e.g., us-central1, europe-west1)
curl -X GET \ "https://dialogflow.googleapis.com/v3beta1/projects/${PROJECT_ID}/locations/${LOCATION}/agents/${AGENT_ID}/flows" \ -H "Authorization: Bearer ${TOKEN}"
curl -X POST \ "https://dialogflow.googleapis.com/v3beta1/projects/${PROJECT_ID}/locations/${LOCATION}/agents/${AGENT_ID}/flows" \ -H "Authorization: Bearer ${TOKEN}" \ -H "Content-Type: application/json" \ -d '{ "displayName": "Booking Flow", "description": "Handles flight booking conversations" }'
curl -X GET \ "https://dialogflow.googleapis.com/v3beta1/projects/${PROJECT_ID}/locations/${LOCATION}/agents/${AGENT_ID}/flows/${FLOW_ID}/pages" \ -H "Authorization: Bearer ${TOKEN}"
curl -X POST \ "https://dialogflow.googleapis.com/v3beta1/projects/${PROJECT_ID}/locations/${LOCATION}/agents/${AGENT_ID}/flows/${FLOW_ID}/pages" \ -H "Authorization: Bearer ${TOKEN}" \ -H "Content-Type: application/json" \ -d '{ "displayName": "Collect Destination", "entryFulfillment": { "messages": [ { "text": { "text": ["Where would you like to fly?"] } } ] } }'
ResourceDescriptionFlowsConversation paths within an agentPagesStates within a flowTransition RoutesRouting logic between pagesVersionsImmutable snapshots of flows
For detailed API reference: Flows & Pages: See references/flows.md
scripts/flows.py โ CLI wrapper for flows and pages operations
python scripts/flows.py list-flows --agent AGENT_NAME python scripts/flows.py list-pages --flow FLOW_NAME python scripts/flows.py get-flow --flow FLOW_NAME python scripts/flows.py get-page --page PAGE_NAME
Every agent has a default "Default Start Flow" Pages represent conversation states Use transition routes to move between pages based on intents or conditions Train flows after making changes to update NLU
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.