Where Are Gemini CLI Skills Stored?
Gemini CLI stores skills at ~/.gemini/skills/ for personal and .gemini/skills/ for project-level. Path reference and cross-agent compatibility.
Gemini CLI is Google's command-line AI coding agent. It supports the SKILL.md format for customizing agent behavior. Here's where it stores skills and how the directory structure works.
Quick Answer: Gemini CLI stores personal skills at
~/.gemini/skills/and project skills at.gemini/skills/relative to your repo root. The same SKILL.md files that work in Claude Code, OpenClaw, and Codex CLI work in Gemini CLI without modification.
Where does Gemini CLI store personal skills?
Personal skills live at ~/.gemini/skills/. These are available across all your projects.
~/.gemini/skills/
├── code-reviewer/
│ └── SKILL.md
├── test-generator/
│ └── SKILL.md
└── git-commit-writer/
└── SKILL.md
On macOS: /Users/yourname/.gemini/skills/. On Linux: /home/yourname/.gemini/skills/.
Where does Gemini CLI store project skills?
Project skills live at .gemini/skills/ inside a repository. These are shared with anyone who clones the repo, making them useful for team-wide workflows.
your-project/
├── .gemini/
│ └── skills/
│ └── team-review/
│ └── SKILL.md
├── src/
└── package.json
How do I install a skill in Gemini CLI?
# Create the directory
mkdir -p ~/.gemini/skills
# Download from Agensi and unzip
unzip code-reviewer.zip -d ~/.gemini/skills/
# Verify
ls ~/.gemini/skills/code-reviewer/SKILL.md
Start a new Gemini CLI session. Skills load automatically based on their description triggers.
How does Gemini CLI compare to other agents?
All major AI coding agents follow the same pattern — personal and project skill directories with SKILL.md files:
| Agent | Personal skills | Project skills |
|---|---|---|
| Gemini CLI | ~/.gemini/skills/ | .gemini/skills/ |
| Claude Code | ~/.claude/skills/ | .claude/skills/ |
| OpenClaw | ~/.openclaw/skills/ | .openclaw/skills/ |
| Codex CLI | ~/.codex/skills/ | .codex/skills/ |
| Cursor | N/A | .cursor/skills/ |
The SKILL.md file format is identical across all agents. Write a skill once, copy it to any agent's directory, and it works.
Can I share skills between Gemini CLI and other agents?
Yes. Copy the skill folder between agent directories and it works immediately:
# Share a Claude Code skill with Gemini CLI
cp -r ~/.claude/skills/code-reviewer ~/.gemini/skills/
# Share a Gemini CLI skill with OpenClaw
cp -r ~/.gemini/skills/test-generator ~/.openclaw/skills/
No modification needed. This cross-agent compatibility is the core benefit of the SKILL.md open standard.
For the full path reference and more details on skill storage, read Where Are Claude Skills Stored?.
Browse security-scanned skills for Gemini CLI, Claude Code, OpenClaw, and 20+ agents on Agensi.
Frequently Asked Questions
Find the right skill for your workflow
Browse our marketplace of AI agent skills, ready to install in seconds.
BrowseRelated Articles
SKILL.md Cross-Agent Compatibility: Tested Across 6 Agents (2026)
We tested SKILL.md across 6 agents — Claude Code, Cursor, Codex CLI, Gemini CLI, Copilot, and OpenClaw. Compatibility results, quirks, and how to write portable skills.
8 min read
How to Install Skills in Gemini CLI (2026 Guide)
Install SKILL.md skills in Gemini CLI. Directory locations, global vs project skills, and cross-agent compatibility with Claude Code and Codex CLI.
5 min read
Best AI Agent Skills for Documentation (2026)
The best SKILL.md skills for documentation. API docs, READMEs, changelogs, ADRs, and inline code comments across all compatible agents.
5 min read