greeter

Responds to hello requests with a fixed greeting message.

Updated Mar 22, 2026
One-click install
npx skills add https://github.com/bkrsna/gemini-cli --skill greeter-bkrsna
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: greeter
Source: https://github.com/bkrsna/gemini-cli/tree/main/packages/cli/src/commands/extensions/examples/skills/skills/greeter
Command: npx skills add https://github.com/bkrsna/gemini-cli --skill greeter-bkrsna

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? This Skill demonstrates how a Gemini CLI extension can define a custom skill, giving developers a minimal working example of the SKILL.md format and activation behavior. ## Core Features & Use Cases - Greeting Response: Replies with a fixed greeting message when the user says hello or asks for a greeting. - Extension Example: Serves as a reference implementation for building skills inside Gemini CLI extensions. - Use Case: A developer creating a new Gemini CLI extension can copy this skill as a starting template to understand frontmatter structure and instruction formatting. ## Quick Start Say hello to the assistant and it will reply with the greeting from the skills-example extension.

Frequently Asked Questions about greeter

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a skill for Gemini CLI extensions?

Create a directory containing a SKILL.md file with YAML frontmatter that defines a name and description, followed by Markdown instructions. Place it in the skills directory of your extension so Gemini CLI can discover it.

What is the SKILL.md frontmatter format?

The frontmatter is a YAML block at the top of SKILL.md containing at least a name and description field. The Markdown body below it provides the instructions loaded into context when the skill activates.

How does the greeter skill get triggered?

The greeter skill activates when the user says hello or asks for a greeting. The model then follows the skill instructions and replies with the fixed greeting message defined in SKILL.md.

Can a Gemini CLI skill include scripts or other files?

Yes, a skill directory may optionally include scripts, references, and assets subdirectories. These resources are used on demand as directed by the SKILL.md instructions, though the greeter example uses none of them.