obs-to-gitops-integration

obs-to-gitops-integration is a skill for Claude Code, Codex from paruff/uFawkesAI. It costs 35 tokens per session (425 once invoked), scanned A, original, MIT.

A validation check for a workflow that writes deployment configuration to a GitOps repository. GitOps means managing deployments through version-controlled files; environment overlays are environment-specific changes layered onto shared configuration.

In plain words
What is it for?
It checks commit structure, environment resolution, overlays, schema rules, and manifest correctness, producing a report and diff.
Why use it?
It detects wrong commits, environment settings, overlays, or deployment manifests before they are used.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code; installed under .agents/ (shared by several agents); mentions Codex.

Good fit It checks commit structure, environment resolution, overlays, schema rules, and manifest correctness, producing a report and diff.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/paruff/ufawkesai/obs-to-gitops
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add paruff/uFawkesAI --skill obs-to-gitops
Clone the repo
git clone --depth 1 https://github.com/paruff/uFawkesAI

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for obs-to-gitops-integration

README.md
[![agentmods](https://agentmods.dev/badge/skills/paruff/ufawkesai/obs-to-gitops.svg)](https://agentmods.dev/skills/paruff/ufawkesai/obs-to-gitops)
Your own site
<a href="https://agentmods.dev/skills/paruff/ufawkesai/obs-to-gitops"><img src="https://agentmods.dev/badge/skills/paruff/ufawkesai/obs-to-gitops.svg" alt="Measured on agentmods" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 425 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00035 $0.00425
Opus 5 $0.00017 $0.00212
Sonnet 5 $0.00007 $0.00085
Haiku 4.5 $0.00003 $0.00042

Measured 4d ago against content hash ad5531bf83fd, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

obs-to-gitops-integration scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/integration-testing/obs-to-gitops/SKILL.md · 77 lines

What it actually says

Skill: OBS → GitOps Integration Testing

Load trigger: "load obs-to-gitops-integration skill" > DORA: Cap 4 (CI/CD Automation) Token cost: Low

Purpose

Validate that OBS writes correct manifests to the GitOps repo.

Responsibilities

  • Validate commit structure
  • Validate overlays
  • Validate environment resolution
  • Validate manifest correctness

Inputs

  • OBS output
  • GitOps repo

Outputs

  • obs-gitops-report.json
  • manifest-diff.txt

Sub-Skills

Skill Purpose
obs-to-gitops/overlay-resolution Validate overlay resolution
obs-to-gitops/commit-validation Validate Git commit structure

Validation Rules

  • Valid GitOps commits
  • Correct overlays
  • No schema violations
  • Commit message follows convention
  • Files changed correctly

Output Format

{
  "skill": "obs-to-gitops-integration",
  "status": "pass | fail",
  "commit": {
    "sha": "abc123",
    "message": "chore: update image to v1.3.0",
    "files_changed": 3
  },
  "overlays": {
    "dev": "pass",
    "staging": "pass",
    "prod": "pass"
  },
  "manifests_valid": true
}

Success Criteria

  • Valid GitOps commits
  • Correct overlays
  • No schema violations
Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 77 lines · 35 tokens per session scan A ad5531bf83fd

Subscribe to this mod's changes

obs-to-gitops-integration is a skill published in the GitHub repository paruff/uFawkesAI (2 stars, last pushed 15d ago), licensed MIT. It adds 35 tokens to every session and 425 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

ship

Use when a change is ready to land. Runs the full sequence — branch, quality gate, commit, push, PR — so nothing gets skipped.

HumanDealer/vibeproof · 32 tokens

publish-to-github

Use this skill when the user is ready to push their local AI skill or rule repository to GitHub for the first time. This includes running git init and the initial commit, creating the GitHub repository via the gh CLI or manual browser steps, setting the repository description and Topics tags, and confirming the push…

haorantang97/LabKit · 235 tokens

git-workflow-and-versioning

Structures git workflow practices. Use when making any code change. Use when committing, branching, resolving conflicts, opening or reviewing a pull request (PR), pushing to a remote, or when you need to organize work across multiple parallel streams. Use when cutting a release, choosing a semantic version bump…

addyosmani/agent-skills · 74 tokens

git-advanced-workflows

Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.

wshobson/agents · 54 tokens

chinese-commit-conventions

A Chinese-language guide to Conventional Commits, a format for writing consistent Git commit messages, plus related changelog, commit-checking, and commit-helper configuration.

jnMetaCode/superpowers-zh · 65 tokens

work-unit-commits

Plan commits as reviewable work units. Trigger: implementation, commit splitting, chained PRs, or keeping tests and docs with code.

Gentleman-Programming/gentle-ai · 33 tokens