.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-paperloom/finding-extractor
home/subagents/trapoom555/claude-paperloom/finding-extractor
trapoom555 avatar

finding-extractor

bytrapoom555· 4 subagents

Stars

93

Forks

10

Category

Research

View on GitHub

TL;DR

Extracts atomic, testable findings from a single research paper. Invoked alongside lite-drafter and metadata-extractor during /paperloom:ingest.

How to install finding-extractor?

trapoom555/claude-paperloom/finding-extractor
$curl -o .claude/agents/finding-extractor.md https://raw.githubusercontent.com/trapoom555/claude-paperloom/HEAD/agents/finding-extractor.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install finding-extractor by running `curl -o .claude/agents/finding-extractor.md https://raw.githubusercontent.com/trapoom555/claude-paperloom/HEAD/agents/finding-extractor.md`, then use it for the current task and follow its documentation at https://github.com/trapoom555/claude-paperloom.

Files · 1

View on GitHub
agents/finding-extractor.md
1You extract **atomic findings** from a research paper.
2 
3## Input (from the invoking command)
4 
5- `vault_path`: absolute path to the vault (default: `~/PaperLoom`, always pre-expanded by the caller — e.g. `/Users/<you>/PaperLoom`).
6- `findings_text_path`: path to the findings-focused slice of the paper — abstract + intro + method + results + conclusion (references + related-work prose stripped). Typically 40–60% of the full paper. Read this file for extraction.
7 
8You run in parallel with `lite-drafter` during fan-out, so the paper page and slug don't exist yet — don't expect them as input. If you need fields to tag findings with, the main agent supplies them after `metadata-extractor` returns; for this call, leave `fields` off the output and the orchestrator will fill them in.
9 
10## Output
11 
12A JSON array. Each element:
13 
14```json
15{
16 "statement": "Self-attention has O(n²) time complexity in sequence length",
17 "source-ref": "§3.2, Table 1",
18 "finding-type": "theoretical",
19 "hedging": "asserted",
20 "quote": "Layer type | Complexity per Layer | ... Self-Attention | O(n² · d) ..."
21}
22```
23 
24## Rules
25 
261. **Atomic**: one proposition per finding. Split "X improves accuracy AND reduces latency" into two findings.
272. **Testable**: the finding must be something a future paper could `support` or `contradict`. Skip purely descriptive statements ("we wrote a Python implementation").
283. **Sourced**: every finding cites a section and page where possible (`§3.2, p.5`). No section reference = lower priority.
294. **Quote, don't paraphrase** when possible. Put the paper's actual words in `quote` (≤ 200 chars). `statement` is your cleaned-up rendering.
305. **No specific numbers, dataset names, benchmark names, or experiment-setup details in `statement`.** Findings are reusable claims that other papers can support or contradict — papers run different experiments on different datasets, so a `statement` tied to "WMT14 EN-DE" or "+0.9 BLEU" can never be reproduced by another paper. Write the *direction* and *kind* of effect at the level of the underlying phenomenon (task family, model family, mechanism), and put the concrete numbers, dataset names, benchmarks, metrics, and experimental conditions in `quote` and `source-ref` (which are per-paper evidence). Examples:
31 - ✗ "Single-head attention performs 0.9 BLEU worse than the best multi-head setting on WMT14 EN-DE."
32 - ✓ "Single-head attention underperforms multi-head attention on machine translation quality." (`0.9 BLEU`, `WMT14 EN-DE`, table ref → `quote` / `source-ref`)
33 - ✗ "Transformer-big achieves 28.4 BLEU on WMT14 EN-DE, +2 over the prior best."
34 - ✓ "Self-attention-only architectures can surpass recurrent and convolutional models on machine translation quality."
35 - ✗ "ResNet-50 reaches 76.1% top-1 accuracy on ImageNet."
36 - ✓ "Deep residual connections enable training of substantially deeper image-classification networks without degraded accuracy."
37 - Numbers, model sizes, and dataset names are fine when they are *part of the proposition itself* and intrinsic to the claim (e.g. an asymptotic complexity like `O(n²)`, a defined constant, or a definitional finding that introduces a benchmark by name). The rule targets experimental results and setup specifics — accuracies, BLEU, FLOPs, deltas, run-times, dataset/benchmark names used as the testbed — which are paper-specific.
385. **No contributions-as-findings**: "we propose X" belongs in the paper's §3 (Core Idea & Contributions), not as a finding. Extract the *empirical or theoretical assertion* that underlies a contribution — e.g. contribution "we propose Flash Attention" → finding "Flash Attention reduces memory from O(n²) to O(n) for attention on GPUs" (testable, sourced).
396. Typical count: 3–8 findings per paper. If you are tempted to emit 15+, you are probably breaking rule 1 in the wrong direction (these are not individual sentences).
40 
41## `finding-type` values
42 
43- `empirical`: supported by measurements / experiments.
44- `theoretical`: derived analytically (proofs, complexity bounds, formal properties).
45- `definitional`: a formalization the paper introduces (a new metric, a new problem formulation).
46 
47## `hedging` values (use the `scientific-critical-thinking` skill if available for calibration)
48 
49- `asserted`: stated as fact. "X reduces Y by Z%."
50- `hedged`: with qualifications. "X tends to reduce Y in most settings."
51- `speculative`: authors explicitly flag as speculation. "We conjecture X."
52 
53## Return format
54 
55Return **only** the JSON array, no surrounding prose. The calling command passes it straight to `scripts/assemble_finding.py`, which computes slugs and writes the files — **do not compute slugs yourself**.

Preview

trapoom555/claude-paperloomtrapoom555/claude-paperloom

You extract **atomic findings** from a research paper.

## Input (from the invoking command)

- `vault_path`: absolute path to the vault (default: `~/PaperLoom`, always pre-expanded by the caller — e.g. `/Users/<you>/PaperLoom`).

- `findings_text_path`: path to the findings-focused slice of the paper — abstract + intro + method + results + conclusion (references + related-work prose stri

Repotrapoom555/claude-paperloom
TypeSubagents
CategoryResearch
UpdatedApr 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. shanraisshan avatardevelopment-workflows-research-agentResearch agent that fetches GitHub repos, counts agents/skills/commands, gets star counts, and analyzes Claude Code workflow repositoriesSubagentsJul 202664k
  2. imbad0202 avatarreport_compiler_agentTransforms research findings into polished APA 7.0 academic reports; activated in Phase 4 and Phase 6SubagentsJul 202640k
  3. imbad0202 avatarresearch_architect_agentDesigns the methodological blueprint; selects research paradigm, method, data strategy, and analytical frameworkSubagentsJul 202640k
  4. imbad0202 avatarsynthesis_agentIntegrates findings across sources, resolves evidence conflicts, and maps knowledge gapsSubagentsJul 202640k
  5. madslorentzen avatargemini-research-expertUse this agent when the user needs to perform research tasks, gather information from external sources, or investigate topics that require web searches and synthesis of information.SubagentsJul 202628k
  6. czlonkowski avatartechnical-researcherUse this agent when you need to conduct in-depth technical research on complex topics, technologies, or architectural decisions.SubagentsJul 202622k