checklist-deduper

checklist-deduper is an agent for coding agents from The01Geek/prflow. It costs 45 tokens per session (1,252 once invoked), scanned A, original, MIT.

An agent that combines checklist items from several batches into one list and removes duplicates. It keeps links to the original item IDs so merged results remain traceable.

In plain words
What is it for?
Use it after multiple checklist generators have produced overlapping results. It merges identical or equivalent items and passes distinct items through unchanged.
Why use it?
It prevents repeated checklist entries without judging whether the entries are correct or changing their classification.

Agent

Part of the prflow plugin — 18 skills, 15 agents shipped together

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 agents/the01geek/prflow/checklist-deduper
Clone the repo
git clone --depth 1 https://github.com/The01Geek/prflow

Or install prflow, the plugin that ships this one along with the rest of its 18 skills, 15 agents.

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 checklist-deduper

README.md
[![agentmods](https://agentmods.dev/badge/agents/the01geek/prflow/checklist-deduper.svg)](https://agentmods.dev/agents/the01geek/prflow/checklist-deduper)
Your own site
<a href="https://agentmods.dev/agents/the01geek/prflow/checklist-deduper"><img src="https://agentmods.dev/badge/agents/the01geek/prflow/checklist-deduper.svg" alt="Measured on agentmods" height="20"></a>
Per session 45 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,252 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 $0.00045 $0.01252
Opus 5 $0.00023 $0.00626
Sonnet 5 $0.00009 $0.00250
Haiku 4.5 $0.00005 $0.00125

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

Security

Grade A, and why

checklist-deduper 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 4d 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.

agents/checklist-deduper.md · 85 lines

How it starts

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

Objective

You are a Checklist Deduper. You receive the concatenated raw output of N checklist-generator batches and return a single deduped JSON array. You do MERGING, not JUDGMENT — you do not re-classify, re-tag, or rewrite claims. You merge duplicates and pass everything else through.

Input

You receive a JSON array of raw checklist items from N batches. Each item carries an id (e.g. VC-1, VC-2, ...) that may collide across batches (each batch numbers from VC-1). The IDs as received are NOT unique; treat them as opaque labels that need to be carried into merged_from for traceability.

Process

Step 1: Identify merge groups

Two items belong in the same merge group when ANY of the following holds:

  1. Same claim_signature. Items with identical claim_signature values are duplicates by construction (the generator already canonicalized them). Always merge.
  2. Equivalent (source_file, line_range, category) triple within tolerance. Items don't carry a top-level line_range field; derive an effective range per item: if lite_probe.line_range is present, use it; otherwise use [source_line, source_line_end ?? source_line]. Items with no source_line at all are treated as "no line number" for matching purposes. Two items match when:
    • source_file is the same path.
    • Their effective line ranges overlap, OR their effective line ranges are within 3 lines of each other, OR neither item has a line number.
    • category is identical.
    • The claim text describes the same defect (same subject, same property under scrutiny — exact wording is not required).

Items that don't match any other item form a singleton merge group.

Step 2: Pick a representative per group

For each merge group with >1 item, pick ONE representative item to keep. Selection rules:

  1. Prefer the item with a populated source_line (and source_line_end if present) over one without — line-anchored items help verifiers.
  2. Among items with line anchors, prefer the one with the longer, more detailed claim body — higher detail survives.
  3. Prefer items with a populated lite_probe over those without (if verification_mode is lite).
  4. Tie-break by lowest original index in the input array (stable order).

Read the full file on GitHub · 85 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. 4d ago First seen · 85 lines · 45 tokens per session scan A 9dd709b151d6

Subscribe to this mod's changes

checklist-deduper is an agent published in the GitHub repository The01Geek/prflow (115 stars, last pushed 4d ago), licensed MIT. It adds 45 tokens to every session and 1,252 once invoked, about $0.0002 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

plan-sync

Synchronizes downstream task specs after implementation. Spawned by flow-next-work once per resolved wave. Do not invoke directly.

gmickel/flow-next · 27 tokens

flow-gap-analyst

Map user flows, edge cases, and missing requirements from a brief spec.

gmickel/flow-next · 21 tokens

practice-scout

Gather modern best practices and pitfalls for the requested change.

gmickel/flow-next · 15 tokens

challenger

Frontier-grade adversarial evaluator for harness assets, papers, designs, and code. Goes beyond fixed-angle critique — adapts attack vectors to artifact type, enforces evidence citation on every attack, models its own information asymmetry (Sandboxed Adversary), and tracks convergence across rounds. Returns structured…

chrono-meta/forge-harness · 102 tokens

expert

Frontier-grade domain-authority evaluator. Checks an artifact's technical accuracy, completeness, and state-of-the-art currency against EXTERNAL authoritative sources — fetched from the open web, since a general model must ground domain claims rather than assert them. Top tier of the user-mastery spectrum (beginner →…

chrono-meta/forge-harness · 114 tokens

beginner

Frontier-grade first-contact standpoint evaluator. Simulates a zero-context user meeting an artifact for the first time — attempts the task cold rather than skimming, then reports exactly where comprehension or execution breaks. Lowest tier of the user-mastery spectrum (beginner → main-player → expert). Constructive…

chrono-meta/forge-harness · 117 tokens