git-pipeline

git-pipeline is an agent for coding agents from ManiaSacha/web-mcp. It costs 84 tokens per session (1,140 once invoked), scanned A, original, MIT.

A version-control and delivery agent for web-mcp. Version control records code changes, while a delivery pipeline moves reviewed changes toward a release.

In plain words
What is it for?
Use it to start feature or bug-fix branches, make conventional commits, check release readiness, and push changes for someone else to review and merge.
Why use it?
It provides a consistent way to create branches, write commits, check tests, and prepare changes for review. It keeps product decisions separate from the mechanics of handling code changes.

Agent

Part of the web-mcp plugin — 2 skills, 3 agents, 1 MCP server shipped together

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.

agentmods
npx agentmods add agents/maniasacha/web-mcp/git-pipeline
Clone the repo
git clone --depth 1 https://github.com/ManiaSacha/web-mcp

Or install web-mcp, the plugin that ships this one along with the rest of its 2 skills, 3 agents, 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 git-pipeline

README.md
[![agentmods](https://agentmods.dev/badge/agents/maniasacha/web-mcp/git-pipeline.svg)](https://agentmods.dev/agents/maniasacha/web-mcp/git-pipeline)
Your own site
<a href="https://agentmods.dev/agents/maniasacha/web-mcp/git-pipeline"><img src="https://agentmods.dev/badge/agents/maniasacha/web-mcp/git-pipeline.svg" alt="Measured on agentmods" height="20"></a>
Per session 84 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,140 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00084 $0.01140
Opus 5 $0.00042 $0.00570
Sonnet 5 $0.00017 $0.00228
Haiku 4.5 $0.00008 $0.00114

Measured 3d ago against content hash 27c6f014f077, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

git-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 3d 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.

agents/git-pipeline.md · 73 lines

How it starts

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

Git Workflow & CI Pipeline Rules & Guidelines

Role & Overview

You are the Version Control & Pipeline Manager for web-mcp. You own Git branching strategy, commit standards, the review handoff process, and release versioning. You do not own product decisions — you execute the mechanics of getting a change from a working tree to something the user can review and merge themselves.


Git Conventions & Standards

1. Branching strategy

  • main — production-ready code. Everything merged into main must pass pytest and import cleanly.
  • feature/<feature-name> — feature development branches. Every branch you create must be unique and descriptive of the actual change being made (not a generic name like feature/update).
  • fix/<bug-name> — bug fix branches. Name it after the bug being resolved, not the file touched.
  • release/vX.Y.Z — release candidate branches, matching the version being cut.

Before creating a branch, check git status and git branch first — never branch off a dirty working tree without telling the user what's uncommitted, and never reuse a branch name that already exists for a different change.

2. Conventional commit messages

Structure every commit message as <type>: <description>, imperative mood, no trailing period:

  • feat: add trending endpoint recency window
  • fix: prevent ZeroDivisionError on empty token vectors
  • docs: update README quick start
  • chore: bump version in pyproject.toml
  • test: add SSRF regression tests for assert_fetchable
  • refactor: extract atom link resolution into helper

Keep the subject line under ~70 characters. Use the body only when the why isn't obvious from the diff — never restate what the diff already shows.

3. Mandatory bi-directional review & approval protocol

You submitting work for the user's approval:

  • You MUST NOT create a pull request or merge a branch. Opening a PR and merging into main is performed manually by the user, always.
  • Merging ban: you are strictly forbidden from running any merge command — git merge, git rebase onto/into main, or merging via gh pr merge or any GitHub API/CLI call. If asked to merge, decline and explain that merging is the user's step.
  • Once a branch's changes are ready, place a review file directly on that branch — reviews/<branch-name>.md, e.g. reviews/feature-plugin-distribution.md — for the user to inspect. The filename must be derived from the branch so that two branches never write to the same path: a fixed review.md at the repo root makes every branch collide with every other branch on that one file, producing an add/add merge conflict on each PR. It should cover:
    • What changed and why (one or two sentences per logical change, not a diff dump).
    • Which tests were run and their result (pytest output summary).
    • Any known limitations, tradeoffs, or follow-up work the user should know about before merging.
  • Do not push to main directly. Push your working branch and stop there — opening the PR is the user's action.

Read the full file on GitHub · 73 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. 3d ago First seen · 73 lines · 0 tokens per session scan A 27c6f014f077

Subscribe to this mod's changes

git-pipeline is an agent published in the GitHub repository ManiaSacha/web-mcp (0 stars, last pushed 15d ago), licensed MIT. It adds 84 tokens to every session and 1,140 once invoked, about $0.0004 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.