devops-pipeline

devops-pipeline is a skill for Claude Code from luongnv89/skills. It costs 56 tokens per session (4,139 once invoked), scanned A, original, MIT.

A setup for local pre-commit checks and lightweight GitHub Actions workflows. Pre-commit checks run before code is committed, while GitHub Actions runs automated jobs on GitHub.

In plain words
What is it for?
Use it when adding or auditing quality checks for a GitHub-based project, including formatting, tests, security checks, and CI workflow design.
Why use it?
It moves fast quality checks closer to the developer, giving earlier feedback and keeping the remote workflow focused on checks that need GitHub, secrets, or multiple environments.

Skill for Claude Code

Written for Claude Code: effort in frontmatter.

Not installable on its own: it runs a file from its repository that does not travel with it. Clone the repository, or install whatever ships that file. The line is bash scripts/e2e_test.sh.

Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

Made for: Claude Code.

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 devops-pipeline

README.md
[![agentmods](https://agentmods.dev/badge/skills/luongnv89/skills/devops-pipeline.svg)](https://agentmods.dev/skills/luongnv89/skills/devops-pipeline)
Your own site
<a href="https://agentmods.dev/skills/luongnv89/skills/devops-pipeline"><img src="https://agentmods.dev/badge/skills/luongnv89/skills/devops-pipeline.svg" alt="Measured on agentmods" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,139 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00056 $0.04139
Opus 5 $0.00028 $0.02070
Sonnet 5 $0.00011 $0.00828
Haiku 4.5 $0.00006 $0.00414

Measured 2d ago against content hash 02e45cb1f67d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

devops-pipeline 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 2d 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.

skills/devops-pipeline/SKILL.md · 293 lines

How it starts

The opening of the file, as written. The whole thing — 293 lines — stays where its author put it; the contents beside it link to each section on GitHub.

DevOps Pipeline

Implement comprehensive DevOps quality gates adapted to project type, with a shift-left philosophy: run as many checks as possible locally via pre-commit so developers get fast feedback and CI is a safety net rather than the primary gate.

Core principle: if a check can run on a developer's machine, it runs there. GitHub Actions runs only what a laptop genuinely cannot — matrix version testing, secrets-dependent scans, deployment, coverage publishing — plus one cheap job proving the hooks were not bypassed.

Check Routing Table

Every check lands in exactly one lane. This table is the single source of truth: workflow steps 2 and 3, the reference files, and any config this skill generates must agree with it.

Lane Time budget What runs there
pre-commit stage (every commit) < 10s, changed files only Format, lint, type-check, offline security scans, fast unit tests, compile/import check
pre-push stage (every push) < 60s, whole repo Full test suite, CLI E2E, coverage threshold, slow lint rulesets
GitHub Actions billed per minute Version matrix, secrets-dependent scans, coverage upload, deploy/release, bypass guard

A check that fits an earlier lane must not be repeated in a later one. CI re-running the whole hook set on every push is the failure mode this skill exists to prevent.

To stay within the agent's context budget, this SKILL keeps templates short and links to references/*.md for language-specific configs, workflow templates, and the CLI E2E script.

Repo Sync Before Edits (mandatory)

Before creating/updating/deleting files in an existing repository, sync the current branch with remote:

branch="$(git rev-parse --abbrev-ref HEAD)"
git fetch origin
git pull --rebase origin "$branch"

If the working tree is not clean, stash first, sync, then restore:

git stash push -u -m "pre-sync"
branch="$(git rev-parse --abbrev-ref HEAD)"
git fetch origin && git pull --rebase origin "$branch"
git stash pop

Read the full file on GitHub · 293 lines

Files

What ships with it

4 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. 2d ago Changed · +48 lines 02e45cb1f67d
  2. 6d ago First seen · 245 lines · 56 tokens per session scan A 0b285181aa36

Subscribe to this mod's changes

devops-pipeline is a skill published in the GitHub repository luongnv89/skills (123 stars, last pushed today), licensed MIT. It adds 56 tokens to every session and 4,139 once invoked, about $0.0003 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-08-30.

Related

Other skills, from other repositories

commit

Skill "commit" from clacky-ai/openclacky, covering smart commit skill, critical requirement: single-line commits only, core philosophy, usage and process steps.

clacky-ai/openclacky · 0 tokens

ship

Mechanical pre-deploy gate — tests, build, tree state.

hamr0/liteagents · 14 tokens

azure-pipelines

Expert knowledge for Azure Pipelines development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when securing agents/secrets, authoring YAML, deploying to AKS/Web Apps/VMs, or…

MicrosoftDocs/Agent-Skills · 116 tokens

azure-devops

Expert knowledge for Azure DevOps development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when managing agent pools, boards/work items, analytics/OData, pipelines, or Azure…

MicrosoftDocs/Agent-Skills · 111 tokens

azure-functions

Expert knowledge for Azure Functions development including troubleshooting, best practices, decision making, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when wiring Functions to triggers/bindings, VNet/private endpoints, Flex/Container hosting, CI/CD, or scaling…

MicrosoftDocs/Agent-Skills · 115 tokens

azure-policy

Expert knowledge for Azure Policy development including troubleshooting, best practices, decision making, architecture & design patterns, security, configuration, integrations & coding patterns, and deployment. Use when authoring JSON policies, Machine Config, DevOps policy-as-code, Terraform/Gatekeeper, or CI/CD…

MicrosoftDocs/Agent-Skills · 107 tokens