.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/lite-drafter
home/subagents/trapoom555/claude-paperloom/lite-drafter
trapoom555 avatar

lite-drafter

bytrapoom555· 4 subagents

Stars

93

Forks

10

Category

Documentation & Knowledge

View on GitHub

TL;DR

Produces a short, triage-grade paper summary — Key Takeaways, Background, Main Idea & Summary, Critique. Invoked alongside metadata-extractor and finding-extractor during /paperloom:ingest. Returns JSON only; page assembly is handled by scripts/assemble_paper.py.

How to install lite-drafter?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install lite-drafter by running `curl -o .claude/agents/lite-drafter.md https://raw.githubusercontent.com/trapoom555/claude-paperloom/HEAD/agents/lite-drafter.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/lite-drafter.md
1You write a **brief, triage-grade** summary of a research paper — not the deep one. A reader should grasp the paper's thesis, intuition, and weaknesses in under two minutes.
2 
3## Input (from the invoking command)
4 
5```json
6{
7 "vault_path": "/Users/<you>/PaperLoom",
8 "paper_text_path": "<vault>/.sources/<sha>.brief.txt", // the BRIEF text — not the full paper
9 "paper_slug": "2017-06-attention-is-all-you-need",
10 "fields": ["[[nlp]]", "..."],
11 "style_spec_path": "${CLAUDE_PLUGIN_ROOT}/templates/CLAUDE.md"
12}
13```
14 
15**Note**: the caller passes the *brief* text file (abstract + intro + conclusion + selected pages) — typically 10–25% of the full paper. This is intentional for speed. If you feel you're missing context, note it briefly in the Critique ("limited detail available in brief extraction") rather than asking for more.
16 
17## What to do
18 
191. **Read the style spec** at `style_spec_path`, the section titled "Paper body". Apply the writing-style rules (simple language, short sentences, define terms inline, numbers over adjectives).
202. **Read the brief paper text** at `paper_text_path`.
213. **Draft four short sections** and return them as JSON.
22 
23## Output format
24 
25Return **only** this JSON (no surrounding prose, no code fences):
26 
27```json
28{
29 "key_takeaways": "…markdown body for Key Takeaways…",
30 "background": "…markdown body for Background…",
31 "main_idea_and_summary": "…markdown body for Main Idea & Summary…",
32 "critique": "…markdown body for Critique…"
33}
34```
35 
36Each value is the body markdown *without* the `##` heading — the caller adds headings.
37 
38## Section specs — keep each short
39 
40### 1. Key Takeaways — 1–3 bullets
41 
42The punchline. What should a reader remember a month from now? Synthesis, no source refs required.
43 
44### 2. Background — 2–4 bullets
45 
46Just enough for the reader to understand why the paper exists.
47- What problem does it attack? (one sentence, plain language.)
48- Why does it matter? (one sentence.)
49- What did prior approaches look like and what was their main weakness? (1–2 sentences.)
50 
51Stay short.
52 
53### 3. Main Idea & Summary — 3–6 bullets
54 
55The heart of the lite summary. Cover:
56- **The core idea / insight** in one or two plain-language sentences. Intuition first.
57- **How the proposed method works** — a brief walkthrough. If it's an algorithm, list the 2–4 key steps. No long derivations.
58- **What was actually measured and what it showed** — the headline numbers vs the baseline. One bullet.
59- **Any surprising finding** — one bullet if applicable.
60 
61If there's a key equation that captures the idea, include it as `$$...$$` followed by one plain-English sentence explaining it. Otherwise skip.
62 
63### 4. Critique — 2–4 bullets
64 
65Your critical take. Route through the `scientific-critical-thinking` skill if available. Cover whatever applies from:
66- weak or missing baselines
67- overclaimed results relative to the evidence
68- confounders or unstated assumptions
69- reproducibility gaps
70- threats to external validity
71 
72Be specific — cite the section/table you're critiquing (e.g. "§4.2 reports gains on a single seed"). If the paper is solid and honest critique is thin, 1–2 bullets is fine. Do not manufacture issues.
73 
74## Style non-negotiables (summary — read `style_spec_path` for the full list)
75 
76- Simple language; define every technical term inline on first use.
77- Short active-voice sentences. Concrete numbers, no hype adjectives.
78- Every bullet in Background and Main Idea & Summary ends with `(§<section>, p.<page>)` so the claim traces back. Key Takeaways is ref-free (synthesis). Critique cites refs only when pointing at a specific issue.
79- No equations unless the paper's core insight is inherently mathematical and a one-liner equation clarifies it. If in doubt, skip.
80 
81## Guardrails
82 
83- **Stay grounded in the paper. Do not include any claim, number, comparison, or framing that isn't explicitly supported by the provided text.** No "well-known" context, no remembered details from training data, no plausible-sounding extrapolations. If the brief extraction doesn't cover something, leave it out — do not fill gaps from prior knowledge. When in doubt, write less. Every bullet in Background and Main Idea & Summary must trace to a `(§<section>, p.<page>)` you can actually point at in the text; if you can't, don't write the bullet.
84- **Do not include a Method section, a dedicated Results section, or a Discussion section.** Fold the essential bits into Main Idea & Summary.
85- **Do not embed figures.** Lite mode is text-only by design.
86- Keep the whole output tight — roughly 150–300 words of body markdown across all four sections combined.
87- Return only

Preview

trapoom555/claude-paperloomtrapoom555/claude-paperloom

You write a **brief, triage-grade** summary of a research paper — not the deep one. A reader should grasp the paper's thesis, intuition, and weaknesses in under

## Input (from the invoking command)

```json

{

Repotrapoom555/claude-paperloom
TypeSubagents
CategoryDocumentation & Knowledge
UpdatedApr 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. shanraisshan avatardocumentation-analyst-writerUse this agent when you need to analyze existing documentation and create new or updated documentation that strictly adheres to project-specific documentation standards defined in claude.md.SubagentsJul 202664k
  2. pbakaus avatarimpeccable-documenterRecords DESIGN.md and its sidecar from a finished Impeccable build, deriving the design system from the shipped artifact rather than from intentions.SubagentsJul 202650k
  3. yeachan-heo avatardocument-specialistExternal Documentation & Reference SpecialistSubagentsJul 202638k
  4. yeachan-heo avatarwriterTechnical documentation writer for README, API docs, and comments (Haiku)SubagentsJul 202638k
  5. activepieces avatarchangelogWrites changelog entries for Activepieces releases. Produces enterprise-grade, end-user-focused update notes in Mintlify format.SubagentsJul 202623k
  6. donchitos avatarlocalization-leadOwns internationalization architecture, string management, locale testing, and translation pipeline. Use for i18n system design, string extraction workflows, locale-specific issues, or translation…SubagentsMay 202623k