mcp-server-polarion: Agent for Claude Code

.claude/agents/pipeline-reviewer.md

pipeline-reviewer is an agent for Claude Code from devemberx/mcp-server-polarion. It costs 72 tokens per session (822 once invoked), scanned A, original, MIT.

A fresh-context reviewer for a development pipeline's final review stage. It compares the branch changes with the approved specification and plan, then reports severity-labelled findings and a pass or fail decision.

In plain words
What is it for?
Use it after quality gates pass and again after fixes. It reviews the branch diff and focused tests for issues such as incorrect error handling, contract mismatches, scope creep, or weak tests.
Why use it?
It gives the implementation an independent review without relying on the implementer's explanations. It checks correctness, scope, project conventions, external-contract details, and whether tests genuinely cover new behavior.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; mentions CLAUDE.md; mentions subagents.

This is devemberx/mcp-server-polarion's own configuration. It tells Claude Code how to work on mcp-server-polarion itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything mcp-server-polarion configures →

Reuse

Borrowing it

Nothing to install: this file belongs to devemberx/mcp-server-polarion. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/devemberx/mcp-server-polarion/main/.claude/agents/pipeline-reviewer.md
Clone the repo
git clone --depth 1 https://github.com/devemberx/mcp-server-polarion

Made for: Claude Code.

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

README.md
[![agentmods](https://agentmods.dev/badge/agents/devemberx/mcp-server-polarion/pipeline-reviewer/github.svg)](https://agentmods.dev/agents/devemberx/mcp-server-polarion/pipeline-reviewer)
Your own site
<a href="https://agentmods.dev/agents/devemberx/mcp-server-polarion/pipeline-reviewer"><img src="https://agentmods.dev/badge/agents/devemberx/mcp-server-polarion/pipeline-reviewer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for pipeline-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/agents/devemberx/mcp-server-polarion/pipeline-reviewer"><img src="https://agentmods.dev/badge/agents/devemberx/mcp-server-polarion/pipeline-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 822 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 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.1 $0.00072 $0.00822
Opus 5 $0.00036 $0.00411
Sonnet 5 $0.00014 $0.00164
Haiku 4.5 $0.00007 $0.00082

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

Security

Grade A, and why

pipeline-reviewer 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 11d 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.

.claude/agents/pipeline-reviewer.md · 77 lines

How it starts

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

Pipeline Reviewer

You review the branch diff cold. You get the spec and plan, not the implementation transcript — the implementer's context is full of its own justifications, and your value is not sharing them.

Input contract

  • Paths to .pipeline/spec.md and .pipeline/plan.md — the standard the diff is judged against.
  • The diff scope: git diff origin/main...HEAD unless the prompt narrows it.

Review axes (this repo's flavor)

  1. Correctness — edge cases, error paths, wrong-but-plausible parsing; dry_run return and live send must be one builder output (a one-path-only transform is a finding).
  2. Spec fidelity — does the diff do what the approved spec says, no more, no less? Scope creep is a finding.
  3. ConventionCLAUDE.md rules: typing, error mapping, payload rules, docstring template, comment style, Naming Rules (LLM surface).
  4. Contract fidelity — Polarion gotchas (id segment rules, sparse-fieldset relationship drops, meta/links pagination quirks); mocks that contradict recorded live behavior.
  5. Test honesty — do tests pin behavior or mirror the implementation? Is every new behavior's test one that could ever have failed? Eval cases meet the same bar by reading only (never run evals): trigger prompt beyond a tool-name echo, checks assert the spec'd params.
  6. Compat — existing shipped LLM surface changed (tool names, param names/types/defaults, response-model fields)? Compare the origin/main side. Pure additions (new tool, new optional param, new response field) are not Compat items, and a rename that keeps the old name working as a deprecation alias leaves the surface intact — neither produces a BREAKING item. Spec-sanctioned → ## BREAKING; unsanctioned → spec-fidelity finding.

Verify suspicions before reporting: read the surrounding code, run a focused test if cheap. A finding you didn't verify gets marked PLAUSIBLE, not stated as fact.

Report format

## FINDINGS (most severe first; empty section = none)
- path:line — CRITICAL|MEDIUM|LOW|NIT — problem. Failure scenario: concrete
  input/state → wrong outcome. Fix: concrete suggestion.

## FOLLOW-UPS (out of current spec scope; excluded from verdict)
- path:line — worthwhile item + why out of scope. Fix: concrete suggestion.

## BREAKING (spec-sanctioned surface changes; excluded from verdict)
- surface item — old → new.

## VERDICT
PASS | FAIL — stop criterion: zero CRITICAL/MEDIUM actionable findings.

Read the full file on GitHub · 77 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. 11d ago First seen · 77 lines · 72 tokens per session scan A 2fdae486b287

Subscribe to this mod's changes

pipeline-reviewer is an agent published in the GitHub repository devemberx/mcp-server-polarion (13 stars, last pushed 2d ago), licensed MIT. It adds 72 tokens to every session and 822 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-30.

Related

Other agents, from other repositories

kicad-design-review-agent

Performs a thorough hardware design review of a KiCAD project. Triggers: full design review, audit everything, is my board ready for fab, comprehensive check, pre-fab review.

mixelpixx/Konnect · 45 tokens

timps_pr_reviewer

Review a pull request diff for blockers, suggestions, and nitpicks. Returns a structured review with a 0-10 score and approve/reject verdict. Use the timpsprreviewer MCP tool to perform this task. Do not answer directly — delegate to this sub-agent.

Sandeeprdy1729/timps-swarm · 65 tokens

timps_refactoring_agent

Detect code smells and produce a fully refactored version with a diff summary, complexity scores, and improvement list. Use the timpsrefactoringagent MCP tool to perform this task. Do not answer directly — delegate to this sub-agent.

Sandeeprdy1729/timps-swarm · 56 tokens

timps_code_archaeology

Analyse git history to build an AST import graph, risk map, and tribal knowledge document. Use the timpscodearchaeology MCP tool to perform this task. Do not answer directly — delegate to this sub-agent.

Sandeeprdy1729/timps-swarm · 53 tokens

timps_pattern_detector

Detect duplicate code blocks, god classes, magic numbers, and anti-patterns in a codebase. Use the timpspatterndetector MCP tool to perform this task. Do not answer directly — delegate to this sub-agent.

Sandeeprdy1729/timps-swarm · 51 tokens

harmonyos-app-resolver

HarmonyOS application development expert specializing in ArkTS and ArkUI. Reviews code for V2 state management compliance, Navigation routing patterns, API usage, and performance best practices. Use for HarmonyOS/OpenHarmony projects.

affaan-m/ECC · 49 tokens