ci-orchestrator

ci-orchestrator is a skill for Claude Code, Codex from pilinux/gorest. It costs 32 tokens per session (411 once invoked), scanned A, original, MIT.

A local checker that runs a repository's formatting, code-quality, security, dependency, and test checks in sequence. It is designed to reproduce the checks commonly run by continuous integration, the automated system that validates code changes.

In plain words
What is it for?
Use it to validate a pull request locally, run Go formatting and analysis checks, test across specified platforms, and receive suggested next steps for failures.
Why use it?
It gives one ordered report before you submit a change, so failures are easier to locate and fix. It reports problems but does not modify the code automatically.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it to validate a pull request locally, run Go formatting and analysis checks, test across specified platforms, and receive suggested next steps for failures.

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

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/pilinux/gorest/ci-orchestrator/github.svg)](https://agentmods.dev/skills/pilinux/gorest/ci-orchestrator)
Your own site
<a href="https://agentmods.dev/skills/pilinux/gorest/ci-orchestrator"><img src="https://agentmods.dev/badge/skills/pilinux/gorest/ci-orchestrator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ci-orchestrator

Your own site · 80×15
<a href="https://agentmods.dev/skills/pilinux/gorest/ci-orchestrator"><img src="https://agentmods.dev/badge/skills/pilinux/gorest/ci-orchestrator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 411 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00032 $0.00411
Opus 5 $0.00016 $0.00205
Sonnet 5 $0.00006 $0.00082
Haiku 4.5 $0.00003 $0.00041

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

Security

Grade A, and why

ci-orchestrator 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 10d 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.

.agents/skills/ci-orchestrator/SKILL.md · 47 lines

What it actually says

CI Orchestrator

When to Use

  • The user wants a single command-style check that reproduces CI checks locally or validates a PR prior to submission.

Responsibilities

  • Execute repository-standard steps in order and summarize failures with actionable fixes.
  • Provide per-step outputs (pass/fail), first error lines, and suggested remediations.

Pipeline Steps

  1. Format: go fmt ./...
  2. Lint: golangci-lint run --timeout 5m --verbose ./... (CI uses v2.12.2)
  3. Lint (revive): revive ./...
  4. Vet: go vet -v ./...
  5. Vet (cross-platform): GOOS=linux GOARCH=amd64 go vet -v ./... and GOOS=darwin GOARCH=arm64 go vet -v ./... (CI runs all six OS/arch combos)
  6. Security: gosec ./...
  7. Vulnerability: govulncheck ./...
  8. Tests: source setTestEnv.sh && go test -v -cover ./...

Rules

  • Do not change code automatically; return clear next steps and small fix suggestions.
  • Respect the repo CI order as configured in .github/workflows/.
  • Report per-step status before moving to the next step.

Output

  • Step-by-step status table (step, pass/fail, key error lines).
  • Short remediation for each failing step.
  • Recommended next commands to re-run after fixes.
  • linter-runner, static-analysis, test-runner, code-formatter
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. 10d ago First seen · 47 lines · 32 tokens per session scan A 04048c029f02

Subscribe to this mod's changes

ci-orchestrator is a skill published in the GitHub repository pilinux/gorest (504 stars, last pushed today), licensed MIT. It adds 32 tokens to every session and 411 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-08-30.

Related

Other skills, from other repositories

code-guidelines-go

Go 1.24–1.27 coding guidelines for the dimetron/pi-go AI agent runtime. Use this skill whenever writing, reviewing, or refactoring ANY Go code in pi-go. This covers idiomatic style, error handling, concurrency, project layout, testing (table-driven, fuzz, benchmarks, synctest), new stdlib usage, golangci-lint v2…

dimetron/pi-go · 124 tokens

vhs-e2e-gif

Record a test run, a TUI session, or any terminal command as a GIF with VHS and attach it to a GitHub PR as a release-hosted asset, never a repo commit. Use when asked to record an e2e run, demo a fix on a PR, attach a GIF or screen recording to a pull request, show a test passing visually, or produce a terminal…

dimetron/pi-go · 106 tokens

code-review-pi

Review code for quality, run linters, check test coverage, fix issues, and enforce gates. Save the final report to ./specs/issues/003-code-review-pi/PROMPT.md. Use before committing changes.

dimetron/pi-go · 50 tokens

voiden

Create and edit Voiden .void files for API testing. Covers the .void file format and all enabled extension block types.

VoidenHQ/voiden · 28 tokens

skill-creator

Create, edit, improve, or audit AgentSkills. Use when creating a new skill from scratch or when asked to improve, review, audit, tidy up, or clean up an existing skill or SKILL.md file. Also use when editing or restructuring a skill directory.

agenvoy/Agenvoy · 58 tokens

go-127

What changed in Go 1.27 (released August 2026) and how it changes the way Go is written in pi-go. Use this skill when writing or reviewing Go that could use a 1.27 feature, when bumping the go directive in go.mod, when a build or test behaves differently after a toolchain upgrade, or when code-guidelines-go points…

dimetron/pi-go · 177 tokens