Skip to content
Development
Skill

/ci

Generate a CI/CD pipeline — build, test, security scan, deploy. Supports GitHub Actions, GitLab CI, Bitbucket Pipelines.

From plugin
agentic-awesome-kits
932 skills
Install
$ npx -y skills add KhaiTrang1995/agentic-awesome-kits --skill ci --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/ci

Context preview

The summary Claude sees to decide when to auto-load this skill.

Generate a CI/CD pipeline — build, test, security scan, deploy. Supports GitHub Actions, GitLab CI, Bitbucket Pipelines.

SKILL.md

ci.SKILL.md
name: ci
description: Generate a CI/CD pipeline — build, test, security scan, deploy. Supports GitHub Actions, GitLab CI, Bitbucket Pipelines.
user-invocable: true
argument-hint: "<stack> [--platform github|gitlab|bitbucket] [--with-scan] [--with-deploy]"

/ci — Generate a CI/CD Pipeline

Input examples

/ci .NET 10 --platform bitbucket --with-scan
/ci Angular + .NET fullstack --platform github --with-deploy
/ci Python FastAPI --platform gitlab --with-scan --with-deploy

Pipeline stages

1. Build

  • Restore dependencies
  • Compile/build
  • Build the Docker image (if containerized)

2. Test

  • Unit tests + coverage report
  • Lint (dotnet format / eslint / ruff)

3. Security Scan (if `--with-scan`)

  • Dependency audit (dotnet list --vulnerable / npm audit / pip audit)
  • Source code security scan
  • Container image scan (Trivy)

4. Deploy (if `--with-deploy`)

  • Push image to registry
  • Deploy to staging (automatic)
  • Deploy to production (manual approval)

Output

.github/workflows/ci.yml          ← (GitHub Actions)
bitbucket-pipelines.yml            ← (Bitbucket)
.gitlab-ci.yml                     ← (GitLab)

Rules

  • Cache dependencies between runs
  • Fail fast: a failed test skips deploy
  • Secrets via CI/CD variables, NEVER hardcoded
  • Production deploy requires manual approval

References

  • @.claude/rules/docker-conventions.md
Ships withagentic-awesome-kits

Reusable AI Skill Kits for coding agents (Claude Code and any other subagent/slash-command-compatible tool).

Get the whole plugin
Stats
9
Stars
4
Forks
Maintained
Maintenance
Python
Language
1mo ago
Last commit
2mo ago
Created

Repo: KhaiTrang1995/agentic-awesome-kits

Other skills on agentic-awesome-kits.