add-ci-area

add-ci-area is a skill for Claude Code from fpindej/netrock. It costs 8 tokens per session (321 once invoked), scanned A, original, MIT.

A procedure for adding a project area, such as mobile, to GitHub Actions workflows. GitHub Actions runs automated checks when code changes are pushed or reviewed.

In plain words
What is it for?
Adding path filters, workflow jobs, Docker checks, and pull-request gates for a new part of a repository.
Why use it?
It ensures that changes in the new area trigger the right build, lint, test, and Docker checks and that those checks affect the overall CI gate.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Good fit Adding path filters, workflow jobs, Docker checks, and pull-request gates for a new part of a repository.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/fpindej/netrock/add-ci-area
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 fpindej/netrock --skill add-ci-area
Clone the repo
git clone --depth 1 https://github.com/fpindej/netrock

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 add-ci-area

README.md
[![agentmods](https://agentmods.dev/badge/skills/fpindej/netrock/add-ci-area/github.svg)](https://agentmods.dev/skills/fpindej/netrock/add-ci-area)
Your own site
<a href="https://agentmods.dev/skills/fpindej/netrock/add-ci-area"><img src="https://agentmods.dev/badge/skills/fpindej/netrock/add-ci-area/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 add-ci-area

Your own site · 80×15
<a href="https://agentmods.dev/skills/fpindej/netrock/add-ci-area"><img src="https://agentmods.dev/badge/skills/fpindej/netrock/add-ci-area.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 8 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 321 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 pass 7 Sept 2026
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.00008 $0.00321
Opus 5 $0.00004 $0.00161
Sonnet 5 $0.00002 $0.00064
Haiku 4.5 $0.00001 $0.00032

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

Security

Grade A, and why

add-ci-area 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 9d 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.

.claude/skills/add-ci-area/SKILL.md · 44 lines

What it actually says

Adds a new project area to CI.

Steps

  1. Open .github/workflows/ci.yml
  2. Add a path filter in the changes job:
    mobile:
      - 'src/mobile/**'
    
  3. Add an output to the changes job:
    mobile: ${{ steps.filter.outputs.mobile }}
    
  4. Add a new job (copy an existing one and adapt):
    mobile-checks:
      name: Mobile checks
      needs: changes
      if: needs.changes.outputs.mobile == 'true'
      runs-on: ubuntu-latest
      timeout-minutes: 10
      defaults:
        run:
          working-directory: src/mobile
      steps:
        - uses: actions/checkout@v6
        # ... setup + build + lint + test steps
    
  5. Add the new job to the gate job's needs:
    ci-passed:
      needs: [backend-build, frontend-checks, mobile-checks]
    
  6. (If the project has a Dockerfile) Add a corresponding job to .github/workflows/docker.yml and update its on.paths and dorny/paths-filter filters
  7. Verify: push a branch and confirm the new job appears in the PR checks

No branch protection changes needed - the CI passed gate job covers all upstream jobs automatically.

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. 9d ago First seen · 44 lines · 8 tokens per session scan A b41d3660e986

Subscribe to this mod's changes

add-ci-area is a skill published in the GitHub repository fpindej/netrock (232 stars, last pushed yesterday), licensed MIT. It adds 8 tokens to every session and 321 once invoked, about $0.0000 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.