ci

ci is a skill for Claude Code from softspark/ai-toolkit. It costs 39 tokens per session (1,087 once invoked), scanned A, original, Apache-2.0.

A command for detecting, creating, and troubleshooting continuous integration and delivery configuration. It identifies common project types and checks whether pipelines include stages such as linting, testing, building, and deployment.

In plain words
What is it for?
Use it to set up or debug GitHub Actions and GitLab CI workflows for projects such as Node.js, Python, Flutter, Go, Rust, PHP, and Docker.
Why use it?
It helps find missing or broken pipeline configuration without manually inspecting every project file.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: agent in frontmatter.

Part of the ai-toolkit plugin — 113 skills, 44 agents, 14 hooks shipped together

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.

agentmods
npx agentmods add skills/softspark/ai-toolkit/ci
Any agent
npx skills add softspark/ai-toolkit --skill ci
Clone the repo
git clone --depth 1 https://github.com/softspark/ai-toolkit

Made for: Claude Code.

Or install ai-toolkit, the plugin that ships this one along with the rest of its 113 skills, 44 agents, 14 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

README.md
[![agentmods](https://agentmods.dev/badge/skills/softspark/ai-toolkit/ci.svg)](https://agentmods.dev/skills/softspark/ai-toolkit/ci)
Your own site
<a href="https://agentmods.dev/skills/softspark/ai-toolkit/ci"><img src="https://agentmods.dev/badge/skills/softspark/ai-toolkit/ci.svg" alt="Measured on agentmods" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,087 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00039 $0.01087
Opus 5 $0.00019 $0.00544
Sonnet 5 $0.00008 $0.00217
Haiku 4.5 $0.00004 $0.00109

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

Security

Grade A, and why

ci 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 2d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/ci-detect.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.

app/skills/ci/SKILL.md · 100 lines

How it starts

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

/ci - CI/CD Pipeline Management

$ARGUMENTS

What This Command Does

Generate, update, or troubleshoot CI/CD pipeline configuration based on project type.

Project context

  • CI config: !cat .github/workflows/*.yml 2>/dev/null || cat .gitlab-ci.yml 2>/dev/null || echo "no-ci"

CI Detection Script

Detect CI platform and analyze configuration:

python3 ${CLAUDE_SKILL_DIR}/scripts/ci-detect.py [directory]

Returns JSON with:

  • platform - detected CI platform (github-actions, gitlab-ci, jenkins, bitbucket, circleci)
  • config_files[] - CI config file paths
  • project_type - detected project type (python, node, flutter, go, rust, php, docker)
  • jobs_found[] - job/stage names extracted from config
  • stages_detected[] - best-practice stages found (lint, test, build, deploy)
  • missing_stages[] - recommended stages not yet configured
  • suggested_template - pointer to ci-cd-patterns skill for templates

Auto-Detection

File Found Project Type Pipeline
package.json Node.js/TypeScript npm ci, lint, test, build
pyproject.toml / setup.py Python pip install, ruff, mypy, pytest
pubspec.yaml Flutter/Dart dart analyze, flutter test, build
composer.json PHP composer install, phpstan, phpunit
go.mod Go go vet, go test, go build
Cargo.toml Rust cargo clippy, cargo test, cargo build
Dockerfile Docker Build and push image

Supported Platforms

  • GitHub Actions (default): .github/workflows/ci.yml
  • GitLab CI: .gitlab-ci.yml

Pipeline Stages

  1. Lint - Static analysis, formatting checks
  2. Test - Unit tests, integration tests with coverage
  3. Build - Compile, bundle, Docker image
  4. Deploy (optional) - Deploy to staging/production

Usage Examples

/ci                          # Generate CI config for detected project type
/ci github-actions           # Explicitly use GitHub Actions
/ci add deploy staging       # Add deployment stage for staging
/ci fix                      # Troubleshoot failing pipeline
/ci add matrix node 18,20,22 # Add matrix testing

Read the full file on GitHub · 100 lines

Files

What ships with it

3 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. 2d ago First seen · 100 lines · 39 tokens per session scan A 45d7cbc6bfa0

Subscribe to this mod's changes

ci is a skill published in the GitHub repository softspark/ai-toolkit (170 stars, last pushed yesterday), licensed Apache-2.0. It adds 39 tokens to every session and 1,087 once invoked, about $0.0002 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-09-03.

Related

Other skills, from other repositories

go-ci-workflow

Use when creating or refactoring GitHub Actions CI workflows for Go repositories. Covers repository-shape detection, Make-driven delegation with formal fallbacks, Go setup, caching, tool pinning, permissions, reusable workflows, and quality gate design.

johnqtcg/awesome-skills · 53 tokens

azure-devops-pipeline-advisor

Conception de pipelines CI/CD avec Azure DevOps (YAML pipelines, stages, templates, déploiement multi-environnement). À utiliser quand l'utilisateur travaille avec Azure DevOps, configure des pipelines YAML ou gère des releases. Se déclenche aussi avec "azure devops", "pipeline YAML", "azure pipeline", "CI/CD azure"…

khalilbenaz/claude-skills-collection · 100 tokens

gradle-build-expert

Expert en configuration et optimisation Gradle pour Android Kotlin. Gère build.gradle, Kotlin DSL, dépendances, flavours, variants, performance, CI/CD et troubleshooting avancé. Se déclenche avec "gradle", "build error", "dépendance", "build config". Also triggers on "Gradle build", "Kotlin DSL build script", "speed…

khalilbenaz/claude-skills-collection · 83 tokens

cicd-pipeline-builder

Conception de pipelines CI/CD pour tout type de plateforme. Se déclenche avec "CI/CD", "pipeline", "GitHub Actions", "Azure DevOps", "GitLab CI", "déploiement automatique", "continuous integration", "continuous deployment". Also triggers on "set up CI/CD", "build pipeline", "automate deployment".

khalilbenaz/claude-skills-collection · 77 tokens

cron-tuner

Selbstjustierende Takt-Regelschleife für wiederkehrende Agenten-Scans. Nutzen, wenn ein geplanter Scan sein Intervall bei Aktivität schärfen und bei Stille abkühlen soll, ohne Operator-Eingriff.

ellmos-ai/skills · 56 tokens

repo-scaffold

Initialize GitHub repositories with standard files and configuration. Generates LICENSE, CONTRIBUTING.md, SECURITY.md, issue/PR templates, CI config, and .gitignore. Detects project type and adapts templates accordingly.

thatrebeccarae/claude-marketing · 47 tokens