pipe-to-obs-integration

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

A validation check for the flow from a build pipeline to a GitOps deployment workflow. It verifies that built files and deployment information reach the right place and update configuration correctly.

In plain words
What is it for?
It runs a full pipeline build and checks versions, software bills of materials, signatures, image digests, Git commits, and manifest updates.
Why use it?
It catches broken handoffs, incorrect image details, invalid manifests, and missing build evidence before deployment.

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 runs a full pipeline build and checks versions, software bills of materials, signatures, image digests, Git commits, and manifest updates.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/paruff/ufawkesai/pipe-to-obs
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 pipe-to-obs
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 pipe-to-obs-integration

README.md
[![agentmods](https://agentmods.dev/badge/skills/paruff/ufawkesai/pipe-to-obs/github.svg)](https://agentmods.dev/skills/paruff/ufawkesai/pipe-to-obs)
Your own site
<a href="https://agentmods.dev/skills/paruff/ufawkesai/pipe-to-obs"><img src="https://agentmods.dev/badge/skills/paruff/ufawkesai/pipe-to-obs/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for pipe-to-obs-integration

Your own site · 80×15
<a href="https://agentmods.dev/skills/paruff/ufawkesai/pipe-to-obs"><img src="https://agentmods.dev/badge/skills/paruff/ufawkesai/pipe-to-obs.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 491 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.00041 $0.00491
Opus 5 $0.00020 $0.00246
Sonnet 5 $0.00008 $0.00098
Haiku 4.5 $0.00004 $0.00049

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

Security

Grade A, and why

pipe-to-obs-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 7d 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/pipe-to-obs/SKILL.md · 85 lines

What it actually says

Skill: PIPE → OBS Integration Testing

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

Purpose

Validate artifact flow and GitOps updates triggered by PIPE.

Responsibilities

  • Execute a full PIPE build
  • Validate that OBS receives correct artifacts
  • Validate that OBS updates GitOps manifests correctly
  • Validate version.json, SBOM, signatures, and image digests

Inputs

  • Pipeline run
  • version.json
  • GitOps repo

Outputs

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

Sub-Skills

Skill Purpose
pipe-to-obs/artifact-flow Validate artifact production and consumption
pipe-to-obs/manifest-update Validate manifest updates

Integration Flow

PIPE build → artifacts → OBS receives → OBS updates GitOps → manifests validated

Validation Rules

  • Correct image tag passed to OBS
  • Correct image digest passed to OBS
  • OBS creates valid Git commit
  • Manifests valid YAML
  • No schema violations

Output Format

{
  "skill": "pipe-to-obs-integration",
  "status": "pass | fail",
  "pipeline_run": "123",
  "artifacts": {
    "version_json": "present",
    "sbom": "present",
    "signature": "present",
    "image_digest": "present"
  },
  "obs_update": {
    "commit": "abc123",
    "files_changed": 3,
    "manifests_valid": true
  }
}

Success Criteria

  • Correct image tag and digest passed to OBS
  • Correct GitOps update created
  • No invalid manifests
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. 7d ago First seen · 85 lines · 41 tokens per session scan A ccda41ef9e8f

Subscribe to this mod's changes

pipe-to-obs-integration is a skill published in the GitHub repository paruff/uFawkesAI (2 stars, last pushed 18d ago), licensed MIT. It adds 41 tokens to every session and 491 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

github-actions-templates

Create production-ready GitHub Actions workflows for automated testing, building, and deploying applications. Use when setting up CI/CD with GitHub Actions, automating development workflows, or creating reusable workflow templates.

wshobson/agents · 44 tokens

CI Pipeline Optimizer

Optimize CI test pipelines through intelligent test splitting, parallelization, caching strategies, and selective test execution based on code changes.

PramodDutta/qaskills · 29 tokens

Flaky Test Quarantine

Detect, quarantine, and systematically fix flaky tests with automated retry analysis, root cause categorization, and CI pipeline integration for test reliability.

PramodDutta/qaskills · 32 tokens

devops-infrastructure

Guides Docker, CI/CD pipelines, deployment strategies, infrastructure as code, and observability setup. Use when writing Dockerfiles, configuring GitHub Actions, planning deployments, setting up monitoring, or when asked about containers, pipelines, Terraform, or production infrastructure.

CloudAI-X/claude-workflow-v2 · 57 tokens

CI/CD Pipeline Advanced

Expert-level CI/CD pipeline skill for test automation. Covers GitHub Actions, Jenkins, GitLab CI, Azure DevOps, parallel execution, matrix strategies, caching, artifact management, and deployment gates.

PramodDutta/qaskills · 45 tokens

Checkly Monitoring as Code

Teach agents to build synthetic monitoring as code with Checkly, including Playwright browser checks, API checks, alerting, and CI deploy workflows.

PramodDutta/qaskills · 35 tokens