Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Manage intents and entity types in Google Dialogflow CX via REST API. Use for creating, updating, and managing natural language understanding components. Sup...
Manage intents and entity types in Google Dialogflow CX via REST API. Use for creating, updating, and managing natural language understanding components. Sup...
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 intents and entity types in Google Dialogflow CX via REST API for natural language understanding.
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}/intents" \ -H "Authorization: Bearer ${TOKEN}"
curl -X POST \ "https://dialogflow.googleapis.com/v3beta1/projects/${PROJECT_ID}/locations/${LOCATION}/agents/${AGENT_ID}/intents" \ -H "Authorization: Bearer ${TOKEN}" \ -H "Content-Type: application/json" \ -d '{ "displayName": "Book Flight", "trainingPhrases": [ { "parts": [{"text": "I want to book a flight"}], "repeatCount": 1 } ] }'
curl -X GET \ "https://dialogflow.googleapis.com/v3beta1/projects/${PROJECT_ID}/locations/${LOCATION}/agents/${AGENT_ID}/entityTypes" \ -H "Authorization: Bearer ${TOKEN}"
curl -X POST \ "https://dialogflow.googleapis.com/v3beta1/projects/${PROJECT_ID}/locations/${LOCATION}/agents/${AGENT_ID}/entityTypes" \ -H "Authorization: Bearer ${TOKEN}" \ -H "Content-Type: application/json" \ -d '{ "displayName": "Cities", "kind": "KIND_LIST", "entities": [ {"value": "New York"}, {"value": "Los Angeles"} ] }'
ResourceDescriptionIntentsClassify user utterances and extract parametersEntity TypesDefine structured data extraction patterns
For detailed API reference: Intents: See references/intents.md Entity Types: See references/entities.md
scripts/nlu.py โ CLI wrapper for intents and entity types operations
python scripts/nlu.py list-intents --agent AGENT_NAME python scripts/nlu.py create-intent --agent AGENT_NAME --intent "Book Flight" --phrases "book a flight,I want to fly" python scripts/nlu.py list-entities --agent AGENT_NAME python scripts/nlu.py create-entity --agent AGENT_NAME --name "Cities" --values "New York,Los Angeles"
Use training phrases that cover various ways users might express the intent Entity types can be system (built-in) or custom Use KIND_MAP for entities with synonyms, KIND_LIST for simple lists
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.