multilingual-greeting

star 0

Generate personalized greetings in multiple languages

shazhou-ww By shazhou-ww schedule Updated 2/3/2026

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 greet
  • language (string, optional): The language code (en, es, fr, de, ja). Defaults to "en"

Output:

  • message (string): The greeting message
  • timestamp (string): ISO timestamp of when the greeting was generated
Install via CLI
npx skills add https://github.com/shazhou-ww/agent-web-portal --skill multilingual-greeting
Repository Details
star Stars 0
call_split Forks 1
navigation Branch main
article Path SKILL.md
More from Creator