بنقرة واحدة
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.