ci-cd-awareness

ci-cd-awareness is a skill for Claude Code from Vimalk0703/shipworthy. It costs 27 tokens per session (442 once invoked), scanned A, original, MIT.

A guide to CI/CD pipelines, the automated checks and deployment steps that take code from a commit to a running environment. It covers testing order, environment settings, secrets, rollbacks, and gradual releases.

In plain words
What is it for?
Use it to design pipelines that lint, type-check, test, build, deploy to staging, run smoke tests, and release with rollback or feature-flag support.
Why use it?
It helps catch problems before deployment and reduces the risk of exposing secrets or releasing a change that cannot be safely undone.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the shipworthy plugin — 66 skills, 7 commands, 3 hooks shipped together

Good fit Use it to design pipelines that lint, type-check, test, build, deploy to staging, run smoke tests, and release with rollback or feature-flag support.

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

Made for: Claude Code.

Or install shipworthy, the plugin that ships this one along with the rest of its 66 skills, 7 commands, 3 hooks.

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-awareness

README.md
[![agentmods](https://agentmods.dev/badge/skills/vimalk0703/shipworthy/ci-cd-awareness.svg)](https://agentmods.dev/skills/vimalk0703/shipworthy/ci-cd-awareness)
Your own site
<a href="https://agentmods.dev/skills/vimalk0703/shipworthy/ci-cd-awareness"><img src="https://agentmods.dev/badge/skills/vimalk0703/shipworthy/ci-cd-awareness.svg" alt="Measured on agentmods" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 442 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 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.00027 $0.00442
Opus 5 $0.00014 $0.00221
Sonnet 5 $0.00005 $0.00088
Haiku 4.5 $0.00003 $0.00044

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

Security

Grade A, and why

ci-cd-awareness 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 8d 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.

skills/operations/ci-cd-awareness/SKILL.md · 65 lines

What it actually says

CI/CD Awareness

Pipeline Structure

A well-designed pipeline follows this order:

1. Lint (fastest feedback)

  • Run linters and formatters
  • Fail fast on style violations
  • Takes seconds, catches obvious issues

2. Type Check

  • tsc --noEmit or equivalent
  • Catches type errors before tests run

3. Test

  • Unit tests first (fast)
  • Integration tests second (slower)
  • E2E tests last (slowest)
  • Fail the pipeline if any test fails

4. Build

  • Compile/bundle the application
  • Verify the artifact is valid

5. Deploy

  • Deploy to staging first
  • Run smoke tests against staging
  • Deploy to production with rollback capability

Environment Configuration

  • Never hardcode environment-specific values
  • Use environment variables for all configuration
  • Maintain separate configs: .env.development, .env.staging, .env.production
  • Validate all environment variables at startup (fail fast if missing)

Secrets in CI

  • Use the CI platform's secret store (GitHub Secrets, etc.)
  • Never echo secrets in logs
  • Rotate secrets regularly
  • Use minimal permissions (principle of least privilege)

Deployment Strategies

  • Blue/green: run two environments, switch traffic
  • Rolling: gradually replace old instances
  • Canary: route small % of traffic to new version first
  • Feature flags: deploy code behind flags, enable gradually

Rollback Plan

Every deployment must have a rollback strategy:

  1. How to detect a bad deployment (health checks, error rates)
  2. How to revert (previous container image, git revert, feature flag off)
  3. How long rollback takes
  4. Who is responsible for rollback decisions
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. 8d ago First seen · 65 lines · 27 tokens per session scan A b85fca72173d

Subscribe to this mod's changes

ci-cd-awareness is a skill published in the GitHub repository Vimalk0703/shipworthy (7 stars, last pushed 5mo ago), licensed MIT. It adds 27 tokens to every session and 442 once invoked, about $0.0001 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-31.