Agent skill · Workflow & Productivity

ci-pipeline-patterns

GitHub Actions workflow templates, matrix builds, caching, and monorepo CI strategies

vibeevalgithub.com/vibeevalGitHub ↗
claude-codeMIT
Install
npx skills add vibeeval/vibecosystem --skill ci-pipeline-patterns --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/ci-pipeline-patterns/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 521
Language: C#

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# CI Pipeline Patterns ## GitHub Actions Workflow Template ```yaml name: CI on: push: branches: [main] pull_request: branches: [main] concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: lint-and-type: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: { node-version: 20, cache: npm } - run: npm ci - run: npm run lint - run: npm run type-check test: runs-on: ubuntu-latest strategy: matrix: shard: [1, 2, 3, 4] steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: { node-version: 20, cache: npm } - run: npm ci - run: npm test -- --shard=${{ matrix.shard }}/4 build: needs: [lint-and-type, test] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: { node-version: 20, cache: npm } - run: npm ci - run: npm run build - uses: actions/upload-artifact@v4 with: { name: build, path: dist/ } ``` ## Caching Strategies ```yaml # npm cache - uses: actions/cache@v4 with: path: ~/.npm key: npm-${{ hashFiles('**/package-lock.json') }} # Docker layer cache - uses: docker/build-push-action@v5 with: cache-from: type=gha cache-to: type=gha,mode=max # Turborepo remote

What's inside
Steps it walks through
  1. GitHub Actions Workflow Template
  2. Caching Strategies
  3. Monorepo CI (Affected Only)
  4. Pipeline Security
  5. Checklist
  6. Anti-Patterns
More from vibecosystem
All skills →
About this skill
What does the ci-pipeline-patterns skill do?

GitHub Actions workflow templates, matrix builds, caching, and monorepo CI strategies

How do I install it?

Run `npx skills add vibeeval/vibecosystem --skill ci-pipeline-patterns --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From vibeeval/vibecosystem, a repository with 521 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going