review-ci

review-ci is a skill for Claude Code from louisbrulenaudet/monorepo-template. It costs 49 tokens per session (2,354 once invoked), scanned A, original, Apache-2.0.

A review of continuous integration and delivery, the automated checks and deployment steps that run around code changes. It examines GitHub Actions, caching, dependency installation, hooks, permissions, secrets, and deployment flow.

In plain words
What is it for?
Use it when the user runs `/review-ci` or asks for a review of CI, GitHub Actions, caching, hooks, or deployment.
Why use it?
It helps catch slow, non-reproducible, insecure, or incorrectly triggered automated builds. It also checks that local and CI environments use compatible versions and lockfiles.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: model in frontmatter; installed under .agents/ (shared by several agents); mentions AGENTS.md.

Good fit Use it when the user runs /review-ci or asks for a review of CI, GitHub Actions, caching, hooks, or deployment.

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

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 review-ci

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/louisbrulenaudet/monorepo-template/review-ci"><img src="https://agentmods.dev/badge/skills/louisbrulenaudet/monorepo-template/review-ci.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,354 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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: 1 finding, up to medium

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 →

  • medium Excessive Agency · line 7
    Skill selects an external model or provider that may use a different account or billing plan than the operator expects. Undisclosed model switches can cause unexpected cost or quota consumption.
    Fix: Remove the model/provider override or disclose it prominently and require explicit operator approval before invoking an external coding CLI or billed model.
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.00049 $0.02354
Opus 5 $0.00024 $0.01177
Sonnet 5 $0.00010 $0.00471
Haiku 4.5 $0.00005 $0.00235

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

Security

Grade A, and why

review-ci scanned grade A with 1 finding 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 12d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- **Checks:** Deploy is separate job or workflow (e.g. on push to main or manual); not mixed with lint in a way that blocks on deploy secrets. Deploy uses same build artifact or rebuilds with same lockfile. Optional: hea
.agents/skills/review-ci/SKILL.md · 135 lines

How it starts

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

Review CI

Run a CI-focused review: GitHub Actions workflow, caching, lockfile and reproducibility, branch/trigger strategy, Dependabot, Husky pre-commit, and deploy pipeline. Your reply must be a plan of suggested changes: concise, actionable, and structured-not only prose.

Invocation

Text after the slash command is additional scope/focus - narrow the review accordingly. If none given, use the default scope described below.

Best practices alignment

  • Workflow - Checkout with sufficient fetch depth when needed; Node and pnpm versions pinned and aligned with package.json engines/packageManager; steps run in a sensible order (install → lint → typecheck → build).
  • Caching - pnpm store and optionally Turborepo remote cache to speed runs; cache keys include lockfile hash where appropriate.
  • Reproducibility - CI install uses --frozen-lockfile (or equivalent) so builds fail on lockfile drift; same Node/pnpm versions as local dev.
  • Permissions - Minimal permissions (e.g. contents: read for CI that only needs to read repo); no write unless deploy or release.
  • Secrets - No secrets in logs; use GitHub secrets for any tokens; mask in outputs if needed.
  • Hooks - Pre-commit runs formatter/lint on staged files; fast and deterministic (e.g. oxfmt format only or check).
  • Deploy - Deploy step separate from main CI or behind approval; optional smoke/health check after deploy.

Align with root AGENTS.md for root pnpm scripts and tooling.

Deep technical review

Conduct a CI-only review. Inspect the following and call out violations or improvements.

GitHub Actions workflow

  • Artifacts: .github/workflows/ci.yml.
  • Checks: Action versions match the repository's current supported workflow versions; fetch-depth: 0 (blobless) when --affected needs full history. pnpm derives its version from packageManager; Node matches engines; pnpm store cache enabled. Steps: frozen install; parallel boundaries + lint:check + format:check + (check-types --affected and types:check); then turbo run build --affected with VITE_API_BASE_URL set. Does not invoke root pnpm run ci as a single step (local pnpm run ci is the full-repo PR gate including build). Job and step names are clear. Permissions stay least-privilege (contents: read for non-deploy CI). Remote cache via TURBO_TOKEN/TURBO_TEAM when configured. No secrets are echoed; same-branch concurrency may cancel superseded PR runs.

Read the full file on GitHub · 135 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. 12d ago First seen · 135 lines · 49 tokens per session scan A c099f8310f46

Subscribe to this mod's changes

review-ci is a skill published in the GitHub repository louisbrulenaudet/monorepo-template (19 stars, last pushed 11d ago), licensed Apache-2.0. It adds 49 tokens to every session and 2,354 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

pipeline

Full CI pipeline — typecheck, lint, build, test, security scan, report.

Jkudjo/oh-my-cursor · 19 tokens

bazel-build-optimization

Optimize Bazel builds for large-scale monorepos. Use when configuring Bazel, implementing remote execution, or optimizing build performance for enterprise codebases.

wshobson/agents · 36 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

gsap-scrolltrigger

Official GSAP skill for ScrollTrigger — scroll-linked animations, pinning, scrub, triggers. Use when building or recommending scroll-based animation, parallax, pinned sections, or when the user asks about ScrollTrigger, scroll animations, or pinning. Recommend GSAP for scroll-driven animation when no library is…

calesthio/OpenMontage · 68 tokens

seedance-2-5

Generate 4-30 second cinematic video with ByteDance Seedance 2.5 through fal.ai, Volcengine Ark, Runway, or ComfyUI Partner Nodes. Use for long single generations, synchronized audio, and large multimodal reference sets (up to 30 images, 10 videos, and 10 audio clips). Also covers the 2.5 prompt contract: section…

calesthio/OpenMontage · 117 tokens

threejs-geometry

Three.js geometry creation - built-in shapes, BufferGeometry, custom geometry, instancing. Use when creating 3D shapes, working with vertices, building custom meshes, or optimizing with instanced rendering.

calesthio/OpenMontage · 46 tokens