Conversation
- Deleted obsolete skill documentation files for /commit, /debug, /memory, /plan, /pr, /review, and /vibe-audit to streamline the codebase and eliminate redundancy.
…ples - Add "Getting started in 60 seconds" section at top of both READMEs - Link each skill/agent name to its source file in the repo - Add "Real output examples" section with collapsible blocks per skill Closes #5 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
|
||
| ## Real output examples | ||
|
|
||
| <details> |
There was a problem hiding this comment.
The examples are hidden behind collapsed blocks by default. Issue #5 states the problem as "new users have no visual reference and may not understand the value before trying it" — but a visitor skimming the page sees only five opaque <summary> labels unless they expand each one.
Consider showing at least the first example inline (the shortest one), and keeping the rest collapsed. Alternatively, link to a dedicated examples page to avoid cluttering the main README while still surfacing the content on first scan.
|
Important AI-generated review. This review was produced automatically by Claude Code (Anthropic). It may miss context or make mistakes — always apply your own judgment before acting on suggestions. Pull request overview Changes:
Caution Two issues below will break the installer and CI. This PR should not merge until they are resolved. CRITICAL —
|
Objective
The
/ak:commitskill was failing or producing malformed commit messages when staged files included binary assets (images, fonts, compiled files). Without explicit handling, the model had no file names or semantic context when all staged content showed only asBinary files a/... and b/... differ.Bug Fixes
git diff --staged --name-statusto the skill context so binary file names and statuses are always available, even when diff content is absent--name-statusoutput to describe binary files and never omit them from the commit messageantigravity-skills/commit/SKILL.mdfor Google Antigravity / Gemini usersskills/commit/SKILL.mdin the new frontmatter format (ak:commit,disable-model-invocation,allowed-tools) so the CLI installer can pick it up againTests
evals/fixtures/sample-diffs/chore-add-assets.diff— a realistic diff with two binary files (logo.png,inter.woff2) and a text changeevals/skills/commit.eval.jswith an extra rubric criterion verifying binary filenames are not silently dropped from the messagerunCommitEvalto acceptextraCriteriaso individual test cases can inject additional rubric checksRelated
#2