creo-pipeline

creo-pipeline is a skill for Claude Code from oyusypenko/creo. It costs 66 tokens per session (1,348 once invoked), scanned A, original, MIT.

A GitHub Actions specialist for CI/CD workflows. GitHub Actions runs automated jobs such as tests, builds, and deployments when changes are pushed or submitted for review.

In plain words
What is it for?
Use it to create, debug, or optimize GitHub Actions workflows, including matrix builds, reusable workflows, Docker builds, and deployment setup.
Why use it?
It helps diagnose failed workflow jobs and reduce slow or wasteful builds. It also provides a structured way to manage caching, Docker builds, environments, secrets, and job dependencies.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is uses: ./.github/workflows/reusable-test.yml.

Part of the creo plugin — 19 skills, 17 agents shipped together

Good fit Use it to create, debug, or optimize GitHub Actions workflows, including matrix builds, reusable workflows, Docker builds, and deployment setup.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/oyusypenko/creo
agentmods
npx agentmods add skills/oyusypenko/creo/creo-pipeline

Made for: Claude Code.

Or install creo, the plugin that ships this one along with the rest of its 19 skills, 17 agents.

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 creo-pipeline

README.md
[![agentmods](https://agentmods.dev/badge/skills/oyusypenko/creo/creo-pipeline/github.svg)](https://agentmods.dev/skills/oyusypenko/creo/creo-pipeline)
Your own site
<a href="https://agentmods.dev/skills/oyusypenko/creo/creo-pipeline"><img src="https://agentmods.dev/badge/skills/oyusypenko/creo/creo-pipeline/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 creo-pipeline

Your own site · 80×15
<a href="https://agentmods.dev/skills/oyusypenko/creo/creo-pipeline"><img src="https://agentmods.dev/badge/skills/oyusypenko/creo/creo-pipeline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,348 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.
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.00066 $0.01348
Opus 5 $0.00033 $0.00674
Sonnet 5 $0.00013 $0.00270
Haiku 4.5 $0.00007 $0.00135

Measured 12d ago against content hash 300baadef4ec, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

creo-pipeline 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 12d 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.

skills/creo-pipeline/SKILL.md · 222 lines

How it starts

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

CI/CD Pipeline Specialist

GitHub Actions expert. Writes, debugs, and optimizes CI/CD pipelines. Deep knowledge of workflow YAML: job dependencies, matrix builds, caching strategies, Docker layer optimization, reusable workflows, and environment management.

Commands

Command Description
/creo pipeline create Create a new CI/CD pipeline
/creo pipeline debug Debug a failing pipeline
/creo pipeline optimize Optimize pipeline speed and cost

Core Instructions

Configuration

  1. Check for project-specific config at .claude/project-config.md
  2. Look for existing workflows in .github/workflows/
  3. Load project extension if it exists at .claude/skills/creo-pipeline/creo-pipeline-{project_id}.md. This file contains project-specific workflow structure, services, deployment targets, ports, E2E setup, and Railway/Cloudflare/Vercel constraints. {project_id} comes from project-config.md. Always load it before doing work.

Core Competencies

1. Workflow Structure
name: CI/CD Pipeline
on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

jobs:
  lint:
    runs-on: ubuntu-latest
  test:
    needs: [lint]
  deploy:
    needs: [lint, test]
    if: github.ref == 'refs/heads/main'
2. Caching Strategies

Node.js / pnpm:

- uses: actions/cache@v4
  with:
    path: ~/.pnpm-store
    key: pnpm-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}

Docker layers:

- uses: docker/setup-buildx-action@v3
- uses: actions/cache@v4
  with:
    path: /tmp/.buildx-cache
    key: buildx-${{ runner.os }}-${{ github.sha }}
3. Environment and Secrets
jobs:
  deploy:
    environment: production
    env:
      NODE_ENV: production
      DATABASE_URL: ${{ secrets.DATABASE_URL }}
gh secret set DATABASE_URL --body "postgres://..."
gh secret list
4. Matrix Builds
strategy:
  matrix:
    node: [18, 20, 22]
    os: [ubuntu-latest, windows-latest]
  fail-fast: false

Read the full file on GitHub · 222 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. 12d ago First seen · 222 lines · 66 tokens per session scan A 300baadef4ec

Subscribe to this mod's changes

creo-pipeline is a skill published in the GitHub repository oyusypenko/creo (4 stars, last pushed 3d ago), licensed MIT. It adds 66 tokens to every session and 1,348 once invoked, about $0.0003 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-31.