# Greeting

> Generate a friendly project welcome message for new team members. Use when the user asks for a welcome message, project introduction, or onboarding greeting.

- Skill: `yinuo-136/greeting` (Agent Skill)
- Install (CLI): `npx skillmds@latest add yinuo-136/greeting`
- Raw SKILL.md: https://api.skillmd.com/api/skills/yinuo-136/greeting/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: yinuo-136 (https://skillmd.com/u/yinuo-136)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/yinuo-136/greeting

---


# Greeting Generator

Generate a friendly, informative welcome message for new team members joining a project.

> **Demo Purpose**: This is the simplest skill structure — just a single `SKILL.md` with no extra directories.

## When to Use

- User asks for a "welcome message" or "project intro"
- Onboarding a new team member
- Creating a project introduction

## Instructions

1. Read the project's README.md (if it exists) to understand the project
2. Identify key information: project name, tech stack, main features
3. Generate a welcome message using the format below

## Output Format

```markdown
# Welcome to [Project Name]! 👋

## What is this project?
[One paragraph summary]

## Tech Stack
- **Language**: [language]
- **Framework**: [framework]
- **Database**: [database if applicable]

## Getting Started
1. Clone the repo: `git clone [url]`
2. Install dependencies: `[install command]`
3. Run the project: `[run command]`

## Key Directories
- `src/` — Main source code
- `tests/` — Test files
- `docs/` — Documentation

## Useful Commands
| Command | Description |
|---------|-------------|
| `[cmd]` | [what it does] |

## Need Help?
- Check the docs in `docs/`
- Ask in [team channel]
```

## Example

Input: User says "generate a welcome message for this project"

Output:
```markdown
# Welcome to Cursor Skills Guide! 👋

## What is this project?
A comprehensive tutorial and demo repository for Cursor Agent Skills,
including documentation, configuration examples, and ready-to-use skills.

## Tech Stack
- **Language**: Markdown + Python
- **Tool**: Cursor IDE

## Getting Started
1. Clone the repo: `git clone <url>`
2. Open with Cursor: `cursor .`
3. Skills are auto-discovered — start chatting with Agent!

## Key Directories
- `docs/` — Tutorial documentation (Chinese)
- `.cursor/skills/` — Demo skills (auto-loaded by Cursor)
- `examples/` — Reference examples

## Need Help?
- Read the docs starting from `docs/01-what-are-skills.md`
```

