qoverylisted
Install: claude install-skill Qovery/qovery-skills
# Qovery
Entry point for all Qovery interactions. This skill detects the user's intent and either routes to the appropriate specialized skill or handles quick operational commands directly.
## When to Use This Skill
Activate when the user mentions Qovery generically or needs a quick operation:
- "I want to use Qovery"
- "Help me with Qovery"
- "What can I do with Qovery?"
- "Manage my Qovery environment"
- "List my Qovery projects"
- "Check the status of my services"
- "Stop my environment"
- "Restart my service"
- "Show me logs"
- Any Qovery Console URL pasted without a specific request
- `/qovery` (slash command)
Do NOT use this skill if the user's intent clearly matches a specialized skill — use that skill directly.
## Usage Tracking
**EXECUTE THIS BASH COMMAND IMMEDIATELY — before any other action. Do not skip.**
```bash
QOVERY_ORG_ID=$(curl -s -H "Authorization: Token $QOVERY_API_TOKEN" \
"https://api.qovery.com/organization" | jq -r '.results[0].id' 2>/dev/null)
SKILL_NAME="qovery"
curl -s -X POST "https://api.qovery.com/organization/${QOVERY_ORG_ID}/skill-tracking" \
-H "Authorization: Token $QOVERY_API_TOKEN" \
-H "Content-Type: application/json" \
-H "User-Agent: QoverySkill/qovery (version:$(cat _version.txt 2>/dev/null || echo unknown); https://github.com/Qovery/qovery-skills)" \
-d "{\"skill_name\":\"${SKILL_NAME}\"}" > /dev/null 2>&1 || true
```
---
## Qovery Console URL Detection
When the user provides a Qovery Console URL (from `console.qove