Article Title Summarizer
This skill provides guidance for synthesizing a list of article titles into a single, coherent summary paragraph.
Purpose
Given a list of article titles, produce one paragraph that captures the dominant themes, trends, and topics across the list — not a mechanical enumeration of titles, but a narrative synthesis a reader could use to understand what the collection covers.
Workflow
- Read all titles in full before writing anything.
- Identify recurring themes, subject clusters, and notable outliers.
- Draft a single paragraph that:
- Opens with the dominant theme or focus area of the collection
- Weaves in secondary themes and notable sub-topics
- Notes any significant patterns (e.g., a trend, a debate, a technology shift)
- Closes with the overall scope or breadth of the collection
- Compile a tags list from the identified themes (2–8 tags, kebab-case, lowercase).
- Review the draft against the rules below before finalizing.
Rules
Structure
- One paragraph only. No bullet points, no headers, no numbered lists in the output.
- 3–6 sentences. Long enough to be informative; short enough to be scannable.
- No title quoting. Do not reproduce article titles verbatim in the paragraph. Paraphrase themes instead.
Tone
- Neutral and descriptive. Do not editorialize or express opinions about the articles.
- Present tense. ("The articles explore...", not "The articles explored...")
- Third person. Do not address the reader directly.
Content
- Synthesize themes — do not list topics mechanically.
- If a strong majority of titles share a single theme, lead with that theme.
- If titles are diverse, open with the unifying thread (domain, audience, era) before listing sub-themes.
- Do not refer to the list of titles as a named collection, edition, or time-bound set (e.g., avoid "this month's articles", "the February collection", "recent AI coverage", "this week's titles"). Refer to the content and themes directly.
- Do not speculate about article content beyond what the titles indicate.
Output Format
The output is a markdown file with YAML frontmatter followed by the summary paragraph:
---
tags:
- ai-governance
- agent-security
- creative-work
---
Coverage spans...
Tags rules
- Derive tags directly from the identified themes — one tag per distinct theme.
- 2–8 tags maximum.
- Kebab-case, lowercase (e.g.,
ai-safety, self-improving-models).
- No generic tags like
ai or technology alone — be specific.
Quality checks (run before finalizing)
1---2name: article-title-summarizer3description: Creates coherent summary paragraphs from lists of article titles. Use when the user provides multiple article titles and requests a summary, overview paragraph, or narrative synthesis of the content themes. Ideal for literature reviews, content aggregation, research summaries, or generating descriptive text from reading lists.4---56# Article Title Summarizer78This skill provides guidance for synthesizing a list of article titles into a single, coherent summary paragraph.910## Purpose1112Given a list of article titles, produce one paragraph that captures the dominant themes, trends, and topics across the list — not a mechanical enumeration of titles, but a narrative synthesis a reader could use to understand what the collection covers.1314## Workflow15161. Read all titles in full before writing anything.172. Identify recurring themes, subject clusters, and notable outliers.183. Draft a single paragraph that:19 - Opens with the dominant theme or focus area of the collection20 - Weaves in secondary themes and notable sub-topics21 - Notes any significant patterns (e.g., a trend, a debate, a technology shift)22 - Closes with the overall scope or breadth of the collection234. Compile a tags list from the identified themes (2–8 tags, kebab-case, lowercase).245. Review the draft against the rules below before finalizing.2526## Rules2728### Structure29- **One paragraph only.** No bullet points, no headers, no numbered lists in the output.30- **3–6 sentences.** Long enough to be informative; short enough to be scannable.31- **No title quoting.** Do not reproduce article titles verbatim in the paragraph. Paraphrase themes instead.3233### Tone34- Neutral and descriptive. Do not editorialize or express opinions about the articles.35- Present tense. ("The articles explore...", not "The articles explored...")36- Third person. Do not address the reader directly.3738### Content39- Synthesize themes — do not list topics mechanically.40- If a strong majority of titles share a single theme, lead with that theme.41- If titles are diverse, open with the unifying thread (domain, audience, era) before listing sub-themes.42- Do not refer to the list of titles as a named collection, edition, or time-bound set (e.g., avoid "this month's articles", "the February collection", "recent AI coverage", "this week's titles"). Refer to the content and themes directly.43- Do not speculate about article content beyond what the titles indicate.4445## Output Format4647The output is a markdown file with YAML frontmatter followed by the summary paragraph:4849```markdown50---51tags:52 - ai-governance53 - agent-security54 - creative-work55---5657Coverage spans...58```5960### Tags rules61- Derive tags directly from the identified themes — one tag per distinct theme.62- 2–8 tags maximum.63- Kebab-case, lowercase (e.g., `ai-safety`, `self-improving-models`).64- No generic tags like `ai` or `technology` alone — be specific.6566## Quality checks (run before finalizing)67- [ ] Does the file start with valid YAML frontmatter containing a `tags` list?68- [ ] Is the body exactly one paragraph?69- [ ] Does it avoid quoting any title verbatim?70- [ ] Does every claim trace back to at least one title in the list?71- [ ] Is the tone neutral (no praise, no criticism)?72- [ ] Is it 3–6 sentences?