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.
npx agentmods add agents/maniasacha/web-mcp/git-pipelinegit clone --depth 1 https://github.com/ManiaSacha/web-mcpWrote 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.
[](https://agentmods.dev/agents/maniasacha/web-mcp/git-pipeline)<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>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.
| Model | Per session | Once 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 |
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.
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 intomainmust passpytestand 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 likefeature/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 windowfix: prevent ZeroDivisionError on empty token vectorsdocs: update README quick startchore: bump version in pyproject.tomltest: add SSRF regression tests for assert_fetchablerefactor: 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
mainis performed manually by the user, always. - Merging ban: you are strictly forbidden from running any merge command —
git merge,git rebaseonto/intomain, or merging viagh pr mergeor 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 fixedreview.mdat 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 (
pytestoutput summary). - Any known limitations, tradeoffs, or follow-up work the user should know about before merging.
- Do not push to
maindirectly. Push your working branch and stop there — opening the PR is the user's action.
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.
- 3d ago First seen · 73 lines · 0 tokens per session scan A 27c6f014f077
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.
Other agents, from other repositories
pr-submitter
Creates a git branch, commits a cask, and opens a PR to homebrew-cask.
git-workflow-master
Git工作流专家,负责分支策略设计、合并冲突解决、代码历史维护、CI集成和团队Git规范制定.
shipper
Git and GitHub Operations — commits, pushes, PRs, issue comments.
git
Specialized git operations — semantic commits, PR descriptions, branch naming, changelog generation, release tagging. Convention-aware utility replacing ad-hoc git commands.
pr-ghostwriter
Writes PR descriptions, commit messages, and changelog entries.
git-flow
Оркестрирует полный цикл изменений в git: создание ветки → атомарные коммиты по Conventional Commits → описание PR → merge → semver-тег (если релиз). Вызывает скиллы git-conventional-commit, git-pr-description, git-release-tag. Используй, когда задача — провести изменение через git от ветки до релиза или хотя бы до PR.