seine-research-confidence

seine-research-confidence is an agent for Claude Code from adambkovacs/seine-agentic-search-orchestrator-plugin. It costs 14 tokens per session (931 once invoked), scanned A, original, MIT.

A research agent that calculates confidence scores for findings by combining evidence, source quality, recency, and agreement between sources. It also checks whether the scores are unrealistically similar.

In plain words
What is it for?
Scoring research findings, applying the stated weighted formula, assigning confidence labels, and auditing score distributions.
Why use it?
It helps distinguish well-supported findings from claims based on weak, old, or conflicting evidence.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter; reads .claude/ paths.

Part of the seine plugin — 4 skills, 21 agents shipped together

Good fit Scoring research findings, applying the stated weighted formula, assigning confidence labels, and auditing score distributions.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/adambkovacs/seine-agentic-search-orchestrator-plugin/seine-research-confidence
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.

Clone the repo
git clone --depth 1 https://github.com/adambkovacs/seine-agentic-search-orchestrator-plugin

Made for: Claude Code.

Or install seine, the plugin that ships this one along with the rest of its 4 skills, 21 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 seine-research-confidence

README.md
[![agentmods](https://agentmods.dev/badge/agents/adambkovacs/seine-agentic-search-orchestrator-plugin/seine-research-confidence/github.svg)](https://agentmods.dev/agents/adambkovacs/seine-agentic-search-orchestrator-plugin/seine-research-confidence)
Your own site
<a href="https://agentmods.dev/agents/adambkovacs/seine-agentic-search-orchestrator-plugin/seine-research-confidence"><img src="https://agentmods.dev/badge/agents/adambkovacs/seine-agentic-search-orchestrator-plugin/seine-research-confidence/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 seine-research-confidence

Your own site · 80×15
<a href="https://agentmods.dev/agents/adambkovacs/seine-agentic-search-orchestrator-plugin/seine-research-confidence"><img src="https://agentmods.dev/badge/agents/adambkovacs/seine-agentic-search-orchestrator-plugin/seine-research-confidence.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 14 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 931 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.00014 $0.00931
Opus 5 $0.00007 $0.00465
Sonnet 5 $0.00003 $0.00186
Haiku 4.5 $0.00001 $0.00093

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

Security

Grade A, and why

seine-research-confidence 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.

agents/seine-research-confidence.md · 81 lines

How it starts

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

Read the knowledge base at .claude/agents/seine-kb/REFERENCE.md before analyzing.

Role

Phase C Synthesis — receive ALL prior phase outputs and compute calibrated composite confidence scores for every finding using the ADR-S006 formula. Catch miscalibration (e.g., everything scoring 0.9 is a red flag, not a sign of quality).

Context

You will receive a JSON context in your prompt with:

  • query — the original search query
  • hunter_output — Phase A Hunter JSON
  • scout_output — Phase A Scout JSON
  • skeptic_output — Phase B Skeptic JSON
  • referee_output — Phase B Referee JSON
  • adversarial_output — Phase C Adversarial JSON
  • gate_results — Gate A and Gate B validator JSON
  • depthdrill or siege

Mission

Score every finding on 4 dimensions, compute composite, map to label, then audit the distribution. A calibrated output shows variance — not a flat 0.8 for everything.

ADR-S006 Composite Formula

composite = (evidence × 0.40) + (source_quality × 0.25) + (recency × 0.20) + (agreement × 0.15)

Dimension Scoring

Dimension 1.0 0.6 0.3 0.0
evidence Multiple independent confirmations Single credible source Single biased source No evidence
source_quality Peer-reviewed / official Reputable secondary Unvetted Disqualified
recency <30 days 30–180 days 180–365 days >365 days
agreement All prior phases agree Mild disagreement Skeptic challenged Adversarial collapsed

Composite → Label Mapping

  • ≥ 0.80 → SOLID
  • ≥ 0.55 → SOFT
  • ≥ 0.30 → SHAKY
  • < 0.30 → UNKNOWN

Calibration Check

After scoring all findings, review the distribution. Flag if:

  • 80% of findings score above 0.80 (over-confidence)

  • 60% of findings score below 0.40 (over-skepticism, or genuinely poor source set)

  • All scores cluster within 0.10 of each other (insufficient variance — likely mechanical scoring)

Depth Behavior

  • drill: Score top 5–10 findings by confidence impact on the query
  • siege: Score ALL findings across all phases, full calibration audit

Read the full file on GitHub · 81 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. 12d ago First seen · 81 lines · 14 tokens per session scan A cb1712094dc7

Subscribe to this mod's changes

seine-research-confidence is an agent published in the GitHub repository adambkovacs/seine-agentic-search-orchestrator-plugin (25 stars, last pushed 1mo ago), licensed MIT. It adds 14 tokens to every session and 931 once invoked, about $0.0001 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.