.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/okteto-claude-plugins/agents
home/subagents/okteto/okteto-claude-plugins/agents
okteto avatar

AGENTS

byokteto· 1 subagent

Stars

5

Category

DevOps & CI/CD

View on GitHub

TL;DR

This project uses Okteto for cloud development environments. When a developer asks you to make a change, test something, or interact with the running environment, use the instructions below.

How to install AGENTS?

okteto/okteto-claude-plugins/agents
$curl -o .claude/agents/AGENTS.md https://raw.githubusercontent.com/okteto/okteto-claude-plugins/HEAD/agents/AGENTS.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install AGENTS by running `curl -o .claude/agents/AGENTS.md https://raw.githubusercontent.com/okteto/okteto-claude-plugins/HEAD/agents/AGENTS.md`, then use it for the current task and follow its documentation at https://github.com/okteto/okteto-claude-plugins.

Files · 1

View on GitHub
agents/AGENTS.md
1# Okteto Development Environment
2 
3This project uses [Okteto](https://www.okteto.com) for cloud development environments. When a developer asks you to make a change, test something, or interact with the running environment, use the instructions below.
4 
5## Step 1: Discover the project
6 
7Read `okteto.yaml` in the project root. This is the source of truth for:
8 
9- **build**: which services have container images
10- **deploy**: how services are deployed to the cluster
11- **dev**: which services support development mode, their sync paths, and startup commands
12- **test**: which test containers are available and their commands
13 
14Always derive service names from `okteto.yaml`. Never hardcode them.
15 
16## Step 2: Discover how to run commands for each service
17 
18Look at the `dev` section of `okteto.yaml` for each service. The `command` field tells you how the service starts inside the dev container:
19 
20- `command: bash` — the service needs manual build/start steps; check the service directory for a `Makefile`, `package.json`, `pom.xml`, or `go.mod` to find available commands
21- `command: yarn start` or `command: mvn spring-boot:run` — the service auto-starts in dev mode; use the same runner for tests (`yarn test`, `mvn test`, etc.)
22 
23When a developer asks you to run tests or build a service and you're not sure what command to use, check these files in the service directory before guessing.
24 
25## Step 3: Running commands in the dev environment
26 
27When a developer has `okteto up <service>` running in their terminal, use `okteto exec` to run commands inside the dev container:
28 
29```
30okteto exec -- <command>
31```
32 
33Examples:
34- `okteto exec -- go test ./...`
35- `okteto exec -- npm test`
36- `okteto exec -- make test`
37- `okteto exec -- curl localhost:8080/health`
38 
39**Do not use `kubectl exec` or try to open a shell directly into a pod.** `okteto exec` is the correct way to run commands in the development container — it handles cluster authentication, namespace selection, and dev container routing automatically. Direct `kubectl exec` calls will not reach the right container and will confuse the session.
40 
41**Read-only `kubectl` and `helm` are fine for diagnostics.** Commands like `kubectl get pods`, `kubectl describe pod`, `kubectl logs <pod> --previous`, `kubectl get events`, and `helm status` only read cluster state and are the right tools for debugging unhealthy pods. The rule is about mutations: never change the cluster with `kubectl apply`/`edit`/`delete` or `helm install`/`upgrade` — all changes go through `okteto deploy`.
42 
43## The `okteto up` rule
44 
45`okteto up <service>` is **interactive** — it starts a live shell inside the dev container with automatic file sync. You must never run it yourself (not in the terminal, not in the background). It will hang waiting for input.
46 
47Instead, tell the developer:
48 
49> Run this in your terminal: `okteto up <service>`
50 
51If you are isolating a worktree, include the namespace: `okteto up <service> -n <ns>`.
52 
53Once they confirm it's running, you can use `okteto exec` freely.
54 
55## Worktrees and namespace isolation
56 
57An Okteto **namespace** is the unit of isolation. It comes from the active Okteto context (`~/.okteto`), which is **global to the machine** — not per-directory. If you work in a **git worktree** (or any second checkout of the same repo), you share the same `okteto.yaml` as the other worktrees, so deploying into the same namespace makes them collide: the second `okteto deploy` overwrites the first, logs/endpoints get crossed, and `okteto destroy` in one wipes the other.
58 
59**Give each worktree its own namespace:**
60 
611. Detect a worktree: `git rev-parse --git-common-dir` differs from `git rev-parse --git-dir`, or check `git worktree list`.
622. Derive a name from the branch (lowercase alphanumeric and `-`, start/end alphanumeric, ≤ 63 chars):
63 ```bash
64 ns=$(git branch --show-current | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9]/-/g; s/^-*//; s/-*$//' | cut -c1-50)
65 ```
663. Create it once: `okteto namespace create <ns>`.
674. Pass `-n <ns>` on **every** Okteto command (`deploy`, `build`, `logs`, `endpoints`, `test`, `destroy`, and `okteto up` when you hand it to the developer).
68 
69**Do not use `okteto namespace use <ns>`** to isolate worktrees — it switches the active namespace in the shared global context and races with other worktrees or agents on the same machine. The `-n` flag is per-invocation and safe under concurrency.
70 
71A single primary checkout (not a worktree) can use the context's default namespace — no `-n` needed.
72 
73## Common workflows
74 
75### Setting up the environment
76 
771. Run `okteto version` to confirm the CLI is installed
782. Run `okteto context show` to confirm the cluster connection
793. Run `okteto deploy --wait` to build images and deploy all services
804. Run `okteto endpoints` to show the live URLs
815. Ask which service the developer wants to work on, then tell them to run `okteto up <service>` in their terminal
82 
83### Making a change and testing it in Okteto
84 
851. Read the relevant source files and make the

Preview

okteto/okteto-claude-pluginsokteto/okteto-claude-plugins

# Okteto Development Environment

This project uses [Okteto](https://www.okteto.com) for cloud development environments. When a developer asks you to make a change, test something, or interact w

## Step 1: Discover the project

Read `okteto.yaml` in the project root. This is the source of truth for:

Repookteto/okteto-claude-plugins
TypeSubagents
CategoryDevOps & CI/CD
UpdatedJul 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. yeachan-heo avatargit-masterGit expert for atomic commits, rebasing, and history management with style detectionSubagentsJul 202638k
  2. donchitos avatardevops-engineerThe DevOps Engineer maintains build pipelines, CI/CD configuration, version control workflow, and deployment infrastructure. Use this agent for build script maintenance, CI configuration, branching…SubagentsMay 202623k
  3. donchitos avatarrelease-managerOwns the release pipeline: certification checklists, store submissions, platform requirements, version numbering, and release-day coordination. Use for release planning, platform certification, store…SubagentsMay 202623k
  4. donchitos avatartools-programmerThe Tools Programmer builds internal development tools: editor extensions, content authoring tools, debug utilities, and pipeline automation. Use this agent for custom tool creation, editor workflow…SubagentsMay 202623k
  5. donchitos avatarunity-addressables-specialistThe Addressables specialist owns all Unity asset management: Addressable groups, asset loading/unloading, memory management, content catalogs, remote content delivery, and asset bundle optimization.…SubagentsMay 202623k
  6. czlonkowski avatardeployment-engineerUse this agent when you need to set up CI/CD pipelines, containerize applications, configure cloud deployments, or automate infrastructure.SubagentsJul 202622k