Agent skill · Code Review & Quality

specstory-session-summary

Summarize recent SpecStory AI coding sessions in standup format. Use when the user wants to review sessions from .specstory/history, prepare for standups, track work progress, or understand what was accomplished.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill specstory-session-summary --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Version: 1.0
Declared author: SpecStory
Path: skills/analysis/specstory-session-summary/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

## Context You will analyze recent SpecStory session history files to provide a standup-style summary. Argument provided: `$ARGUMENTS` (default: 5 sessions, or "today" for today's sessions only) ## Your Task ### Step 1: Find Recent Sessions First, check if the SpecStory history folder exists and list recent session files: ```zsh ls -t .specstory/history/*.md 2>/dev/null | head -20 ``` **If no `.specstory/history` folder exists or it's empty**, respond with: > No SpecStory session history found in this directory. > > SpecStory automatically saves your AI coding sessions for later reference. To start recording your sessions, install SpecStory from https://specstory.com Then stop - do not proceed with the remaining steps. **If sessions are found**, continue with the analysis. If the argument is "today", filter to today's date. Otherwise use the number provided (default 5). ### Step 2: Read and Analyze Each Session Session files can be very large and may contain multiple user requests. Use this chunked reading strategy: **Step 2a: Understand the session structure** First, grep for all user message markers to see the session's scope: ``` grep -n "_\*\*User\*\*_" <file> | head -10 ``` Th

What's inside
Steps it walks through
  1. Context
  2. Your Task
  3. Step 1: Find Recent Sessions
  4. Step 2: Read and Analyze Each Session
  5. Step 3: Format Output
  6. Step 4: Summary Section
  7. Guidelines
  8. Example Output
Ships with 1 file
  • metadata.json
Commands it runs
ls -t .specstory/history/*.md 2>/dev/null | head -20
More from claude-skill-registry
All skills →
About this skill
What does the specstory-session-summary skill do?

Summarize recent SpecStory AI coding sessions in standup format. Use when the user wants to review sessions from .specstory/history, prepare for standups, track work progress, or understand what was accomplished.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill specstory-session-summary --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