analyze_current
Read and understand the current baseline implementation. Extract all relevant information about the existing approach without modifying anything, and record…
Summarize documents, articles, conversations, code, and technical content into concise, accurate summaries. Use when user asks to summarize, condense, create a TL;DR, write an executive summary, extract key points, or distill content. Trigger when user says things like
$ npx -y skills add Upsonic/Upsonic --skill summarization --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/summarizationContext preview
The summary Claude sees to decide when to auto-load this skill.
Summarize documents, articles, conversations, code, and technical content into concise, accurate summaries. Use when user asks to summarize, condense, create a TL;DR, write an executive summary, extract key points, or distill content. Trigger when user says things like
name: summarization description: Summarize documents, articles, conversations, code, and technical content into concise, accurate summaries. Use when user asks to summarize, condense, create a TL;DR, write an executive summary, extract key points, or distill content. Trigger when user says things like "summarize this", "give me the key points", "TL;DR", "what are the main takeaways", "condense this", "brief me on this", or provides long content asking for a shorter version. Also trigger for meeting notes summaries, research paper abstracts, and changelog summaries. Do NOT trigger for rewriting or paraphrasing at similar length, translation, or content generation from scratch. metadata: version: "2.0.0" author: Upsonic tags: [writing, analysis, content, documents]
Produce concise, accurate summaries that capture what matters. A good summary saves the reader time while preserving the information they need to make decisions or take action.
Understand the context:
1. **What type of content is this?** (Business doc, technical spec, conversation, research paper, code) 2. **Who is the audience?** (Executive, engineer, general reader) 3. **What's the purpose?** (Decision-making, catch-up, reference, sharing) 4. **How long should the summary be?** (If not specified, scale to content complexity — not just length)
These determine which approach to use and what to emphasize.
Choose the approach that matches the content type:
For business documents, reports, proposals, and strategy decks.
**Structure:** 1. **Bottom line first**: Lead with the key decision, recommendation, or conclusion 2. **Critical metrics**: Include the 2-4 numbers that matter most (revenue, timeline, cost, impact) 3. **Key findings**: 3-5 bullet points covering what was discovered or decided 4. **Risks and concerns**: What could go wrong, what's uncertain 5. **Next steps**: Who does what by when
**Example pattern:**
**Recommendation:** [One sentence with the core decision] **Key metrics:** [2-4 data points] **Findings:** - [Most important finding] - [Second most important] - [Third] **Risks:** [1-2 key risks] **Next steps:** [Action items with owners and deadlines]
**Guidelines for executive summaries:**
For technical documents, architecture docs, RFCs, code reviews, and documentation.
**Structure:** 1. **Purpose**: What problem does this solve? Why does it exist? 2. **Approach**: How does it work at a high level? 3. **Key decisions**: What technical choices were made and why? 4. **Dependencies**: What does this rely on? What relies on it? 5. **Trade-offs**: What was gained and what was sacrificed? 6. **Limitations**: Known issues, constraints, or gaps 7. **Open questions**: Unresolved decisions or areas needing further work
**Guidelines for technical summaries:**
For research papers, studies, whitepapers, and analytical reports.
**Structure:** 1. **Research question**: What was being investigated? 2. **Methodology**: How was the study conducted? (brief) 3. **Key findings**: The 3-5 most important results 4. **Significance**: Why do these findings matter? 5. **Limitations**: What the study doesn't cover or can't prove 6. **Implications**: What should change based on these findings?
**Guidelines for research summaries:**
For meeting notes, chat logs, email threads, and discussions.
**Structure:** 1. **Decisions made**: What was agreed upon (be specific) 2. **Action items**: Who is doing what by when 3. **Key discussion points**: The main topics debated 4. **Disagreements**: Where people differed and how it was resolved (or wasn't) 5. **Open questions**: What still needs to be decided 6. **Parking lot**: Topics raised but deferred
**Guidelines for conversation summaries:**
For code diffs, pull requests, release notes, and changelogs.
**Structure:** 1. **What changed**: High-level description of the changes 2. **Why**: The motivation (bug fix, feature, refactor, performance) 3. **Impact**: What users/developers will notice 4. **Breaking changes**: Anything that requires migration or adaptation 5. **Notable details**: Interesting implementation choices or caveats
**Guidelines for code summaries:**
Read and understand the current baseline implementation. Extract all relevant information about the existing approach without modifying anything, and record…
Define the comparison metrics and extract baseline values from the current implementation. Record them as a structured JSON entry so downstream phases and…
Compare baseline and new implementation results. Produce the machine-readable final report `result.json`, update `experiments.json`, and append a row to…
Set up and manage the experiment folder structure. This is Phase 0 — it runs before any analysis begins. All bookkeeping files are JSON (never markdown).
Create a new Jupyter notebook implementing the method from the research paper, using the same data as the baseline. Record implementation details and measured…