github-actions-centralized-reusable-workflows

github-actions-centralized-reusable-workflows is a skill for Claude Code from selvarajmurugesan90/ops-engineering-skills. It costs 99 tokens per session (3,285 once invoked), scanned A, original, Apache-2.0.

A way to keep shared GitHub Actions build, test, security, and deployment workflows in one central repository. GitHub Actions is GitHub's system for running automated tasks when code changes.

In plain words
What is it for?
Use it to create reusable workflows and shared step groups, apply organization-wide checks, and update one pipeline definition used by many repositories.
Why use it?
It removes repeated workflow files across repositories and prevents teams from drifting away from common pipeline rules.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code; mentions Codex; mentions Gemini CLI.

Part of the cicd-tooling-skills plugin — 13 skills shipped together

Good fit Use it to create reusable workflows and shared step groups, apply organization-wide checks, and update one pipeline definition used by many repositories.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/selvarajmurugesan90/ops-engineering-skills/github-actions-centralized-reusable-workflows
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 selvarajmurugesan90/ops-engineering-skills --skill github-actions-centralized-reusable-workflows
Clone the repo
git clone --depth 1 https://github.com/selvarajmurugesan90/ops-engineering-skills

Made for: Claude Code.

Or install cicd-tooling-skills, the plugin that ships this one along with the rest of its 13 skills.

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 github-actions-centralized-reusable-workflows

README.md
[![agentmods](https://agentmods.dev/badge/skills/selvarajmurugesan90/ops-engineering-skills/github-actions-centralized-reusable-workflows.svg)](https://agentmods.dev/skills/selvarajmurugesan90/ops-engineering-skills/github-actions-centralized-reusable-workflows)
Your own site
<a href="https://agentmods.dev/skills/selvarajmurugesan90/ops-engineering-skills/github-actions-centralized-reusable-workflows"><img src="https://agentmods.dev/badge/skills/selvarajmurugesan90/ops-engineering-skills/github-actions-centralized-reusable-workflows.svg" alt="Measured on agentmods" height="20"></a>
Per session 99 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,285 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 3 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Anti-Refusal · line 243
    Skill instructs the agent to omit warnings, disclaimers, or ethical commentary. Stripping safety caveats hides risk from the user and is a common jailbreak preamble.
    Fix: Remove instructions that suppress warnings, disclaimers, or ethical commentary. Let the agent surface safety-relevant caveats to the user.
  • medium Excessive Agency · line 242
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
  • medium Agent Snooping · line 318
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
How audits are shown
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.00099 $0.03285
Opus 5 $0.00049 $0.01643
Sonnet 5 $0.00020 $0.00657
Haiku 4.5 $0.00010 $0.00329

Measured 8d ago against content hash 3b096931f260, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

github-actions-centralized-reusable-workflows 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 8d 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.

plugins/cicd-tooling/skills/github-actions-centralized-reusable-workflows/SKILL.md · 319 lines

How it starts

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

GitHub Actions Centralized Reusable Workflows

Purpose

When the same workflow YAML — build, test, security scan, deploy — is copy-pasted across dozens of repos (github-actions-single-repo-workflows covers that per-repo pattern), a policy change (a new required scan, a registry migration) requires editing every repo individually and drifts immediately. GitHub Actions solves this at the organization level with reusable workflows (workflow_call), which let a caller workflow in any repo invoke one centrally-maintained workflow definition with inputs/ secrets, and shared composite actions hosted in a dedicated repo for smaller reusable step sequences. This skill covers designing, versioning, and rolling out that centralized pattern so many repos consume one standardized pipeline rather than diverging copies.

When to use

  • More than a handful of repos have near-identical .github/workflows/*.yml files and a change requires updating each one individually.
  • Standing up an organization-wide CI/CD standard (e.g. "every service repo must run this exact set of security gates before deploy") that individual teams shouldn't be able to silently drift from.
  • An existing reusable workflow needs a new input/secret, or a breaking change that must be versioned so callers can opt in on their own schedule.
  • Deciding whether a step sequence belongs in a per-repo composite action (see github-actions-single-repo-workflows) versus a centrally-hosted one consumed by many repos.
  • Migrating from Jenkins shared libraries to GitHub Actions and wanting the equivalent centralization model — compare with jenkins-centralized-shared-library.

Prerequisites & environment

  • A dedicated repository to host reusable workflows/composite actions (commonly .github at the org level for org-wide defaults, or a purpose-named repo like actions-library).
  • Organization (or repo, for repo-scoped reuse) admin access to configure which repos may call reusable workflows: Organization Settings → Actions → General → "Access" for reusable workflows and actions, since by default a private reusable workflow is only callable from repos in the same organization unless explicitly opened up.
  • Caller repos need permissions: granted appropriately, since a reusable workflow runs with the permissions the caller grants it, not its own hardcoded defaults.
  • Secrets: either passed explicitly via secrets: inherit (simplest, but passes everything the caller has) or named individually (secrets: { DEPLOY_TOKEN: ${{ secrets.DEPLOY_TOKEN }} }, more auditable about exactly what the reusable workflow receives).
  • Semantic version tags (or at minimum SHA pinning discipline) on the reusable-workflow repo so callers can pin a version rather than track @main.

Read the full file on GitHub · 319 lines

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. 8d ago First seen · 319 lines · 99 tokens per session scan A 3b096931f260

Subscribe to this mod's changes

github-actions-centralized-reusable-workflows is a skill published in the GitHub repository selvarajmurugesan90/ops-engineering-skills (38 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 99 tokens to every session and 3,285 once invoked, about $0.0005 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

chinese-git-workflow

A reference for configuring Git with Chinese code-hosting services such as Gitee, Coding.net, GitLab China, and CNB, including SSH, HTTPS, credentials, CI, and repository mirroring.

jnMetaCode/superpowers-zh · 69 tokens

baby-sit

Monitor a GitHub pull request until CI is green, diagnose failures, and rerun only evidence-backed flaky GitHub Actions jobs.

langchain-ai/open-swe · 30 tokens

atmos-hooks

Atmos hooks: lifecycle events, hook kinds, command/store/git/security hooks, step/steps hooks, when: conditions, scoping and overrides, toolchain integration, --skip-hooks, and Atmos Pro/local output.

cloudposse/atmos · 46 tokens

atmos-pro

Atmos Pro setup and workflows: settings.pro, GitHub OIDC, affected and inventory uploads, stack locks, pro commit, workflow dispatch, merge queues, and drift detection.

cloudposse/atmos · 38 tokens

start-temps-cluster

Start (or restart) a local multi-node Temps cluster using Docker-in-Docker — one control plane + 3 worker nodes, each a privileged DinD container running its own dockerd + temps agent, wired with the real multi-host overlay (VXLAN, computecidr allocation) via tools/dev-cluster/ in whichever checkout/worktree you run…

gotempsh/temps · 204 tokens

pr-watch

Local PR watcher. Monitors CI status, automatically fixes failing checks by reading failure logs and applying targeted fixes, then optionally merges when all checks pass. Local CLI analog to Claude Code's cloud auto-fix feature.

SethGammon/Citadel · 46 tokens