Teaches AI agents how to work with Okteto development environments. Works with any project that has an okteto.yaml.
- Okteto skill -- CLI knowledge, collaborative and autonomous workflow patterns, debugging strategies
/dev-setupcommand -- One-command environment setup: checks prerequisites, deploys services, shows endpoints, guides the developer into a dev container
Add the Okteto marketplace and install the plugin:
/plugin marketplace add okteto/okteto-claude-plugins
/plugin install okteto
The Okteto skill activates automatically when a project has an okteto.yaml. It teaches the agent:
- How to discover services from
okteto.yaml(no hardcoded config needed) - When to use
okteto deploy,okteto build,okteto test,okteto exec, andokteto logs - That
okteto upis interactive and must be run by the developer, never the agent - How to operate in collaborative mode (developer in the loop) vs autonomous mode (ticket-driven, no human)
Run /dev-setup to have the agent walk through full environment setup:
- Reads
okteto.yamlto discover services - Checks CLI prerequisites (
okteto version,okteto context show) - Deploys all services (
okteto deploy --wait) - Shows live endpoints (
okteto endpoints) - Guides you to start developing a specific service
For CI/CD or ticket-driven workflows where no developer is present, the skill teaches agents to:
- Deploy a full environment with
okteto deploy --wait - Make code changes based on ticket requirements
- Rebuild and redeploy changed services with
okteto build+okteto deploy - Validate with
okteto testand endpoint smoke tests - Report results back to the ticket/PR
claude --plugin-dir /path/to/okteto-claude-plugins/plugins/okteto
- Claude Code CLI
- Okteto CLI installed and configured
- An
okteto.yamlin your project root