
Related Work Writing
Draft a rigorous Related Work section that compares—not just cites—prior papers against your problem and method.
Overview
Related Work Writing is an agent skill for the Idea phase that structures academic Related Work sections through thematic compare-and-contrast—not chronological paper summaries.
Install
npx skills add https://github.com/lingzhi227/agent-research-skills --skill related-work-writingWhat is this skill?
- Enforces compare-and-contrast—not catalogue descriptions of cited papers
- Thematic clustering: formulation variants, method families, domains, evaluation, theory
- Per-theme paragraph structure with explicit relation to your problem setting
- Guidance to cite broadly beyond the most popular papers
- Flags when prior methods belong in experiments vs when they are inapplicable
- 5 common thematic clusters for organizing cited papers
- 2-step writing strategy: thematic clustering then per-theme paragraphs
Adoption & trust: 695 installs on skills.sh; 114 GitHub stars; 3/3 security scanners passed (skills.sh audits).
What problem does it solve?
Your draft Related Work reads like a list of what others did, without showing how their assumptions or methods differ from yours.
Who is it for?
Builders writing ML or agent research papers who need defensible literature positioning before experiments and submission.
Skip if: Marketing competitor pages, casual literature notes, or projects with no academic citation requirements.
When should I use this skill?
Drafting or restructuring the Related Work section of a research paper where citations must be compared and contrasted with your problem and method.
What do I get? / Deliverables
You get theme-organized paragraphs that compare prior work to your problem setting and clarify what belongs in experiments versus what you must rule out.
- Themed Related Work outline
- Compare-and-contrast paragraph drafts per theme
- Notes on experimental vs inapplicable baselines
Recommended Skills
Journey fit
Related work is written while framing the research problem and situating your contribution before full implementation or submission. Research subphase covers literature positioning, thematic clustering, and contrast with academic siblings of your work.
How it compares
Use for scholarly Related Work structure—not generic blog SEO or executive competitive intelligence briefs.
Common Questions / FAQ
Who is related-work-writing for?
Solo researchers and indie lab-style builders drafting papers where Related Work must compare methods and assumptions, not merely summarize citations.
When should I use related-work-writing?
Use it in Idea while researching and outlining, before you lock experiments—when you are clustering citations and writing the Related Work section of a manuscript.
Is related-work-writing safe to install?
Check the Security Audits panel on this Prism page; the skill only guides writing structure and does not execute external tools or access secrets.
SKILL.md
READMESKILL.md - Related Work Writing
# Related Work Writing Prompts Reference ## Per-Section Tips (from AI-Scientist + AgentLaboratory) ### Related Work Section Guidelines ``` - Academic siblings of our work, i.e. alternative attempts in literature at trying to solve the same problem. - Goal is to "Compare and contrast" — how does their approach differ in either assumptions or method? - If their method is applicable to our Problem Setting, I expect a comparison in the experimental section. - If not, there needs to be a clear statement why a given method is not applicable. - Note: Just describing what another paper is doing is not enough. We need to compare and contrast. - Organize by theme, not chronologically. - Cite broadly — not just the most popular papers. ``` ## Writing Strategy ### Step 1: Thematic Clustering Organize cited papers into thematic groups. Common themes: 1. **Problem formulation variants** — Different ways the same problem has been formulated 2. **Methodology families** — Groups of methods sharing a core technique (e.g., attention-based, graph-based) 3. **Application domains** — Where similar techniques have been applied 4. **Evaluation approaches** — Different benchmarks or evaluation paradigms 5. **Theoretical foundations** — Relevant theoretical results ### Step 2: Per-Theme Paragraph Structure ``` [Topic sentence introducing the theme] [Key work 1: what they did + how it relates to ours] [Key work 2: what they did + contrast with work 1 and ours] [Key work 3: extension or variation] [Summary: what's missing / our advantage in this theme] ``` ### Step 3: Comparison Patterns **Assumption differences:** ```latex Unlike \citet{smith2023} who assume access to labeled data, our method operates in a fully unsupervised setting. ``` **Methodology differences:** ```latex While \citet{jones2024} employ a two-stage pipeline, our approach integrates feature extraction and classification in an end-to-end manner, avoiding the error propagation inherent in decoupled approaches. ``` **Scope differences:** ```latex \citet{chen2023} address the related problem of X in the context of Y. Our work differs in that we consider the more general setting of Z, which subsumes their formulation as a special case. ``` **Complementary work:** ```latex Complementary to our approach, \citet{wang2024} propose a method for X that could potentially be combined with our framework to further improve performance. ``` ## LaTeX Patterns ### Citation Commands - `\cite{key}` — Parenthetical: (Smith et al., 2024) - `\citet{key}` — Textual: Smith et al. (2024) — preferred for subject position - `\citep{key}` — Same as `\cite` in most styles - `\citeauthor{key}` — Just the name: Smith et al. ### Example Paragraph ```latex \paragraph{Attention Mechanisms.} The seminal work of \citet{vaswani2017attention} introduced the Transformer architecture, which relies entirely on self-attention mechanisms. Subsequent works have sought to reduce the quadratic complexity of attention. \citet{kitaev2020reformer} propose locality-sensitive hashing to approximate attention, while \citet{wang2020linformer} project keys and values to a lower-dimensional space. Unlike these approaches, which sacrifice exact attention computation for efficiency, our method maintains exact attention while achieving sub-quadratic complexity through a novel sparse attention pattern that exploits the inherent structure of the input data. ``` ## Refinement Checklist - [ ] Every cited paper has a clear reason for inclusion - [ ] The section is organized by theme, not chronologically - [ ] Each paragraph compares and contrasts, not just describes - [ ] Our work's novelty is clear from the comparisons - [ ] All `\cite{}` / `\citet{}` keys exist in the `.bib` file - [ ] Recent work (last 2-3 years) is well-represented - [ ] Foundational/seminal papers are included where relevant - [ ] No self-citations that violate anonymization - [ ] The section positions our work clearly at the end --- name: related-work-writ