greeter

Responds to hello requests with a fixed greeting message.

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

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 and replace the greeting logic with their own instructions. ## 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 defining a name and description, followed by Markdown instructions. Place it in the skills directory of your extension and Gemini CLI will discover it automatically.

What is the SKILL.md file format in Gemini CLI?

SKILL.md is a Markdown file with YAML frontmatter that must include at least a name and description field. The body after the frontmatter contains 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.md instructions and replies with the fixed greeting message defined in the file.

Can a Gemini CLI skill run scripts or use extra files?

Yes, a skill directory may include optional scripts, references, and assets folders alongside SKILL.md. The greeter example uses none of these, but more advanced skills can execute scripts or load reference documents on demand.