ci-orchestrator

Installation
SKILL.md

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.8.0)
  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 ./...
Related skills
Installs
6
Repository
pilinux/gorest
GitHub Stars
494
First Seen
Mar 2, 2026