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 skills add ProsusAI/prism --skill run-history-pipelinegit clone --depth 1 https://github.com/ProsusAI/prismWrote 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/skills/prosusai/prism/run-history-pipeline)<a href="https://agentmods.dev/skills/prosusai/prism/run-history-pipeline"><img src="https://agentmods.dev/badge/skills/prosusai/prism/run-history-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.
<a href="https://agentmods.dev/skills/prosusai/prism/run-history-pipeline"><img src="https://agentmods.dev/badge/skills/prosusai/prism/run-history-pipeline.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00052 | $0.01422 |
| Opus 5 | $0.00026 | $0.00711 |
| Sonnet 5 | $0.00010 | $0.00284 |
| Haiku 4.5 | $0.00005 | $0.00142 |
Grade A, and why
run-history-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 12d 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 — 143 lines — stays where its author put it; the contents beside it link to each section on GitHub.
When to use this skill
Extract failure-mode practices from a repository's git history. Runs two steps in order, clearing context between them (/clear in Claude Code, or clear context in Cursor):
mine-history(/mine-historyin Claude Code or@mine-historyin Cursor) → reads git log, produces_analysis/directives.md,_analysis/architecture.md, and_analysis/incidents.mdsynthesize(/synthesizein Claude Code or@synthesizein Cursor) → reads_analysis/incidents.md, produces_analysis/extracted_skills_history/*/SKILL.md+plugin.json
Supports --from [step-name] to start from a specific step, e.g. /run-history-pipeline --from synthesize (Claude Code) or @run-history-pipeline --from synthesize (Cursor).
Note: This pipeline is optional. If you only want to analyze the codebase's current design (not its history), run
/run-analysis-pipeline(Claude Code) or@run-analysis-pipeline(Cursor) instead.
Step 1 — Read pipeline state
Check for _analysis/.history-pipeline-state. Read it if it exists.
State file format:
completed: mine-history
next: synthesize
remaining:
published: false
Parse completed, next, remaining, and published fields. If the file doesn't exist, all steps are pending and mine-history is next.
If --from [step-name] was passed:
- Set
nextto the specified step - Set
completedto all steps that precede it in the pipeline order - Set
remainingto all steps that follow it - Proceed with this overridden state (do not require a state file to exist)
If the state file shows both steps completed and published: false (or published field absent):
"All 2 pipeline steps are done. Skills are in
_analysis/extracted_skills_history/.Run
/curate-skills(Claude Code) or@curate-skills(Cursor) to review and clean up, then/publish-skills(Claude Code) or@publish-skills(Cursor) to create a PR."
Then stop.
If the state file shows all steps completed and published: true:
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.
- 12d ago First seen · 143 lines · 52 tokens per session scan A 94a075427312
run-history-pipeline is a skill published in the GitHub repository ProsusAI/prism (20 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 52 tokens to every session and 1,422 once invoked, about $0.0003 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.
Other skills, from other repositories
prowler-commit
Creates professional git commits following conventional-commits format. Trigger: When creating commits, after completing code changes, when user asks to commit.
gh-auth-isolation
Safely manage multiple GitHub identities (EMU + personal) in agent workflows.
comet-github
A routing guide for Comet-related GitHub work. It directs requests about pull requests, issues, CI failures, ideas, and fixes to the appropriate review or implementation process.
github-skill
Work with GitHub via the gh CLI — clone repositories, create/list/merge pull requests, create/list issues, and run any other gh command (API calls, workflow runs, releases, repo administration). List operations return parsed JSON.
changelog-composer
Generates structured changelogs and release notes from git history and PRs, classifying breaking changes, features, fixes, performance, docs. Triggers on: "generate changelog", "write release notes", "what changed since", "prepare release", "release notes for", "diff since tag".
re0-merge
Review and land an external contribution the way this suite does: gate it against the thesis, land it with the author's credit intact, complete a new skill rather than merging it raw, then approve, credit, and explain before closing. Use when reviewing a pull request, as any collaborator or maintainer, not only the…