mcp-server-polarion: Skill for Claude Code

.claude/skills/dev-pipeline/SKILL.md

dev-pipeline is a skill for Claude Code from devemberx/mcp-server-polarion. It costs 161 tokens per session (5,314 once invoked), scanned A, original, MIT.

A staged workflow for developing a feature from an isolated worktree through research, planning, implementation, tests, quality checks, review, fixes, and release. TDD means writing tests around the expected behavior as part of development.

In plain words
What is it for?
Use it for substantial repository features that need separate working files, an agreed specification and plan, test-led implementation, quality gates, and final review.
Why use it?
It gives complex changes a repeatable sequence with approval points and a review-and-fix loop before shipping.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths; 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/skills/dev-pipeline/SKILL.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 dev-pipeline

README.md
[![agentmods](https://agentmods.dev/badge/skills/devemberx/mcp-server-polarion/dev-pipeline/github.svg)](https://agentmods.dev/skills/devemberx/mcp-server-polarion/dev-pipeline)
Your own site
<a href="https://agentmods.dev/skills/devemberx/mcp-server-polarion/dev-pipeline"><img src="https://agentmods.dev/badge/skills/devemberx/mcp-server-polarion/dev-pipeline/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 dev-pipeline

Your own site · 80×15
<a href="https://agentmods.dev/skills/devemberx/mcp-server-polarion/dev-pipeline"><img src="https://agentmods.dev/badge/skills/devemberx/mcp-server-polarion/dev-pipeline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 161 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,314 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00161 $0.05314
Opus 5 $0.00081 $0.02657
Sonnet 5 $0.00032 $0.01063
Haiku 4.5 $0.00016 $0.00531

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

Security

Grade A, and why

dev-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 9d 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/skills/dev-pipeline/SKILL.md · 346 lines

How it starts

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

Dev Pipeline

Encode the sequence that shipped list_test_records (PR #170): worktree → spec → plan → TDD implement → gates → simplify → review loop → ship. Main session is the orchestrator: it sequences stages, holds user approvals, spawns the stage agents, and merges their reports. Subagents never spawn other subagents (hard rule here — every paraphrase hop loses information).

 0.Worktree → 1.Spec →(approve)→ 2.Plan →(approve)→ 3.Implement(TDD) → 4.Gates ◄─┐
                                                                       │         │ (re-run)
                                              (5.Simplify, first pass) ▼         │
                                              7.Fix ◄─(findings)─ 6.Review       │
                                                │                    │(clean)    │
                                                └────────────────────┼───────────┘
                                                                     ▼
                                                                  8.Ship

Data handoff — how stages talk

Subagents share no memory and no conversation history. Three channels only:

  1. Prompt in — a subagent sees exactly what you put in its prompt plus its own agent definition. Always pass the handoff-file paths and the task excerpt; never assume it "knows" what was discussed.

  2. Report out — its final message returns as the tool result. Each agent definition fixes a report format; the report is the interface. Relay what matters to the user — they don't see tool results.

  3. Files — the durable channel. This pipeline writes its artifacts to .pipeline/ in the worktree (gitignored, never committed):

    File Written by Read by
    .pipeline/spec.md orchestrator (Stage 1, draft before approval; approved via file link — single copy; approval freezes it) pattern-scout, pipeline-implementer, pipeline-reviewer
    .pipeline/plan.md orchestrator (Stage 2, approved via file link — single copy; approval freezes it) pipeline-implementer, pipeline-reviewer
    .pipeline/review-round-N.md orchestrator (Stage 6, reviewer report pasted verbatim) pipeline-implementer (Stage 7), user on escalation
    .pipeline/followups.md orchestrator (Stage 6, FOLLOW-UPS + unfixed LOW accumulated per round, deduped) orchestrator (Stage 8 issue export)

Read the full file on GitHub · 346 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 346 lines · 161 tokens per session scan A 4d0c3fef2aee

Subscribe to this mod's changes

dev-pipeline is a skill published in the GitHub repository devemberx/mcp-server-polarion (13 stars, last pushed 7d ago), licensed MIT. It adds 161 tokens to every session and 5,314 once invoked, about $0.0008 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.