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.
npx skills add selvarajmurugesan90/ops-engineering-skills --skill github-actions-centralized-reusable-workflowsgit clone --depth 1 https://github.com/selvarajmurugesan90/ops-engineering-skillsWrote 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.
[](https://agentmods.dev/skills/selvarajmurugesan90/ops-engineering-skills/github-actions-centralized-reusable-workflows)<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>- NVIDIA SkillSpector warn
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.
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.
| Model | Per session | Once 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 |
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.
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/*.ymlfiles 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
.githubat the org level for org-wide defaults, or a purpose-named repo likeactions-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.
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.
- 8d ago First seen · 319 lines · 99 tokens per session scan A 3b096931f260
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.
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.
baby-sit
Monitor a GitHub pull request until CI is green, diagnose failures, and rerun only evidence-backed flaky GitHub Actions jobs.
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.
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.
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…
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.