Agent skill · Design & Presentation

agent-ops-git-story

Generate narrative summaries from git history for onboarding, retrospectives, changelogs, and exploration. LLM-enhanced when available, works without LLM too.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill agent-ops-git-story --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Path: skills/analysis/agent-ops-git-story/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

# Git Story Skill Generate human-readable narratives from git commit history. Useful for: - **Onboarding** — Help new team members understand project evolution - **Retrospectives** — Create sprint/milestone summaries - **Changelogs** — Generate release notes from commits - **Exploration** — Understand "what happened here?" for any period ## Requirements - **Git**: Must be installed locally and available on PATH - **LLM**: Optional — enhanced narratives when available, templated output without ## Data Extraction **Works with or without `aoc` CLI installed.** Story generation uses raw `git log` commands by default. ### Git Commands (Default) | Operation | Command | |---------|---------| | Recent commits | `git log --oneline -N` | | Date range | `git log --since="YYYY-MM-DD" --until="YYYY-MM-DD"` | | By author | `git log --author="name"` | | Detailed | `git log --stat --since="YYYY-MM-DD"` | | JSON-like | `git log --format="%H|%an|%ad|%s" --date=short` | ### CLI Integration (when aoc is available) When `aoc` CLI is detected in `.agent/tools.json`, enhanced commands are available: | Command | Description | |---------|-------------| | `aoc git story` | Generate narrative from commits |

What's inside
Steps it walks through
  1. Requirements
  2. Data Extraction
  3. Git Commands (Default)
  4. CLI Integration (when aoc is available)
  5. Story Command Options (CLI)
  6. Examples
  7. Agent Workflow
  8. 1. Gather Requirements
  9. 2. Extract Data
  10. 3. Enhance with LLM (Optional)
  11. 4. Without LLM
  12. Output Formats
  13. Narrative (default)
  14. Changelog
Ships with 1 file
  • metadata.json
Commands it runs
aoc git story [OPTIONS]
Last 30 days of activity
aoc git story --since 2026-01-01
Generate changelog format
aoc git story --last 50 --format changelog
Filter by author, group by type
aoc git story --author "John Doe" --group type
Export to file
aoc git story --last 100 --output story.md
Quick stats
More from claude-skill-registry
All skills →
About this skill
What does the agent-ops-git-story skill do?

Generate narrative summaries from git history for onboarding, retrospectives, changelogs, and exploration. LLM-enhanced when available, works without LLM too.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill agent-ops-git-story --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