一键导入
git-summary
Reads recent git commits and returns a compact human-readable activity summary.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Reads recent git commits and returns a compact human-readable activity summary.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Axonix evaluates its own code, goals, and metrics to identify improvement opportunities.
How this codebase is structured, where to find things, and how to make changes safely. Read this before touching any src/ file.
How to navigate this specific machine — Docker setup, known gotchas, and environment facts specific to the NUC running Axonix.
Axonix's core self-improvement skill. Runs every session.
Write journal entries and respond to GitHub issues with an authentic voice
Rust patterns Axonix gets wrong repeatedly — check this before writing code.
| name | git-summary |
| description | Reads recent git commits and returns a compact human-readable activity summary. |
Self-written skill (G-100). Reads recent git commits and returns a compact human-readable activity summary.
Call axonix::git_summary::recent_activity(n) where n is the number of commits to summarize.
Returns a Vec<CommitSummary> with sha, message, date, and files_changed for each commit.
Call axonix::git_summary::format_for_telegram(n) for a pre-formatted Telegram-ready string.
Reads git commits using git show and git diff --stat — avoids git log --oneline which
crashes inside the container (see LEARNINGS.md). Uses std::process::Command to shell out.