optimize-pipeline

optimize-pipeline is a skill for Claude Code from harness/harness-ai. It costs 146 tokens per session (1,385 once invoked), scanned A, a copy of optimize-pipeline, Apache-2.0.

A guide for making Harness CI/CD pipelines faster, where CI/CD means automatically building, testing, and delivering software. It covers parallel tests, caching, bottleneck analysis, cache hit rates, and monorepo pipelines; a monorepo stores multiple projects or packages in one repository.

In plain words
What is it for?
Use it to split tests across runners, cache dependencies or results, analyze stage timings, improve cache usage, or build only the changed parts of a monorepo.
Why use it?
It helps find slow pipeline stages and reduce repeated work during builds and tests.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the harness plugin — 55 skills, 1 MCP server shipped together

Good fit Use it to split tests across runners, cache dependencies or results, analyze stage timings, improve cache usage, or build only the changed parts of a monorepo.

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

Made for: Claude Code.

Or install harness, the plugin that ships this one along with the rest of its 55 skills, 1 MCP server.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/harness/harness-ai/optimize-pipeline.svg)](https://agentmods.dev/skills/harness/harness-ai/optimize-pipeline)
Your own site
<a href="https://agentmods.dev/skills/harness/harness-ai/optimize-pipeline"><img src="https://agentmods.dev/badge/skills/harness/harness-ai/optimize-pipeline.svg" alt="Measured on agentmods" height="20"></a>
Per session 146 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,385 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 100% copy Near-identical to another mod 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.00146 $0.01385
Opus 5 $0.00073 $0.00692
Sonnet 5 $0.00029 $0.00277
Haiku 4.5 $0.00015 $0.00138

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

Security

Grade A, and why

optimize-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 8d 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.

Origin

This is a copy

100% identical to optimize-pipeline — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

plugins/claude/skills/optimize-pipeline/SKILL.md · 170 lines

How it starts

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

Optimize Pipeline

Analyze and optimize Harness CI/CD pipeline performance through parallel testing, caching, bottleneck analysis, and monorepo strategies.

Instructions

Step 1: Establish Scope

Confirm the service, pipeline, and current performance baseline.

Call MCP tool: harness_list
Parameters:
  resource_type: "pipeline"
  org_id: "<organization>"
  project_id: "<project>"

Get recent execution timing data:

Call MCP tool: harness_list
Parameters:
  resource_type: "execution"
  org_id: "<organization>"
  project_id: "<project>"
  pipeline_id: "<pipeline_identifier>"

Step 2: Identify the Optimization Task

Determine which optimization the user needs:

  1. Parallel Testing with Test Intelligence -- Split tests across runners and skip unchanged tests
  2. Caching Strategy -- Multi-layer dependency, build output, and test result caching
  3. Pipeline Bottleneck Analysis -- Stage-level timing breakdown with recommendations
  4. Cache Hit Rate Improvement -- Diagnose and fix low cache hit rates
  5. Monorepo CI Pipeline -- Selective builds triggered by changed paths

Step 3: Configure Parallel Testing with Test Intelligence

Gather from the user:

  • Test framework (JUnit, pytest, Jest, Go test, etc.)
  • Total test count and current runtime
  • Target runtime

Design the parallel test strategy:

  • Split tests across N parallel runners using Harness Test Intelligence
  • Use TI to identify and skip unchanged tests based on code changes
  • Configure test splitting method: by class, by file, or by timing data
  • Set up test result aggregation across runners
  • Track TI savings over time (tests skipped vs. total)

Configuration:

  • Enable Test Intelligence in the pipeline stage
  • Set parallelism level based on test count and runner capacity
  • Configure test report collection from all parallel runners
  • Set up failure thresholds (e.g., fail the stage if any runner fails)

Step 4: Design Caching Strategy

Gather from the user:

  • Build tool (Maven, Gradle, npm, yarn, pip, Go modules)
  • Current build time breakdown (dependency download, compile, test)
  • Cache key source (lockfile hash, manifest hash)

Read the full file on GitHub · 170 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. 8d ago First seen · 170 lines · 146 tokens per session scan A db6d25d9c2a9

Subscribe to this mod's changes

optimize-pipeline is a skill published in the GitHub repository harness/harness-ai (19 stars, last pushed 17d ago), licensed Apache-2.0. It adds 146 tokens to every session and 1,385 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to optimize-pipeline, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

migrate-vstest-to-mtp

Use this skill before answering, planning, or editing whenever .NET tests or CI are switching from VSTest to Microsoft.Testing.Platform (MTP), or an MTP migration behaves differently. Triggers include "switch from VSTest"; MSTest/NUnit/xUnit MTP enablement; OutputType=Exe only for test projects in…

dotnet/skills · 191 tokens

ci

Configure Ginkgo for continuous integration — the recommended CLI flag set and the rationale for each flag (-r -p --randomize-all --randomize-suites --fail-on-pending --fail-on-empty --keep-going --cover --race --trace --json-report --timeout --poll-progress-after/-interval), invoking via go run to pin the CLI to…

onsi/ginkgo · 132 tokens

playwright-ci

Production-ready CI/CD configurations for Playwright — GitHub Actions, GitLab CI, CircleCI, Azure DevOps, Jenkins, Docker, parallel sharding, reporting, code coverage, and global setup/teardown.

zebbern/claude-code-guide · 48 tokens

ci-maintenance-workflow

CI and GitHub Actions maintenance workflows — fix a failing test from a CI URL, fix a failing smoke test, add @pytest.mark.slow markers to slow tests, or review a PR against agent-checkable standards. Use when user asks to fix a failing test, fix a smoke test, mark slow tests, or review a PR. Trigger when the user…

UKGovernmentBEIS/inspect_evals · 120 tokens

test-setup

Scaffold the test framework and CI/CD pipeline for the project's engine. Creates the tests/ directory structure, engine-specific test runner configuration, and GitHub Actions workflow. Run once during Technical Setup phase before the first sprint begins.

Donchitos/Claude-Code-Game-Studios · 49 tokens

terraform-skill

Terraform infrastructure as code best practices.

Agent-Threat-Rule/agent-threat-rules · 10 tokens