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.
Gemini CLI supports SKILL.md skills for customizing its behavior. If you've already used skills with Claude Code or Codex CLI, the process is familiar — drop SKILL.md files into the right directory and Gemini CLI picks them up automatically.
Quick Answer: To install skills in Gemini CLI, place
SKILL.mdfiles (and any supporting files) into either the project-specific.gemini/skills/directory or the global~/.gemini/skills/directory in your home folder. You can download skills from Agensi, clone them from GitHub, or create them manually.
Where Gemini CLI looks for skills
Gemini CLI checks two locations for skills:
Project skills: .gemini/skills/ in your project root. These skills only activate when you're working in that specific project. Use project skills for framework-specific conventions, team standards, and project-specific patterns.
Global skills: ~/.gemini/skills/ in your home directory. These skills activate for every project. Use global skills for personal coding preferences, language-specific patterns, and tools you use everywhere.
Project skills take precedence over global skills when there's a conflict.
Recommended skills
designing-hybrid-context-layers
by https://loreto.io · 16
Architects the right retrieval strategy for every query — teaching your agent wh…
ai-automation-qa-pack
by Roy Yuen · 10
Professional QA & UAT documentation generator for AI automation agencies and com…
Bounty Security Pattern Master Library — 399 Vulnerability Patterns
by Atlas Agent Suite · 9
A premium library of 399 vulnerability patterns and DeFi attack vectors for AI-d…
Installing a skill
From Agensi
Browse Agensi and download a skill. Unzip it into your skills directory:
# Project-level
mkdir -p .gemini/skills/code-reviewer
unzip code-reviewer.zip -d .gemini/skills/code-reviewer/
# Global
mkdir -p ~/.gemini/skills/code-reviewer
unzip code-reviewer.zip -d ~/.gemini/skills/code-reviewer/
The key file is SKILL.md — Gemini CLI reads this to understand what the skill does and when to activate it.
From GitHub
Clone or download the skill repository and copy the SKILL.md file (and any supporting files) into your skills directory:
git clone https://github.com/user/skill-name.git /tmp/skill-name
cp -r /tmp/skill-name/. .gemini/skills/skill-name/
Manual creation
Create a SKILL.md file directly in your skills directory. The file needs YAML frontmatter with at minimum a name and description, followed by markdown instructions. See how to create a SKILL.md from scratch.
Cross-agent compatibility
SKILL.md is an open standard. A skill installed in Gemini CLI works the same way in Claude Code (~/.claude/skills/), Codex CLI, Cursor, and every other compatible agent. The only difference is the directory path.
If you use multiple agents, install the same skills in each agent's directory. The behavior will be consistent across all of them.
Verifying installation
After adding a skill, start a new Gemini CLI session and ask it to do something the skill covers. If the skill is a code review skill, ask for a code review. If it's activating correctly, the output will follow the patterns defined in the skill's instructions.
If a skill isn't loading, check that the SKILL.md file is in the correct directory, the frontmatter has a valid description field (this is what triggers activation), and there are no YAML syntax errors in the frontmatter.
For more Gemini CLI setup details, see Where Are Gemini CLI Skills Stored?.
Frequently Asked Questions
Skills you might need
cinematic-sites
$12Turn any basic business URL into a high-end cinematic landing page with AI-gener…
Multi-Agent Orchestration Master Library
$35Transform Claude Code into a coordinated multi-agent system. Battle-tested tmux…
keyword-research
$7Transform URLs or product lists into SEO keyword research packs with Google Ads…
Related Articles
Best Gemini CLI Skills in 2026: Compatible SKILL.md Skills That Work
The best SKILL.md skills for Google's Gemini CLI. Tested, security-scanned, and ready to install.
5 min read
Best Aider Skills in 2026: SKILL.md Skills for Aider
The best SKILL.md skills compatible with Aider, the open-source AI pair programming tool.
4 min read