# Openchoreo Platform Engineer Gitops

> Platform-engineer GitOps work for OpenChoreo — scaffolding a GitOps repo (pristine, platform-only, or active cluster), wiring Flux CD, and authoring platform CRDs (ComponentTypes, ResourceTypes, Traits, Workflows, Environments, DeploymentPipelines, SecretReferences, AuthzRoles, alert rules, notification channels) via Git. Use when the user says 'set up GitOps for this cluster', 'move this cluster…

- **Type:** Skill
- **Install:** `agentstack add skill-openchoreo-skills-openchoreo-platform-engineer-gitops`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [openchoreo](https://agentstack.voostack.com/s/openchoreo)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** Apache-2.0
- **Upstream author:** [openchoreo](https://github.com/openchoreo)
- **Source:** https://github.com/openchoreo/skills/tree/main/skills/openchoreo-platform-engineer-gitops

## Install

```sh
agentstack add skill-openchoreo-skills-openchoreo-platform-engineer-gitops
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# OpenChoreo Platform-Engineer GitOps Guide

Git is the source of truth; the cluster is its reflection. This skill writes OpenChoreo **platform** resources to Git, lets Flux CD reconcile them, and reads cluster state with `occ` to verify.

This skill is scoped to platform-engineer GitOps work — initial scaffold + ongoing platform authoring. Application-level GitOps (Project / Component / Workload / ComponentRelease / ReleaseBinding) and non-GitOps cluster operations (Helm install, direct CRD edits) are out of scope; tell the user when a task crosses that boundary.

## Step 0 — Prerequisites

`occ` must be configured against the target cluster:

```bash
command -v occ && occ config context list      # occ configured?
occ namespace list                              # cluster reachable?
```

## Step 1 — Load concepts (MANDATORY)

**Read [`references/concepts.md`](./references/concepts.md) in full before anything else.** Not optional, even if the task looks simple — resource model / sync ordering / immutability / verification ladder / drift recovery are all easy to get wrong from memory. Load once per session; if you catch yourself acting without it, stop and load now.

Load other references **on-demand** as the task needs them:

- [`references/authoring.md`](./references/authoring.md) — where CRD shapes come from (live cluster / `scripts/extract-resources.sh` for defaults + GitOps workflows / `scripts/fetch-page.sh` for docs / ecosystem catalogs for community extensions), repo path conventions, the cluster↔namespace scope swap, the CI-vs-GitOps workflow gotcha, git workflow, DCO.
- [`scripts/fetch-page.sh`](./scripts/fetch-page.sh) — fetch any OpenChoreo docs page by title (resolves against `llms.txt`, picks a stable version). Use this for full CRD schemas with optional fields; `--section "API Reference"` scopes matching to CRD-reference pages, `--list` dumps the index.
- [`scripts/extract-resources.sh`](./scripts/extract-resources.sh) — extract default platform resources from `samples/getting-started/all.yaml` (`defaults --kind X [--name Y]`), or GitOps build-and-release workflows discovered via the ecosystem catalog (`gitops-workflows --list` / `--name `). Refuses vanilla CI workflows by default.
- [`references/cel.md`](./references/cel.md) — only when writing or reviewing CEL inside ComponentType / Trait / Workflow templates.

## Detect the mode

```bash
{ ls flux 2>/dev/null || ls clusters 2>/dev/null; } \
  && { ls platform-shared 2>/dev/null || ls namespaces 2>/dev/null; }
```

- **Scaffolding mode** — cwd is empty or not yet a GitOps repo. Go to [`recipes/scaffold.md`](./references/recipes/scaffold.md). Covers pristine / platform-only / active-cluster paths.
- **Operating mode** — cwd has a Flux entrypoint (`flux/` for single-cluster, `clusters//` for multi-cluster) plus at least one of `platform-shared/` or `namespaces/`. Skip to the relevant author / install recipe.

If the heuristic doesn't fit the layout (per the docs' *Flexible Repository Structures* — repo-per-project, separate-releasebindings-repo, etc.), ask the user.

## What this skill can do

- **Scaffold a GitOps repo + wire Flux** — pristine, platform-only, or active cluster → [`recipes/scaffold.md`](./references/recipes/scaffold.md)
- **Install the default platform resources** — project / environments / pipeline / ComponentTypes / Traits + GitOps-mode build-and-release Workflows + Argo `ClusterWorkflowTemplate`s → [`recipes/install-defaults.md`](./references/recipes/install-defaults.md)
- **Install Flux + `git-token` / `gitops-token` secrets** when scaffolding finds them missing → [`recipes/install-flux-and-secrets.md`](./references/recipes/install-flux-and-secrets.md)
- **Author platform resources via Git** — pick the right recipe up-front:
  - `(Cluster)ComponentType` → [`recipes/author-componenttype.md`](./references/recipes/author-componenttype.md)
  - `(Cluster)ResourceType` → [`recipes/author-resourcetype.md`](./references/recipes/author-resourcetype.md)
  - `(Cluster)Trait` → [`recipes/author-trait.md`](./references/recipes/author-trait.md)
  - `(Cluster)Workflow` → [`recipes/author-workflow.md`](./references/recipes/author-workflow.md)
  - `Environment` + `DeploymentPipeline` (+ default `Project`) → [`recipes/author-environment-pipeline.md`](./references/recipes/author-environment-pipeline.md)
  - `SecretReference` → [`recipes/author-secret-reference.md`](./references/recipes/author-secret-reference.md)
  - `AuthzRole` / `ClusterAuthzRole` + bindings → [`recipes/author-authz.md`](./references/recipes/author-authz.md)
  - `ObservabilityAlertRule`, `NotificationChannel`, anything else → [`recipes/author-other-resources.md`](./references/recipes/author-other-resources.md)
- **Verify reconciliation; recover from drift** → [`recipes/verify-and-recover-drift.md`](./references/recipes/verify-and-recover-drift.md)

## What this skill cannot do

- **Application-level GitOps** — `Project` / `Component` / `Workload` / `ComponentRelease` / `ReleaseBinding` / `Resource` / `ResourceReleaseBinding` / workload-descriptor authoring. Out of scope; tell the user when the task crosses into application territory. (PE-side: `(Cluster)ResourceType` *templates* belong here; the dev-side `Resource` instances + `ResourceReleaseBinding`s belong in the developer-gitops skill.)
- **Helm install of the OpenChoreo control plane / planes.** Assumes a running control plane.
- **Plane management in Git** — `DataPlane` / `ClusterDataPlane` / `WorkflowPlane` / `ClusterWorkflowPlane` / `ObservabilityPlane` / `ClusterObservabilityPlane` are one-time install-side setups with cert management. Out of scope by default; brief note in [`recipes/author-other-resources.md`](./references/recipes/author-other-resources.md) for users who insist.
- **Imperative ops** — triggering a `WorkflowRun`, `kubectl exec`, runtime log tail, direct CRD edits against the API server. `WorkflowRun` does **not** belong in Git; trigger via the UI, webhook, or `occ component workflow run`.
- **External-system admin** — Git provider webhooks, IdP / SSO, Vault / AWS Secrets Manager backend setup. The skill wires only the OpenChoreo-side `SecretReference` resources, not the upstream store.
- **CD tools other than Flux CD.**

## Working style

- **Git is the source of truth.** GitOps-managed resources change only through Git. `occ apply -f` and `kubectl apply -f` are reserved for pre-Flux bootstrap and out-of-Git cluster reads.
- **Flux prunes on delete.** If a resource was committed and is then removed from Git, the next reconcile deletes it from the cluster. Useful for retiring resources cleanly; dangerous if you commit accidentally.
- **Always `git commit -s`** (DCO). Every change is a feature branch + PR.
- **`occ` over `kubectl` for OpenChoreo CRDs.** When reading / writing Project, Component, Workload, ComponentRelease, ReleaseBinding, Resource, ResourceRelease, ResourceReleaseBinding, Environment, DeploymentPipeline, ComponentType, ResourceType, Trait, Workflow, SecretReference, AuthzRole, plane CRDs — use `occ  get/list/delete`. Reach for `kubectl` only for non-OpenChoreo resources (Flux, ESO, Argo CRDs, raw K8s).
- **Verify, don't assume.** Reconciliation is interval-based (`GitRepository: 1m`, `Kustomization: 5m`); read the result back with `occ  get` after merge.
- **Don't open a PR or push without explicit user confirmation.** Both are remote-visible.

## Stable guardrails

- **Sync ordering** — `platform-shared/` before `namespaces//platform/` before `namespaces//projects/`, via Flux `dependsOn`.
- **No plaintext secrets in Git** — use `SecretReference` resources backed by a `ClusterSecretStore`.
- **Protect `platform-shared/` with CODEOWNERS** — cluster-scoped changes affect every namespace. Sample at [`assets/codeowners-platform-shared`](./assets/codeowners-platform-shared).
- **Cluster ↔ namespace scope is interchangeable** for ComponentType / ResourceType / Trait / Workflow. Convert by swapping the `kind:` and adding/removing `metadata.namespace:`. Update referrers' `allowedWorkflows[].kind` accordingly; for ResourceTypes, update consumer `Resource.spec.type.kind`. See [`authoring.md`](./references/authoring.md).
- **Vanilla CI workflows aren't GitOps-compatible.** The four `ClusterWorkflow`s shipped by the platform install — `dockerfile-builder` / `paketo-buildpacks-builder` / `gcp-buildpacks-builder` / `ballerina-buildpack-builder` — write the `Workload` CR directly to the cluster API, so Flux reverts them. `extract-resources.sh defaults` refuses to extract them by default; use `extract-resources.sh gitops-workflows` for the GitOps equivalents (`docker-gitops-release` etc.). When in doubt about any other Workflow, inspect it (`occ clusterworkflow get ` / `occ workflow get  -n `) and check whether the pipeline ends with `git-commit-push-pr` (GitOps-compatible) or `generate-workload-cr` (not). Full write-up in [`authoring.md`](./references/authoring.md) *Vanilla CI workflows aren't GitOps-compatible*.

## Anti-patterns

- Scaffolding without confirming the `occ` + `kubectl` context — silently seeding the wrong cluster's resources into Git.
- Wiring Flux before the user has confirmed the remote URL — Flux will start pulling from somewhere unexpected.
- Pushing or opening a PR before the user has reviewed the commit list.
- Hand-authoring large CRDs (ComponentTypes / Workflows) from memory instead of fetching the shape from upstream or templating from a live `occ  get`.
- Carrying vanilla CI workflows into a GitOps repo — they write directly to the cluster and conflict with Flux.
- Inventing tooling the user didn't ask for (kustomize overlays, custom controllers, helper scripts).
- Treating cluster reads as authoritative *after* GitOps is wired — once Flux is reconciling, Git is the source of truth.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [openchoreo](https://github.com/openchoreo)
- **Source:** [openchoreo/skills](https://github.com/openchoreo/skills)
- **License:** Apache-2.0

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-openchoreo-skills-openchoreo-platform-engineer-gitops
- Seller: https://agentstack.voostack.com/s/openchoreo
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
