Agent skill · Content & Marketing

key-takeaways

Extracts and summarizes key takeaways from documents, meeting notes, articles, and other text content. Use when the user asks for summaries, bullet points, main points, highlights, or a TL;DR of any document or body of text. Produces structured outputs such as numbered lists, executive summaries, and action items. Supports configurable output formats including JSON export for downstream use.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill key-takeaways --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Version: 1.0
Allowed tools: ReadWriteBashEdit
Path: skills/analysis/key-takeaways/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Key Takeaways Extracts and presents the most important points from any body of text — meeting notes, articles, reports, or documents — as concise, structured takeaways. Supports multiple output formats and is configurable for audience or depth. ## Quick Start ```python from scripts.main import Key_Takeaways # Initialize tool = Key_Takeaways() # Extract key takeaways from a document result = tool.process("meeting_notes.txt") # Export as structured JSON tool.export(result, format="json") ``` ## Core Capabilities ### 1. Extract key points from text ```python # Read source document and extract top takeaways result = tool.process("quarterly_report.txt") # Returns: [{"point": "Revenue grew 12% YoY", "source_line": 4}, ...] ``` ### 2. Generate structured summaries ```python # Generate a bullet-point executive summary result = tool.process("meeting_notes.txt", style="executive") # Returns: {"summary": "...", "action_items": [...], "decisions": [...]} ``` ### 3. Configure output depth and audience ```python # Adjust number of takeaways and target audience result = tool.process("article.txt", max_points=5, audience="non-technical") ``` ### 4. Export results ```python # Export takeaways to

What's inside
Steps it walks through
  1. Quick Start
  2. Core Capabilities
  3. 1. Extract key points from text
  4. 2. Generate structured summaries
  5. 3. Configure output depth and audience
  6. 4. Export results
  7. CLI Usage
  8. Example Input / Output
  9. Quality Checklist
  10. References
Ships with 1 file
  • metadata.json
Commands it runs
Extract key takeaways from a file
python scripts/main.py --input document.txt --output takeaways.txt
Use a config file to set depth, audience, and format
python scripts/main.py --input document.txt --config config.json --verbose
Batch process a directory of documents
python scripts/main.py --batch input_dir/ --output output_dir/
More from claude-skill-registry
All skills →
About this skill
What does the key-takeaways skill do?

Extracts and summarizes key takeaways from documents, meeting notes, articles, and other text content. Use when the user asks for summaries, bullet points, main points, highlights, or a TL;DR of any document or body of text. Produces structured outputs such as numbered lists, executive summaries, and action items. Supports configurable output formats including JSON export for downstream use.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill key-takeaways --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going