Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add aAAaqwq/AGI-Super-Team --skill commit-analyzergit clone --depth 1 https://github.com/aAAaqwq/AGI-Super-TeamWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/aaaaqwq/agi-super-team/commit-analyzer)<a href="https://agentmods.dev/skills/aaaaqwq/agi-super-team/commit-analyzer"><img src="https://agentmods.dev/badge/skills/aaaaqwq/agi-super-team/commit-analyzer.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00023 | $0.00763 |
| Opus 5 | $0.00012 | $0.00381 |
| Sonnet 5 | $0.00005 | $0.00153 |
| Haiku 4.5 | $0.00002 | $0.00076 |
Grade A, and why
commit-analyzer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 119 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Commit Analyzer Skill
Analyzes git commit patterns to monitor autonomous operation health. Uses commit frequency, category distribution, and temporal patterns as diagnostic indicators.
Why This Exists
During my autonomous growth week, I discovered that commit patterns reveal operational health:
- 0-1 commits/hour: Waiting mode (agent stuck or idle)
- 3-6 commits/hour: Healthy autonomous operation
- Learning:Task ratio ~1:1: Good meta-cognition
- Breakthrough days: 6x normal velocity
This skill automates that analysis.
Commands
Health Check (Quick)
./skills/commit-analyzer/analyzer.sh health
Outputs current operational health based on last 24 hours.
Full Report
./skills/commit-analyzer/analyzer.sh report [days]
Comprehensive analysis with hourly breakdown, category distribution, and recommendations. Default: 7 days.
Hourly Breakdown
./skills/commit-analyzer/analyzer.sh hourly [days]
Shows commits by hour of day to identify productive periods.
Category Analysis
./skills/commit-analyzer/analyzer.sh categories [days]
Groups commits by prefix (Queue:, Learning:, Docs:, etc.) to show work distribution.
Waiting Mode Detection
./skills/commit-analyzer/analyzer.sh waiting [hours]
Checks for idle periods where commits dropped below threshold. Default: last 48 hours.
Health Indicators
| Metric | Healthy | Warning | Critical |
|---|---|---|---|
| Commits/hour | 3-6 | 1-3 | <1 |
| Learning commits | 30%+ | 15-30% | <15% |
| Max idle gap | <3h | 3-6h | >6h |
| Daily average | 30+ | 15-30 | <15 |
Integration
Heartbeat Check
Add to HEARTBEAT.md:
## Git Health Check
- Run: ./skills/commit-analyzer/analyzer.sh health
- If unhealthy: Review queue and blockers
- Log: Append result to memory/heartbeat-state.json
Automated Alerts
The script can output JSON for integration with other tools:
./skills/commit-analyzer/analyzer.sh health --json
What ships with it
4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 119 lines · 23 tokens per session scan A a8c4a4cd3ad4
commit-analyzer is a skill published in the GitHub repository aAAaqwq/AGI-Super-Team (91 stars, last pushed 3d ago), licensed MIT. It adds 23 tokens to every session and 763 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.
Other skills, from other repositories
aigon-research-spec-revise
Revise research spec after pending spec reviews — decide and acknowledge in one pass.
create-commit
Create a git commit whose message records why the change exists, not just what changed. Stages only the files that belong to the change, matches the repo's existing commit style, and shows the message and staged files for user approval before committing. Use when asked to commit work or write a commit message.…
work-unit-commits
Plan commits as reviewable work units. Trigger: implementation, commit splitting, chained PRs, or keeping tests and docs with code.
strict-tdd
Strict RED->GREEN->REFACTOR test-driven development with enforcement. Never write production code before a failing test. Atomic commits per TDD cycle.
truecourse-hooks
Install, configure, or remove the TrueCourse pre-commit hook.
memstack-security-git-guard
Use when the user says 'git-guard', 'check git protection', 'is this repo protected', 'verify gitleaks', 'set up git hooks', 'install git-guard', or wants to confirm a repo blocks secrets and internal files before commit. This is an installer and verifier, NOT a scanner (gitleaks does the actual scanning). Do NOT use…