Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Manage advanced features in Google Dialogflow CX via REST API. Use for environments, webhooks, and deployment management. Supports v3beta1 API.
Manage advanced features in Google Dialogflow CX via REST API. Use for environments, webhooks, and deployment management. 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 advanced features in Google Dialogflow CX via REST API for deployment and external integrations.
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}/environments" \ -H "Authorization: Bearer ${TOKEN}"
curl -X POST \ "https://dialogflow.googleapis.com/v3beta1/projects/${PROJECT_ID}/locations/${LOCATION}/agents/${AGENT_ID}/environments" \ -H "Authorization: Bearer ${TOKEN}" \ -H "Content-Type: application/json" \ -d '{ "displayName": "production", "description": "Production environment" }'
curl -X GET \ "https://dialogflow.googleapis.com/v3beta1/projects/${PROJECT_ID}/locations/${LOCATION}/agents/${AGENT_ID}/webhooks" \ -H "Authorization: Bearer ${TOKEN}"
curl -X POST \ "https://dialogflow.googleapis.com/v3beta1/projects/${PROJECT_ID}/locations/${LOCATION}/agents/${AGENT_ID}/webhooks" \ -H "Authorization: Bearer ${TOKEN}" \ -H "Content-Type: application/json" \ -d '{ "displayName": "Order Fulfillment", "genericWebService": { "uri": "https://your-webhook.com/fulfill" } }'
ResourceDescriptionEnvironmentsDeployment stages (draft, production)WebhooksExternal fulfillment endpointsContinuous TestingOngoing health monitoring
For detailed API reference: Advanced Features: See references/advanced.md
scripts/advanced.py โ CLI wrapper for advanced operations
python scripts/advanced.py list-environments --agent AGENT_NAME python scripts/advanced.py list-webhooks --agent AGENT_NAME
Use environments to separate development, staging, and production Webhooks enable external processing and integrations Continuous testing helps maintain conversation quality
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.