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.
npx agentmods add skills/softspark/ai-toolkit/cinpx skills add softspark/ai-toolkit --skill cigit clone --depth 1 https://github.com/softspark/ai-toolkitWrote 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.
[](https://agentmods.dev/skills/softspark/ai-toolkit/ci)<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>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.
| Model | Per session | Once 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 |
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.
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.
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 pathsproject_type- detected project type (python, node, flutter, go, rust, php, docker)jobs_found[]- job/stage names extracted from configstages_detected[]- best-practice stages found (lint, test, build, deploy)missing_stages[]- recommended stages not yet configuredsuggested_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
- Lint - Static analysis, formatting checks
- Test - Unit tests, integration tests with coverage
- Build - Compile, bundle, Docker image
- 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
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.
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.
- 2d ago First seen · 100 lines · 39 tokens per session scan A 45d7cbc6bfa0
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.
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.
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"…
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…
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".
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.
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.