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.mdwith 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
- Read the project's README.md (if it exists) to understand the project
- Identify key information: project name, tech stack, main features
- Generate a welcome message using the format below
Output Format
# 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:
# 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`