file-search-on: Skill for Claude Code

.claude/skills/gh-actions-node24-migration/SKILL.md

gh-actions-node24-migration is a skill for Claude Code from richardwooding/file-search-on. It costs 0 tokens per session (1,475 once invoked), scanned A, a copy of gh-actions-node24-migration, MIT.

A checker and updater for GitHub Actions, GitHub's service for running automated tasks from a code repository, as its Node 20 runtime is replaced by Node 24.

In plain words
What is it for?
Use it to inspect .github workflow files and action metadata, review detected changes, and update safe action references or node20 settings to node24.
Why use it?
It helps find workflows and custom actions that may stop working because they still request the older Node 20 runtime.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is richardwooding/file-search-on's own configuration. It tells Claude Code how to work on file-search-on itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything file-search-on configures →

Reuse

Borrowing it

Nothing to install: this file belongs to richardwooding/file-search-on. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/richardwooding/file-search-on/main/.claude/skills/gh-actions-node24-migration/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/richardwooding/file-search-on

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 gh-actions-node24-migration

README.md
[![agentmods](https://agentmods.dev/badge/skills/richardwooding/file-search-on/gh-actions-node24-migration/github.svg)](https://agentmods.dev/skills/richardwooding/file-search-on/gh-actions-node24-migration)
Your own site
<a href="https://agentmods.dev/skills/richardwooding/file-search-on/gh-actions-node24-migration"><img src="https://agentmods.dev/badge/skills/richardwooding/file-search-on/gh-actions-node24-migration/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-actions-node24-migration

Your own site · 80×15
<a href="https://agentmods.dev/skills/richardwooding/file-search-on/gh-actions-node24-migration"><img src="https://agentmods.dev/badge/skills/richardwooding/file-search-on/gh-actions-node24-migration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,475 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 89% copy Near-identical to another mod 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.00000 $0.01475
Opus 5 $0.00000 $0.00737
Sonnet 5 $0.00000 $0.00295
Haiku 4.5 $0.00000 $0.00147

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

Security

Grade A, and why

gh-actions-node24-migration 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.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/apply_fix.py, scripts/audit.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Origin

This is a copy

89% identical to gh-actions-node24-migration — 2 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.claude/skills/gh-actions-node24-migration/SKILL.md · 79 lines

How it starts

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

GitHub Actions Node 24 Migration

GitHub is retiring the Node 20 runtime on Actions runners. The runner default flips from Node 20 to Node 24, then Node 20 is removed entirely. Two audiences must act:

  • Workflow authors — bump uses: references to action versions whose published action.yml declares Node 24.
  • Action authors — change runs.using: node20 to node24 in their action's metadata file.

This skill drives that migration deterministically: a single audit script classifies every action reference in a repo, and an apply script rewrites the safe ones in place.

Quick start

# 1. Audit (read-only). Writes audit.json next to the cwd and prints a markdown table.
python scripts/audit.py <repo-root>

# 2. Review the table. Decide which findings to take.

# 3. Dry-run the rewrite (default — prints unified diffs, writes nothing).
python scripts/apply_fix.py audit.json

# 4. Apply for real once the diffs look right.
python scripts/apply_fix.py audit.json --apply

gh (GitHub CLI) must be installed and authenticated — the audit calls gh api to read each action's action.yml at its pinned ref and to discover the latest Node 24 release.

What gets audited

  • **/.github/workflows/*.yml and *.yaml — every uses: line (job steps and reusable workflows).
  • Top-level action.yml/action.yaml and any nested **/action.yml — the runs.using field.
  • Composite actions — recursed into runs.steps[].uses.

Actions are classified into one of these states:

State Meaning Auto-fixable
node24 Already on Node 24.
node20-fixable On Node 20; a Node 24 release exists upstream. yes
node20-stuck On Node 20; no Node 24 release published yet. no — flag only
local-node20 Local action.yml declares runs.using: node20. yes (rewrite)
composite Composite action — judged by its inner uses: references. recursed
docker Docker-based action; not affected by the Node deprecation. skip
unresolved action.yml not reachable (private, archived, deleted). no — flag only

Read the full file on GitHub · 79 lines

Files

What ships with it

5 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. 10d ago First seen · 79 lines · 0 tokens per session scan A d682a3683d4d

Subscribe to this mod's changes

gh-actions-node24-migration is a skill published in the GitHub repository richardwooding/file-search-on (5 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,475 tokens. A static security scan graded it A with 0 findings. It is 89% identical to gh-actions-node24-migration, differing in 2 lines, and is treated as a copy.

Related

Other skills, from other repositories