gh-actionlint

gh-actionlint is a skill for Claude Code, Codex from Unique-Divine/jiyuu. It costs 85 tokens per session (793 once invoked), scanned A, original, MIT.

A validator for GitHub Actions workflow files, which describe automated tasks run by GitHub. It checks both YAML structure and GitHub Actions-specific rules.

In plain words
What is it for?
Use it when editing or debugging files under .github/workflows/ or when checking whether a GitHub Actions step or workflow is valid.
Why use it?
It finds workflow syntax, expression, trigger, dependency, matrix, and schema mistakes before GitHub CI reports them.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when editing or debugging files under .github/workflows/ or when checking whether a GitHub Actions step or workflow is valid.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/unique-divine/jiyuu/gh-actionlint
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 Unique-Divine/jiyuu --skill gh-actionlint
Clone the repo
git clone --depth 1 https://github.com/Unique-Divine/jiyuu

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 gh-actionlint

README.md
[![agentmods](https://agentmods.dev/badge/skills/unique-divine/jiyuu/gh-actionlint/github.svg)](https://agentmods.dev/skills/unique-divine/jiyuu/gh-actionlint)
Your own site
<a href="https://agentmods.dev/skills/unique-divine/jiyuu/gh-actionlint"><img src="https://agentmods.dev/badge/skills/unique-divine/jiyuu/gh-actionlint/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 gh-actionlint

Your own site · 80×15
<a href="https://agentmods.dev/skills/unique-divine/jiyuu/gh-actionlint"><img src="https://agentmods.dev/badge/skills/unique-divine/jiyuu/gh-actionlint.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 793 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.00085 $0.00793
Opus 5 $0.00043 $0.00396
Sonnet 5 $0.00017 $0.00159
Haiku 4.5 $0.00009 $0.00079

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

Security

Grade A, and why

gh-actionlint 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 10d 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.

ai-skills/gh-actionlint/SKILL.md · 100 lines

How it starts

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

GH Actionlint

Purpose

Use actionlint to catch GitHub Actions workflow mistakes before CI does: YAML syntax errors, invalid workflow keys, expression mistakes, bad needs references, invalid triggers, and other common Actions-specific issues.

Generic YAML linters are useful for indentation, but they do not understand GitHub Actions semantics. Prefer this skill whenever the file is a GitHub Actions workflow.

When To Use

Use this skill when:

  • The user asks to check, lint, validate, or debug GitHub Actions workflows.
  • You modify files under .github/workflows/.
  • CI fails with workflow parsing, expression, trigger, needs, matrix, or Actions schema errors.
  • The user asks whether a workflow step shape is valid, such as an unnamed run: step.

Workflow

  1. Work from the repository root when possible.
  2. Identify the workflow targets:
    • If the user named specific files, check those files.
    • Otherwise, check .github/workflows/.
  3. Choose the runner:
    • If bun is available, use bunx github-actionlint.
    • Otherwise, if npx is available, use npx --yes github-actionlint.
    • If neither exists, tell the user that bun or npx is needed.
  4. Run actionlint.
  5. Report whether the workflows passed. If there are failures, quote the relevant actionlint messages and suggest the smallest fix.

Commands

Check all workflows:

if command -v bun >/dev/null 2>&1; then
  bunx github-actionlint .github/workflows/
elif command -v npx >/dev/null 2>&1; then
  npx --yes github-actionlint .github/workflows/
else
  echo "need bun or npx on PATH" >&2
  exit 1
fi

Check specific workflow files:

if command -v bun >/dev/null 2>&1; then
  bunx github-actionlint .github/workflows/tests.yaml
elif command -v npx >/dev/null 2>&1; then
  npx --yes github-actionlint .github/workflows/tests.yaml
else
  echo "need bun or npx on PATH" >&2
  exit 1
fi

Use -color -verbose when extra diagnostics are helpful:

bunx github-actionlint -color -verbose .github/workflows/

Read the full file on GitHub · 100 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. 10d ago First seen · 100 lines · 85 tokens per session scan A 2eaf46f901b8

Subscribe to this mod's changes

gh-actionlint is a skill published in the GitHub repository Unique-Divine/jiyuu (6 stars, last pushed 2d ago), licensed MIT. It adds 85 tokens to every session and 793 once invoked, about $0.0004 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-31.