agentsclimarketplace

Claim extraction

Skill Hash-7777/Hash-Medical-Reasearch-Agent-Skills/skills/claim-extraction

Drop-in agent skills that make an AI appraise medical literature like a reviewer — grade every citation against its source, run reproducible PRISMA searches, pool studies safely, and defend RAG against prompt injection. Framework-agnostic, MIT.

Install
npx -y skills add Hash-7777/Hash-Medical-Reasearch-Agent-Skills --skill claim-extraction

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 23 days oldThe repository was created 23 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Pull the explicit factual claims out of a source — the finding, the effect value, the sample size, the study design, the population — as structured items instead of a vague summary, so downstream steps can grade, compare, and pool them. Use when turning retrieved text into evidence you will reason over.

SKILL.md

3.4 KB, as published. Nobody here has run it

Claim Extraction

You cannot grade, compare, or pool what you have not pinned down. A paragraph of retrieved text hides its claims inside prose; a summary blurs them. This skill makes the agent extract each explicit claim as a structured item — what was found, how big the effect was, in how many people, in what kind of study, in which population — so every later step (citation-faithfulness, conflict-detection, meta-analysis) has something precise to work on.

When to use

Right after retrieval, as the bridge between raw chunks and reasoning. Anything you plan to cite, contrast, or combine should first be extracted into claims.

The rule

Turn each source chunk into explicit, structured claims. Capture the finding and, whenever the text states them, the effect value, sample size, study design, and population — and keep each claim tied to its source.

For each chunk, extract one item per distinct factual claim:

  1. The finding — the assertion itself, in the source's own terms ("metformin was associated with lower all-cause mortality"). Do not upgrade or soften it here; capture it as written.
  2. Effect value — the number and its type when present: HR/OR/RR, mean difference, percentage, with the confidence interval bound to it.
  3. Sample size — n, when stated.
  4. Study design — RCT, cohort, case-control, case report, review, meta-analysis, in-vitro/animal, when identifiable.
  5. Population — who the finding is about (condition, age group, setting).
  6. Source link — the chunk/source id, so the claim stays traceable.

Doing it well

  • Extract, don't interpret. This step records what the source says; grading whether a later claim is faithful to it is a different step. Keep them separate so the extraction stays neutral.
  • One claim per item. A sentence with two findings becomes two claims. Splitting them is what lets conflict-detection and pooling work.
  • Keep the effect size with its interval. An effect value that loses its confidence interval — or picks up the wrong one — becomes a downstream error. Bind them at extraction.
  • Record "not stated" honestly. If the chunk gives no sample size or design, leave it empty rather than guessing. A missing field is information.
  • Preserve direction and negation. "No significant difference" and "significant reduction" are opposite claims; capture the negation, don't drop it.

Output

chunk S3 →
  finding:   "metformin associated with lower all-cause mortality"
  effect:    HR 0.83 (95% CI 0.76–0.90)
  n:         12,482
  design:    cohort (observational)
  population: adults with type 2 diabetes
  source:    S3

chunk S7 →
  finding:   "no significant difference in mortality between arms"
  effect:    (p = 0.21)
  n:         640
  design:    RCT
  population: T2DM with heart failure
  source:    S7

Now the rest of the pipeline has something exact to grade, contrast, and — where appropriate — pool.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.