원클릭으로
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.