greeter

Responds to hello requests with a fixed greeting message.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? This Skill demonstrates how a Gemini CLI extension can define a custom conversational behavior, giving developers a minimal working example of the skills format. ## Core Features & Use Cases - Trigger-based response: Detects when the user says "hello" or asks for a greeting and replies with a fixed message. - Extension example: Serves as a reference implementation for authors building their own Gemini CLI extension skills. - Use Case: A developer creating a new extension can copy this Skill as a starting template to verify that skill discovery and activation work correctly. ## 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 a Gemini CLI extension?

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

What is the required format of a SKILL.md file?

A SKILL.md file must start with YAML frontmatter containing at least a name and description field. The markdown body after the frontmatter provides the instructions loaded into context when the skill activates.

How does the greeter skill respond to users?

When the user says hello or asks for a greeting, the skill instructs the assistant to reply with the fixed message "Greetings from the skills-example extension!". It has no other behaviors or configuration options.

Can I customize the greeting message in this skill?

Yes, edit the markdown body of SKILL.md and change the quoted reply text to any message you want. The skill contains no scripts or logic, so the instruction text fully controls the response.