set-up-ci

set-up-ci is a skill for Claude Code from cboone/agent-harness-plugins. It costs 158 tokens per session (2,901 once invoked), scanned A, original, MIT.

A GitHub Actions setup tool that detects a repository's programming languages and creates automated jobs for tests, linting, formatting, and vulnerability checks. It also adds matching Makefile commands for running these checks locally.

In plain words
What is it for?
Use it to add a standard CI workflow to Go, JavaScript or TypeScript, Python, Rust, Zig, Ruby, or shell projects.
Why use it?
It removes the manual effort of creating and connecting continuous integration checks. CI means automated checks that run when code changes, helping catch problems before they are merged.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions CLAUDE.md; mentions AGENTS.md.

Part of the set-up-ci plugin — 1 skill shipped together

Good fit Use it to add a standard CI workflow to Go, JavaScript or TypeScript, Python, Rust, Zig, Ruby, or shell projects.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cboone/agent-harness-plugins/set-up-ci
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 cboone/agent-harness-plugins --skill set-up-ci
Clone the repo
git clone --depth 1 https://github.com/cboone/agent-harness-plugins

Made for: Claude Code.

Or install set-up-ci, the plugin that ships this one along with the rest of its 1 skill.

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 set-up-ci

README.md
[![agentmods](https://agentmods.dev/badge/skills/cboone/agent-harness-plugins/set-up-ci.svg)](https://agentmods.dev/skills/cboone/agent-harness-plugins/set-up-ci)
Your own site
<a href="https://agentmods.dev/skills/cboone/agent-harness-plugins/set-up-ci"><img src="https://agentmods.dev/badge/skills/cboone/agent-harness-plugins/set-up-ci.svg" alt="Measured on agentmods" height="20"></a>
Per session 158 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,901 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00158 $0.02901
Opus 5 $0.00079 $0.01451
Sonnet 5 $0.00032 $0.00580
Haiku 4.5 $0.00016 $0.00290

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

Security

Grade A, and why

set-up-ci scanned grade A with 1 finding 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 4d 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.

Makes network callslowCapability

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

- Node.js LTS: `curl -s https://nodejs.org/dist/index.json | jq -r 'first(.[] | select(.lts != false)) | .version' | sed 's/^v//'`
plugins/set-up-ci/skills/set-up-ci/SKILL.md · 194 lines

How it starts

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

Set-Up CI

Detect the project's language(s), create a GitHub Actions CI workflow with appropriate parallel jobs (test, lint, format, vulnerability check), and create matching Makefile targets for local development.

Workflow

1. Detect Project Type

If the user specified a language in their request (e.g., go-cli, go-library, javascript, python, rust, ruby, shell, zig, zsh), use it directly instead of scanning for markers. Still perform sub-detection steps as needed (e.g., JS package manager detection for javascript, or verifying main.go/cmd/ for go-cli vs go-library).

Scan for language and file-type markers using Glob. Exclude node_modules/, .yarn/, vendor/, and other dependency directories from all searches to avoid false positives from vendored code.

Marker(s) Language
go.mod Go
package.json + source files (*.js, *.ts, *.jsx, *.tsx, *.mjs, *.mts, excluding node_modules/) JavaScript/TypeScript
pyproject.toml, setup.py, requirements.txt Python
Cargo.toml Rust
build.zig, build.zig.zon Zig
Gemfile, *.gemspec Ruby
*.sh, bin/*, scripts/* Shell
*.zsh, #!/usr/bin/env zsh shebangs, .zshrc, .zshenv Zsh

Read the full file on GitHub · 194 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. 4d ago First seen · 194 lines · 158 tokens per session scan A 23888951a48f

Subscribe to this mod's changes

set-up-ci is a skill published in the GitHub repository cboone/agent-harness-plugins (2 stars, last pushed 1mo ago), licensed MIT. It adds 158 tokens to every session and 2,901 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

testing-cicd-init

Installs Vitest testing infrastructure and GitHub Actions CI/CD for TypeScript projects (Next.js, NestJS, React). Configures 80% coverage thresholds, test setup files, and Bun-based CI workflows. Use when adding tests to a new project, migrating from Jest to Vitest, or setting up GitHub Actions CI/CD for the first…

shipshitdev/skills · 78 tokens

Verification & Quality Assurance

Comprehensive truth scoring, code quality verification, and automatic rollback system with 0.95 accuracy threshold for ensuring high-quality agent outputs and codebase reliability.

ruvnet/ruflo · 36 tokens

ci

Configure Ginkgo for continuous integration — the recommended CLI flag set and the rationale for each flag (-r -p --randomize-all --randomize-suites --fail-on-pending --fail-on-empty --keep-going --cover --race --trace --json-report --timeout --poll-progress-after/-interval), invoking via go run to pin the CLI to…

onsi/ginkgo · 132 tokens

playwright-ci

Production-ready CI/CD configurations for Playwright — GitHub Actions, GitLab CI, CircleCI, Azure DevOps, Jenkins, Docker, parallel sharding, reporting, code coverage, and global setup/teardown.

zebbern/claude-code-guide · 48 tokens

ci-maintenance-workflow

CI and GitHub Actions maintenance workflows — fix a failing test from a CI URL, fix a failing smoke test, add @pytest.mark.slow markers to slow tests, or review a PR against agent-checkable standards. Use when user asks to fix a failing test, fix a smoke test, mark slow tests, or review a PR. Trigger when the user…

UKGovernmentBEIS/inspect_evals · 120 tokens

terraform-skill

Terraform infrastructure as code best practices.

Agent-Threat-Rule/agent-threat-rules · 10 tokens