4.7 KiB
Get started with Agent Skills
Agent Skills extend Gemini CLI with specialized expertise. In this guide, you'll learn how to create your first skill, bundle custom scripts, and activate them during a session.
How to create a skill
A skill is defined by a directory containing a SKILL.md file. Let's create an
API Auditor skill that helps you verify if local or remote endpoints are
responding correctly.
Create the directory structure
-
Run the following command to create the folders:
macOS/Linux
mkdir -p .gemini/skills/api-auditor/scriptsWindows (PowerShell)
New-Item -ItemType Directory -Force -Path ".gemini\skills\api-auditor\scripts"
Create the definition
-
Create a file at
.gemini/skills/api-auditor/SKILL.md. This tells the agent when to use the skill and how to behave.--- name: api-auditor description: Expertise in auditing and testing API endpoints. Use when the user asks to "check", "test", or "audit" a URL or API. --- # API Auditor Instructions You act as a QA engineer specialized in API reliability. When this skill is active, you MUST: 1. **Audit**: Use the bundled `scripts/audit.js` utility to check the status of the provided URL. 2. **Report**: Analyze the output (status codes, latency) and explain any failures in plain English. 3. **Secure**: Remind the user if they are testing a sensitive endpoint without an `https://` protocol.
Add the tool logic
Skills can bundle resources like scripts.
-
Create a file at
.gemini/skills/api-auditor/scripts/audit.js. This is the code the agent will run.// .gemini/skills/api-auditor/scripts/audit.js const url = process.argv[2]; if (!url) { console.error('Usage: node audit.js <url>'); process.exit(1); } console.log(`Auditing ${url}...`); fetch(url, { method: 'HEAD' }) .then((r) => console.log(`Result: Success (Status ${r.status})`)) .catch((e) => console.error(`Result: Failed (${e.message})`));
How to verify discovery
Gemini CLI automatically discovers skills in the .gemini/skills directory. You
can also use .agents/skills as a more generic alternative. Check that it found
your new skill.
Command: /skills list
You should see api-auditor in the list of available skills.
If your skill doesn't appear
If /skills list doesn't show your skill, check the following:
- The folder must be trusted (workspace skills only). Skills under
<workspace>/.gemini/skills/are only loaded when the workspace folder is marked as trusted. Run/trustand restart the session if needed. Skills under~/.gemini/skills/(user scope) are not affected by trust. - Check the path layout.
SKILL.mdis discovered either at the root of the skills directory (.gemini/skills/SKILL.md) or one directory deep (.gemini/skills/<skill-name>/SKILL.md). The recommended layout uses a subdirectory per skill so you can bundle scripts and other resources alongside it. Files nested more than one directory deep are not discovered. - The filename must be exactly
SKILL.md. Capitalization matters on case-sensitive filesystems (Linux, and macOS when configured as such):skill.mdorSkill.mdwill be ignored. - Frontmatter must include both
name:anddescription:, and must be the first thing in the file. ASKILL.mdis silently skipped if either field is missing, if the delimiters (---on their own lines) are absent, or if any text (an H1 title, a comment, even a blank line) appears before the opening---. - The skill name comes from the
name:field, not the directory name. If your frontmatter saysname: foo, the skill appears asfooin/skills listregardless of what its parent directory is called. The characters: \ / < > * ? " |in the name are replaced with-.
How to use the skill
Now, try it out. Start a new session and ask a question that triggers the skill's description.
User: "Can you audit http://geminicli.com"
Gemini recognizes the request matches the api-auditor description and asks for
permission to activate it.
Model: (After calling activate_skill) "I've activated the api-auditor
skill. I'll run the audit script now..."
Gemini then uses the run_shell_command tool to execute your bundled Node
script:
node .gemini/skills/api-auditor/scripts/audit.js http://geminili.com
Next steps
- Explore the Agent Skills Authoring Guide to learn about more advanced features.
- Learn how to share skills via Extensions.