pipeline-digest

pipeline-digest is a skill for Claude Code, Codex from gtapps/claude-code-hermit. It costs 99 tokens per session (667 once invoked), scanned A, original, MIT.

A daily report about the software release pipeline, which is the process of checking code and preparing it for release. It lists plugins waiting for release, whether the main branch's automated checks pass, and which branches have become inactive.

In plain words
What is it for?
Use it to find out what changed in the release pipeline or whether anything is ready to ship. It collects the pipeline status, reports changes, sends a notification when needed, and records the latest state.
Why use it?
It avoids sending repeated reports when nothing has changed. It tells the operator about pipeline changes and notifies them only when the recorded state moves.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

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 skills/gtapps/claude-code-hermit/pipeline-digest
Any agent
npx skills add gtapps/claude-code-hermit --skill pipeline-digest
Clone the repo
git clone --depth 1 https://github.com/gtapps/claude-code-hermit

Made for: Claude Code, Codex.

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-digest

README.md
[![agentmods](https://agentmods.dev/badge/skills/gtapps/claude-code-hermit/pipeline-digest.svg)](https://agentmods.dev/skills/gtapps/claude-code-hermit/pipeline-digest)
Your own site
<a href="https://agentmods.dev/skills/gtapps/claude-code-hermit/pipeline-digest"><img src="https://agentmods.dev/badge/skills/gtapps/claude-code-hermit/pipeline-digest.svg" alt="Measured on agentmods" height="20"></a>
Per session 99 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 667 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.1 $0.00099 $0.00667
Opus 5 $0.00049 $0.00333
Sonnet 5 $0.00020 $0.00133
Haiku 4.5 $0.00010 $0.00067

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

Security

Grade A, and why

pipeline-digest 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 6d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/digest.ts), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/skills/pipeline-digest/SKILL.md · 52 lines

How it starts

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

Pipeline Digest

Delta-gated wrapper over the pipeline facts /release-status reports in full. A quiet day costs one script call and sends nothing.

Steps

1. Collect

bun .agents/skills/pipeline-digest/scripts/digest.ts .claude-code-hermit

Run from the repo root. Two possible outputs:

  • NOCHANGE — the pipeline is exactly where it was last time. Say so in one line and stop. Do not send anything.
  • CHANGED|<hash> followed by the digest body — continue.

2. Report and notify

Print the digest body in the conversation. Then send it to the operator:

.claude-code-hermit/bin/hermit-run channel-send .claude-code-hermit --notice

with {"maintainer": "<the digest, channel-voiced>"} on stdin. The hermit-run dispatcher resolves the installed plugin itself — do not try to derive a plugin root from this skill's Base directory, which points at .agents/, not the plugin.

Channel voice: plain language, no file paths, no slash commands, no cron strings. Plugin names and versions are fine — the maintainer chat is the technical audience. Lead with what the operator can act on.

3. Commit the hash

bun .agents/skills/pipeline-digest/scripts/digest.ts .claude-code-hermit commit <hash>

Commit only when the digest reached the operator, or when there was nobody to send it to. Read the JSON on stdout — the exit code alone is not enough, because the script exits 1 whenever delivered is false, no_channel included:

Send result Action
"delivered":true (exit 0) commit the hash
"no_channel":true (exit 1), no channel enabled in config.json commit the hash — there is no audience, so printing it was the delivery
"no_channel":true (exit 1), but a channel is enabled do not commit — the channel is configured and unreachable, which is a delivery failure, not an empty audience
exit 1 otherwise (undelivered or degraded) do not commit, so the digest re-fires next run; report the failure per § Operator Notification
exit 2 (payload rejected) do not commit; the payload is malformed — fix and retry

Read the full file on GitHub · 52 lines

Files

What ships with it

1 file 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. 6d ago First seen · 52 lines · 99 tokens per session scan A eca710b6c79a

Subscribe to this mod's changes

pipeline-digest is a skill published in the GitHub repository gtapps/claude-code-hermit (74 stars, last pushed today), licensed MIT. It adds 99 tokens to every session and 667 once invoked, about $0.0005 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 skills, from other repositories

push-ci

Push to remote and monitor CI. Validates branch safety, executes git push WITH explicit user approval, then monitors CI run status via gh CLI. Use when: user says 'push', 'push and watch CI', 'ship it', 'push-ci'. Not for: committing (use /smart-commit), creating PRs (use /create-pr), merging (use /merge-prep).

sd0xdev/sd0x-harness · 82 tokens

ops-ship

OPS on-demand: This skill should be used when the user asks to "ship ops plugin", "merge all PRs and…

Lifecycle-Innovations-Limited/claude-ops · 30 tokens

merge-queue-thrash-stop-inflow-and-open-prs-as-drafts

When main moves faster than the slowest CI leg, every open branch goes stale before it can merge and the whole queue jams with nothing red. Use when: (1) several PRs sit at mergeStateStatus BEHIND with auto-merge armed and none of them lands; (2) branches are being updated, re-running CI and going stale again before…

wan-huiyan/agent-traffic-control · 285 tokens

claude-plugin-repo-ci-release

Wire up CI validation and automatic release-cutting for a Claude Code plugin or marketplace repo (a repo with a .claude-plugin/marketplace.json and plugins/). Adds two GitHub Actions — a structure validator that runs on every PR/push, and a release-on-version-bump job that cuts a GitHub Release whenever a VERSION file…

wan-huiyan/claude-ecosystem-hygiene · 308 tokens

ratchet-ship

Release runbook that takes verified local work to a green deploy — full local preflight, diff and secret review, push per the repo's convention, watch CI to completion, run the smoke checklist, and leave rollback notes. Use when the user says "ship it", "ratchet ship", "release", or after /ratchet-loop finishes a…

afrizzal/ratchet · 83 tokens

ship

현재 브랜치의 변경사항을 commit → push → PR 생성 → merge → 브랜치 정리까지 한 번에 처리한다. develop 브랜치가 있으면 git-flow(feature→develop→main), 없으면 GitHub Flow(feature→main)로 자동 적응하고, 머지 전 기능 게이트+보안 스캔+DB 검토+민감파일 차단을 실행한다. '/ship', 'ship', '배포해줘', '커밋하고 머지까지' 등 언급 시 호출.

cubha/claude-workflow-plugins · 113 tokens