ci-pipeline-patterns
GitHub Actions workflow templates, matrix builds, caching, and monorepo CI strategies
npx skills add vibeeval/vibecosystem --skill ci-pipeline-patterns --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- GitHub Actions Workflow Template
- Caching Strategies
- Monorepo CI (Affected Only)
- Pipeline Security
- Checklist
- Anti-Patterns
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.
