meerkat: Skill for Claude Code

.claude/skills/rust-cicd-pipeline/SKILL.md

rust-cicd-pipeline is a skill for Claude Code from lukacf/meerkat. It costs 92 tokens per session (2,686 once invoked), scanned A, original, Apache-2.0.

A set of instructions for adding continuous integration and delivery to Rust projects. Continuous integration automatically checks code changes, while delivery prepares verified releases.

In plain words
What is it for?
It helps set up commit hooks, a Makefile-based test and lint process, dependency audits, generated-file checks, changelog handling, and release builds on any CI system.
Why use it?
It gives local commits and automated build servers the same formatting, testing, linting, security, and version checks.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is lukacf/meerkat's own configuration. It tells Claude Code how to work on meerkat 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 meerkat configures →

Reuse

Borrowing it

Nothing to install: this file belongs to lukacf/meerkat. 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/lukacf/meerkat/main/.claude/skills/rust-cicd-pipeline/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/lukacf/meerkat

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 rust-cicd-pipeline

README.md
[![agentmods](https://agentmods.dev/badge/skills/lukacf/meerkat/rust-cicd-pipeline/github.svg)](https://agentmods.dev/skills/lukacf/meerkat/rust-cicd-pipeline)
Your own site
<a href="https://agentmods.dev/skills/lukacf/meerkat/rust-cicd-pipeline"><img src="https://agentmods.dev/badge/skills/lukacf/meerkat/rust-cicd-pipeline/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 rust-cicd-pipeline

Your own site · 80×15
<a href="https://agentmods.dev/skills/lukacf/meerkat/rust-cicd-pipeline"><img src="https://agentmods.dev/badge/skills/lukacf/meerkat/rust-cicd-pipeline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,686 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 warn 7 Sept 2026
SkillSpector: 2 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 Tool Misuse · line 273
    Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
    Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
  • high Tool Misuse · line 274
    Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
    Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
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.00092 $0.02686
Opus 5 $0.00046 $0.01343
Sonnet 5 $0.00018 $0.00537
Haiku 4.5 $0.00009 $0.00269

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

Security

Grade A, and why

rust-cicd-pipeline 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 1 executable file (scripts/setup_cicd.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.

.claude/skills/rust-cicd-pipeline/SKILL.md · 371 lines

How it starts

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

Rust CI/CD Pipeline Setup

This skill provides a complete, production-ready CI/CD pipeline for Rust projects featuring:

  • Progressive Validation: Auto-fix and generated-file sync on commit; secret, format, codegen, lock, Clippy, and deterministic repo gates on push
  • Makefile as Single Source of Truth: Identical commands locally and in any CI system
  • No GitHub Actions Dependency: Works with Jenkins, GitLab CI, or any CI runner
  • Version Consistency: Automatic verification between tag and Cargo.toml

Architecture Overview

┌─────────────────┐     ┌─────────────────┐     ┌─────────────────┐
│   Pre-commit    │     │    Any CI       │     │    Release      │
│     Hooks       │     │    System       │     │    Process      │
├─────────────────┤     ├─────────────────┤     ├─────────────────┤
│ On commit:      │     │ On push/PR:     │     │ On v* tag:      │
│ - cargo fmt fix │     │ - make lint     │     │ - Verify version│
│ - sync generated│     │ - make test     │     │ - Read notes    │
│   files         │     │ - make test-all │     │ - Build release │
│                 │     │ - make audit    │     │ - Tag artifacts │
│                 │     │                 │     │                 │
├─────────────────┤     └─────────────────┘     └─────────────────┘
│ On push:        │              │
│ - secrets/fmt   │              ▼
│ - changed clippy│     ┌─────────────────┐
│ - repo gates    │     │    Makefile     │
└─────────────────┘     │    Makefile     │
         │              │ (Single Source) │
         └──────────────┤ - test          │
                        │ - test-all      │
                        │ - lint          │
                        │ - fmt           │
                        │ - audit         │
                        │ - ci            │
                        └─────────────────┘

Quick Setup

To set up a complete pipeline for a project:

1. Prerequisites

Ensure the project has:

  • Cargo.toml with proper package metadata
  • A tests/ directory for integration tests (unit tests typically in src/)
  • Rust toolchain installed via rustup

Read the full file on GitHub · 371 lines

Files

What ships with it

8 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 · 371 lines · 92 tokens per session scan A f72ddd030d0f

Subscribe to this mod's changes

rust-cicd-pipeline is a skill published in the GitHub repository lukacf/meerkat (20 stars, last pushed today), licensed Apache-2.0. It adds 92 tokens to every session and 2,686 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.