一键导入
git-summarize
Summarize git history into changelogs, release notes, or activity reports. Analyzes commits, diffs, and branch history.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Summarize git history into changelogs, release notes, or activity reports. Analyzes commits, diffs, and branch history.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Handle typos and variations in brand/product names to discover correct terminology and find relevant information
Automated code review — analyzes source files for bugs, security issues, style violations, and improvement suggestions. Use when asked to review code, check quality, or find problems in files.
Intelligent debugging assistant — analyzes error messages, stack traces, logs, and runtime behavior to identify root causes and suggest fixes.
Generate documentation from source code — creates README, API docs, module summaries, and inline documentation. Use when asked to document code, generate docs, or explain a codebase.
Excel-based student grade analysis with percentage conversion, distribution charts, and detailed performance breakdown
Validate environment variables, dependencies, and system requirements. Diagnose missing configs, version mismatches, and setup issues.
| name | git-summarize |
| description | Summarize git history into changelogs, release notes, or activity reports. Analyzes commits, diffs, and branch history. |
Analyze git repository history and generate human-readable summaries — changelogs, release notes, contributor reports, and activity overviews.
run_shell with git commandswrite_file if saving to file# Last 20 commits, one line each
git log --oneline -20
# With dates and authors
git log --format="%h %ad %an: %s" --date=short -20
# Since a date
git log --since="2025-01-01" --oneline
# Since a tag
git log v1.0.0..HEAD --oneline
# Changes between two tags
git log v1.0.0..v2.0.0 --oneline
# Changes between branches
git log main..feature-branch --oneline
# With full diff stats
git diff --stat v1.0.0..v2.0.0
# Files changed in last 10 commits
git diff --name-only HEAD~10..HEAD
# Files changed between versions
git diff --name-status v1.0.0..v2.0.0
# Author summary
git shortlog -sn --since="2025-01-01"
# Commits per author this month
git log --since="1 month ago" --format="%an" | sort | uniq -c | sort -rn
# Changelog
## [v2.0.0] - 2025-05-21
### Added
- New PDF preview in output panel
- Chunked PDF reading for agents
### Fixed
- Context overflow when reading large files
- Version display showing old version
### Changed
- Improved error detection for API limits
# Release Notes — v2.0.0
This release adds PDF preview support and improves stability when working
with large files.
**Highlights:**
- PDF files now render as visual page previews in the output panel
- Agents can read PDFs in chunks, preventing context overflow
- Better error recovery for API rate limits
# Weekly Activity Report (May 15-21, 2025)
**Commits:** 12
**Contributors:** 3
**Files changed:** 28
**Summary:**
- Major: PDF rendering feature added
- Bug fixes: context overflow, version display
- Refactoring: compact.rs error detection
Automatically categorize commits by prefix or content:
feat: / add / new → Addedfix: / bug / patch → Fixedrefactor: / clean → Changeddocs: / readme → Documentationtest: / spec → Testingchore: / ci: / build: → Maintenanceperf: / optimize → PerformanceBREAKING → Breaking Changes