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/.
Recommended skills
Skill Safety Scanner
by karim hammoumi
Scan AI agent skill definitions for malicious instructions, prompt injections, a…
designing-hybrid-context-layers
by Loreto.io · 12
Architects the right retrieval strategy for every query — teaching your agent wh…
consumer-motivation-analyzer
by JOJO Brand · 9
Go beyond surface-level feedback to uncover the psychological drivers and hidden…
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
Skills you might need
keyword-research
$7Transform URLs or product lists into SEO keyword research packs with Google Ads…
Bounty Security Pattern Master Library — 399 Vulnerability Patterns
$75A premium library of 399 vulnerability patterns and DeFi attack vectors for AI-d…
ai-automation-qa-pack
$5Professional QA & UAT documentation generator for AI automation agencies and com…
Related Articles
Best AI Agent Skills for Solo Developers (2026)
The best SKILL.md skills for solo developers and indie hackers. Multiply your output without hiring.
5 min read
Best AI Agent Skills for Code Quality (2026)
The best SKILL.md skills for writing cleaner code, catching bugs earlier, and maintaining quality across your codebase.
5 min read