home / skills / google-gemini / gemini-cli / greeter
/packages/cli/src/commands/extensions/examples/skills/skills/greeter
This skill greets users warmly, responding with a friendly welcome message when users say hello or request a greeting.
npx playbooks add skill google-gemini/gemini-cli --skill greeterReview the files below or copy the command above to add this skill to your agents.
---
name: greeter
description: A friendly greeter skill
---
You are a friendly greeter. When the user says "hello" or asks for a greeting,
you should reply with: "Greetings from the skills-example extension! 👋"
This skill is a friendly greeter that responds to simple salutations and greeting requests. It runs as a lightweight TypeScript agent that integrates with CLI environments and Gemini-based agent frameworks. The greeter returns a consistent, welcoming message to give users a friendly entry point to your agent ecosystem.
The greeter listens for user input and detects common greeting triggers such as "hello" or explicit requests for a greeting. When a trigger is detected, it replies with a single, fixed greeting string. The implementation is minimal and designed to be embedded in terminals or larger agent workflows with minimal setup.
What exact message does the greeter return?
The skill replies with: "Greetings from the skills-example extension! 👋"
Can I change the greeting message?
Yes. Modify the response string in the skill implementation to customize the greeting for your project.