3.8 KiB
3.8 KiB
name, description, compatibility
| name | description | compatibility |
|---|---|---|
| kestra-ops | Operate Kestra environments using kestractl for context setup, flow inspection, flow validation and deployment, execution monitoring, namespace operations, and namespace file management. Use when users request Kestra operational CLI tasks in dev, staging, or production. | Requires kestractl, network access to the Kestra API, and valid tenant/token credentials. |
Kestra Operations Skill
Use this skill to perform day-to-day Kestra operations with kestractl.
When to use
Use this skill when the request includes:
- Listing, inspecting, validating, or deploying flows
- Triggering executions and checking execution status
- Managing namespaces or namespace files (
nsfiles) - Configuring or switching Kestra CLI contexts
Required inputs
- Target environment or context (
dev,staging,prod) - Host URL, tenant, and authentication method (usually token)
- Namespace, flow ID, execution ID, and/or local file paths
- Output preference (
tablefor human-readable,jsonfor automation)
Prerequisites
kestractlis installed and executable- Access token and tenant are available
- A valid context exists in
~/.kestractl/config.yamlor values are provided via env vars/flags
Configuration precedence
Resolve config from highest to lowest precedence:
- Command flags (
--host,--tenant,--token,--output) - Environment variables (
KESTRACTL_HOST,KESTRACTL_TENANT,KESTRACTL_TOKEN,KESTRACTL_OUTPUT) - Config file (
~/.kestractl/config.yaml) - Built-in defaults
Common setup:
kestractl config add dev http://localhost:8080 main --token DEV_TOKEN
kestractl config add prod https://prod.kestra.io production --token PROD_TOKEN
kestractl config use dev
kestractl config show
Standard workflow
- Resolve and confirm the target context.
- Run read-only discovery first.
- Validate artifacts before any deployment.
- Execute the requested operation with explicit flags.
- Verify outcomes (
--waitfor run operations where needed). - Return a concise ops report with results and follow-up actions.
Command patterns
Flows:
kestractl flows list my.namespace
kestractl flows get my.namespace my-flow
kestractl flows validate ./flows/
kestractl flows deploy ./flows/ --namespace prod.namespace --override --fail-fast
Executions:
kestractl executions run my.namespace my-flow --wait
kestractl executions get 2TLGqHrXC9k8BczKJe5djX
Namespaces:
kestractl namespaces list
kestractl namespaces list --query my.namespace
Namespace files:
kestractl nsfiles list my.namespace --path workflows/ --recursive
kestractl nsfiles get my.namespace workflows/example.yaml --revision 3
kestractl nsfiles upload my.namespace ./assets resources --override --fail-fast
kestractl nsfiles delete my.namespace workflows --recursive
Guardrails
- Confirm production context before write operations (
deploy,upload,delete). - Prefer
flows validatebeforeflows deploy. - Use
--output jsonfor scripting and automation reliability. - Avoid
--verbosein shared logs because it can expose credentials. - For destructive
nsfilesactions, confirm path scope and only use--forceintentionally.
Response format
- Context used (host, tenant, context name)
- Commands executed (grouped by read vs write)
- Results (success/failure and key IDs)
- Risks, rollback notes, and follow-up actions
Example prompts
- "Use
kestra-opsto validate and deploy all flows in./flowstoprod.namespacewith fail-fast enabled, then report what changed." - "Use
kestra-opsto runmy-flowinmy.namespace, wait for completion, and summarize execution status." - "Use
kestra-opsto upload./assetsto namespace files underresourceswith override enabled, then list uploaded files recursively."