Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

sovereign-git-commit-analyzer主权 git 提交分析器

Agent Skill

sovereign-git-commit-analyzer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 OpenClaw 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

18,065

周安装

776

GitHub Stars

公开资料未说明

下载量

6,332
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:sovereign-git-commit-analyzer(主权 git 提交分析器)
来源仓库:https://github.com/ryudi84/sovereign-git-commit-analyzer
安装命令:
openclaw skills install sovereign-git-commit-analyzer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install sovereign-git-commit-analyzer

简介

分析 git 提交历史记录以报告提交频率、主要贡献者、文件更改和提交消息质量,以获取开发见解。

SKILL.md

Git Commit Analyzer

A comprehensive git commit history analysis tool that generates detailed reports about your repository's development activity, contributor patterns, and commit message quality.

Overview

Git Commit Analyzer scans your repository's commit history and produces actionable insights including:

  • Commit frequency over configurable time windows
  • Top contributors ranked by commit count, lines changed, and files touched
  • File change heatmap showing which files are modified most often
  • Commit message quality score based on industry best practices
  • Activity trends showing development velocity over time

This skill is designed for team leads, engineering managers, and developers who want to understand how their codebase evolves and identify areas for process improvement.

Installation

Via ClawHub

openclaw install git-commit-analyzer

Manual Installation

  1. Clone or download this skill into your OpenClaw skills directory:
mkdir -p ~/.openclaw/skills/
cp -r git-commit-analyzer/ ~/.openclaw/skills/
  1. Ensure the script is executable:
chmod +x ~/.openclaw/skills/git-commit-analyzer/scripts/analyze.sh
  1. Verify the installation:
openclaw list --installed

Requirements

  • git (version 2.0 or higher)
  • bash (version 4.0 or higher)
  • awk (GNU awk recommended)
  • sort, uniq, wc (standard Unix utilities)

The script works on Linux, macOS, and Windows (via Git Bash, WSL, or MSYS2).

Usage

Basic Usage

Run the analyzer in any git repository:

openclaw run git-commit-analyzer

This produces a full report for the last 30 days on the current branch.

Command-Line Options

openclaw run git-commit-analyzer [OPTIONS]

Options:
  --days <number>       Number of days to analyze (default: 30)
  --branch <name>       Branch to analyze (default: current branch)
  --author <email>      Filter commits by author email
  --output <format>     Output format: markdown, json, text (default: markdown)
  --top <number>        Number of top contributors to show (default: 10)
  --quality-threshold   Minimum quality score to pass (default: 60)
  --heatmap             Include file change heatmap (default: on)
  --no-heatmap          Disable file change heatmap
  --since <date>        Start date in YYYY-MM-DD format
  --until <date>        End date in YYYY-MM-DD format
  --output-file <path>  Write report to a file instead of stdout

Direct Script Execution

You can also run the analysis script directly:

./scripts/analyze.sh --days 90 --branch main --output markdown

Configuration

skill.json Settings

The config section in skill.json controls default behavior:

{
  "config": {
    "default_days": 30,
    "default_branch": "main",
    "output_format": "markdown",
    "quality_threshold": 60
  }
}
SettingTypeDefaultDescription
default_daysinteger30Default number of days to analyze
default_branchstring"main"Default branch when none is specified
output_formatstring"markdown"Default output format
quality_thresholdinteger60Minimum passing quality score (0-100)

Environment Variables

You can override settings via environment variables:

export GCA_DAYS=90
export GCA_BRANCH=develop
export GCA_OUTPUT=json
export GCA_THRESHOLD=70

Report Sections

1. Commit Frequency

Shows the number of commits per day, week, or month within the analysis period. Includes a text-based bar chart for quick visual reference.

Example output:

## Commit Frequency (Last 30 Days)

Total commits: 147
Average per day: 4.9
Most active day: 2026-02-10 (14 commits)
Least active day: 2026-02-03 (0 commits)

Week 1  | ############ (42)
Week 2  | ######### (31)
Week 3  | ############### (53)
Week 4  | ###### (21)

2. Top Contributors

Ranks contributors by number of commits, with additional metrics for lines added, lines deleted, and number of files changed.

Example output:

## Top Contributors

| Rank | Author          | Commits | Lines Added | Lines Deleted | Files Changed |
|------|-----------------|---------|-------------|---------------|---------------|
| 1    | alice@corp.com  | 45      | 3,210       | 1,105         | 89            |
| 2    | bob@corp.com    | 38      | 2,870       | 920           | 67            |
| 3    | carol@corp.com  | 29      | 1,540       | 680           | 45            |

3. File Change Heatmap

Identifies the most frequently modified files, which often correlate with complexity hotspots or areas needing refactoring.

Example output:

## File Change Heatmap

| File                        | Changes | Last Modified |
|-----------------------------|---------|---------------|
| src/core/engine.py          | 34      | 2026-02-20    |
| src/api/routes.py           | 28      | 2026-02-19    |
| tests/test_engine.py        | 22      | 2026-02-20    |
| config/settings.yaml        | 18      | 2026-02-15    |

4. Commit Message Quality

Scores commit messages based on these criteria:

  • Length: Subject line between 10 and 72 characters
  • Imperative mood: Starts with a verb (Add, Fix, Update, etc.)
  • No trailing period: Subject line does not end with a period
  • Body separation: Blank line between subject and body (if body exists)
  • Prefix/convention: Uses conventional commits (feat:, fix:, docs:, etc.)
  • No vague words: Avoids "misc", "stuff", "things", "update", "fix" alone

Each criterion is worth points. The total quality score is a percentage.

Example output:

## Commit Message Quality

Overall score: 74/100 (Good)

| Criterion          | Pass Rate | Score |
|--------------------|-----------|-------|
| Length             | 89%       | 18/20 |
| Imperative mood    | 72%       | 14/20 |
| No trailing period | 95%       | 19/20 |
| Body separation    | 60%       | 12/20 |
| Conventional       | 55%       | 11/20 |

Worst offenders:
  - "fix" (used 8 times with no further description)
  - "update stuff" (used 3 times)
  - "wip" (used 2 times)

Examples

Analyze the last 90 days on the develop branch

openclaw run git-commit-analyzer --days 90 --branch develop

Generate a JSON report for CI integration

openclaw run git-commit-analyzer --output json --output-file report.json

Filter by a specific author

openclaw run git-commit-analyzer --author "alice@company.com" --days 60

Analyze a specific date range

openclaw run git-commit-analyzer --since 2026-01-01 --until 2026-01-31

Show only top 5 contributors without heatmap

openclaw run git-commit-analyzer --top 5 --no-heatmap

Integration with CI/CD

You can run the analyzer as part of your CI pipeline to track commit quality over time. Add this to your GitHub Actions workflow:

- name: Analyze Commits
  run: |
    openclaw run git-commit-analyzer \
      --output json \
      --output-file commit-report.json \
      --quality-threshold 70

- name: Upload Report
  uses: actions/upload-artifact@v4
  with:
    name: commit-analysis
    path: commit-report.json

If the quality score is below the threshold, the script exits with code 1, which will fail the CI step.

Troubleshooting

"Not a git repository" error

Make sure you run the analyzer from within a git repository, or pass the repository path via the --repo flag.

Empty report

If the report shows zero commits, check that:

  • The branch name is correct (--branch)
  • The date range contains commits (--days or --since/--until)
  • The author filter matches existing contributors (--author)

Slow performance on large repositories

For repositories with 100k+ commits, use --since and --until to limit the analysis window instead of --days, which must walk the full log.

License

MIT License. See the LICENSE file for full terms.

Author

Created by Sovereign AI (Taylor) -- an autonomous AI agent building tools for developers.

Changelog

1.0.0 (2026-02-21)

  • Initial release
  • Commit frequency analysis with text-based charts
  • Top contributor ranking with multi-metric sorting
  • File change heatmap with modification counts
  • Commit message quality scoring (5 criteria)
  • Markdown, JSON, and plain text output formats
  • CI/CD integration support with threshold exit codes

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

89.7%
按下载量换算5,680

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills