ci-cd-and-automation

ci-cd-and-automation is a skill for Claude Code, Codex from vanja-emichi/a0_agent_skills. It costs 41 tokens per session (2,692 once invoked), scanned B, original, MIT.

A set of practices for automatically building, checking, securing, and deploying code. CI means checking changes regularly; CD means preparing or delivering them through a repeatable process.

In plain words
What is it for?
Use it to set up automated tests, builds, security checks, infrastructure configuration, deployments, and temporary preview environments.
Why use it?
It removes manual, inconsistent release steps and catches test, quality, type, or security problems before deployment.

Skill for Claude CodeCodex

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

Good fit Use it to set up automated tests, builds, security checks, infrastructure configuration, deployments, and temporary preview environments.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vanja-emichi/a0_agent_skills/ci-cd-and-automation
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 vanja-emichi/a0_agent_skills --skill ci-cd-and-automation
Clone the repo
git clone --depth 1 https://github.com/vanja-emichi/a0_agent_skills

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 ci-cd-and-automation

README.md
[![agentmods](https://agentmods.dev/badge/skills/vanja-emichi/a0_agent_skills/ci-cd-and-automation/github.svg)](https://agentmods.dev/skills/vanja-emichi/a0_agent_skills/ci-cd-and-automation)
Your own site
<a href="https://agentmods.dev/skills/vanja-emichi/a0_agent_skills/ci-cd-and-automation"><img src="https://agentmods.dev/badge/skills/vanja-emichi/a0_agent_skills/ci-cd-and-automation/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 ci-cd-and-automation

Your own site · 80×15
<a href="https://agentmods.dev/skills/vanja-emichi/a0_agent_skills/ci-cd-and-automation"><img src="https://agentmods.dev/badge/skills/vanja-emichi/a0_agent_skills/ci-cd-and-automation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,692 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 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.00041 $0.02692
Opus 5 $0.00020 $0.01346
Sonnet 5 $0.00008 $0.00538
Haiku 4.5 $0.00004 $0.00269

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

Security

Grade B, and why

ci-cd-and-automation scanned grade B with 2 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 11d 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

# Don't run as root

Makes network callslowCapability

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

CMD wget -qO- http://localhost:3000/health || exit 1
skills/ci-cd-and-automation/SKILL.md · 408 lines

How it starts

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

CI/CD and Automation

Overview

Automate the path from code to production. CI/CD pipelines give every change a consistent, repeatable journey through testing, validation, and deployment. The goal is a pipeline where passing tests is sufficient confidence to deploy — not a process that needs to be worked around.

When to Use

  • Setting up a new project's CI/CD pipeline
  • Adding automated testing to an existing pipeline
  • Configuring deployment automation
  • Setting up infrastructure as code
  • Adding security scanning or quality gates
  • Implementing preview environments for PRs

Pipeline Architecture

The Four Stages

┌─────────┐    ┌─────────┐    ┌──────────┐    ┌─────────────┐
│   CI    │    │  Test   │    │ Security │    │   Deploy    │
│         │───▶│         │───▶│          │───▶│             │
│ Build   │    │ Unit    │    │ Audit    │    │ Staging     │
│ Lint    │    │ Integr. │    │ SAST     │    │ Production  │
│ Types   │    │ E2E     │    │ Secrets  │    │ (gated)     │
└─────────┘    └─────────┘    └──────────┘    └─────────────┘
     ↑               ↑               ↑               ↑
  Every push    Every push    Every push     Main only

Stage Principles

  • Fast feedback first: Lint and type-check before running slow tests
  • Fail fast: Stop the pipeline at the first failure
  • Parallel where safe: Run independent jobs concurrently
  • Deterministic: Same commit always produces same result
  • Cached: Restore dependencies from cache before installing

GitHub Actions Examples

Basic CI Pipeline

# .github/workflows/ci.yml
name: CI

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

jobs:
  quality:
    name: Quality Checks
    runs-on: ubuntu-latest

    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Setup Node.js
        uses: actions/setup-node@v4
        with:
          node-version: '20'
          cache: 'npm'

      - name: Install dependencies
        run: npm ci

      - name: Type check
        run: npm run type-check

      - name: Lint
        run: npm run lint

      - name: Unit tests
        run: npm run test:unit -- --coverage

      - name: Upload coverage
        uses: codecov/codecov-action@v4
        with:
          token: ${{ secrets.CODECOV_TOKEN }}

  build:
    name: Build
    runs-on: ubuntu-latest
    needs: quality

    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
        with:
          node-version: '20'
          cache: 'npm'
      - run: npm ci
      - run: npm run build

      - name: Upload build artifact
        uses: actions/upload-artifact@v4
        with:
          name: build
          path: dist/
          retention-days: 7

Read the full file on GitHub · 408 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. 11d ago First seen · 408 lines · 41 tokens per session scan B a95fbed9234c

Subscribe to this mod's changes

ci-cd-and-automation is a skill published in the GitHub repository vanja-emichi/a0_agent_skills (5 stars, last pushed 1mo ago), licensed MIT. It adds 41 tokens to every session and 2,692 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.