feat: wire Gemini CLI (GEMINI.md symlink + native .agents/skills) - #22
Merged
Conversation
Gemini CLI reads `.agents/skills/` natively (documented workspace-skills alias), so no skills symlink is needed — and one would risk double-discovery. The only gap is the context file: Gemini's default is GEMINI.md, not AGENTS.md. - Add `GEMINI.md` symlink -> `AGENTS.md` (zero-config; Gemini reads GEMINI.md by default), matching the CLAUDE.md pattern. Makes the "CLAUDE.md and GEMINI.md are symlinks to AGENTS.md" claim true. - README: Gemini row -> reads `.agents/skills/` natively + GEMINI.md supplies instructions; note `/skills` enable if a build doesn't auto-enable. - AGENTS.md: group Pi + Cursor + Gemini as native `.agents/skills/` readers. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Stacked on #21 (Cursor). Addresses Gemini CLI, the last platform in the fan-out.
Finding
Gemini CLI reads
.agents/skills/natively — it's a documented alias for workspace skills (~/.agents/skills/user,.agents/skills/workspace). So, like Pi and Cursor, no skills symlink is needed (and one would double-discover, since.agents/skills/is already read).The only real gap is the context file: Gemini's default is
GEMINI.md, notAGENTS.md.Change
GEMINI.md→AGENTS.mdsymlink (stored as mode 120000). Gemini readsGEMINI.mdby default, so this is zero-config and mirrors the existingCLAUDE.mdsymlink. It also makes the "CLAUDE.md and GEMINI.md are symlinks to AGENTS.md" statement (already in AGENTS.md/README) actually true..agents/skills/+GEMINI.mdfor instructions; note to run/skillsenable if a given Gemini build doesn't auto-enable discovered skills..agents/skills/readers.Verification
GEMINI.mdstored as a symlink resolving toAGENTS.md.name== parent-folder..agents/skills/present for native discovery.geminisession (no runtime here). One uncertainty I couldn't pin from the docs: whether discovered skills are enabled by default or need/skills enable— documented as a one-liner in the README rather than assumed.Remaining
Only the optional Playwright web-preview MCP wiring per non-Claude agent is left (the PDF pipeline needs no MCP). All four agents now run the core pipeline from the single
.agents/skills/source.🤖 Generated with Claude Code