name: Multilingual Greeting description: Generate personalized greetings in multiple languages version: 1.0.0 allowed-tools: - greet
Multilingual Greeting Skill
This skill uses the {{greet}} tool to generate personalized greeting messages in various languages.
Overview
The greeting service supports the following languages:
- English (en)
- Spanish (es)
- French (fr)
- German (de)
- Japanese (ja)
Usage Examples
Example 1: Basic English Greeting
Use {{greet}} with just a name for the default English greeting:
{
"name": "Alice"
}
Result:
{
"message": "Hello, Alice!",
"timestamp": "2026-01-27T12:00:00.000Z"
}
Example 2: Spanish Greeting
Use {{greet}} with a language code:
{
"name": "Carlos",
"language": "es"
}
Result:
{
"message": "¡Hola, Carlos!",
"timestamp": "2026-01-27T12:00:00.000Z"
}
Example 3: Japanese Greeting
{
"name": "田中",
"language": "ja"
}
Result:
{
"message": "こんにちは、田中さん!",
"timestamp": "2026-01-27T12:00:00.000Z"
}
Tool Reference
{{greet}}
Generate a greeting message in the specified language.
Input:
name(string, required): The name of the person to greetlanguage(string, optional): The language code (en, es, fr, de, ja). Defaults to "en"
Output:
message(string): The greeting messagetimestamp(string): ISO timestamp of when the greeting was generated