# Hello World

> A minimal example skill demonstrating the agent-skills-server structure.

- Skill: `onmax/hello-world` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add onmax/hello-world`
- Raw SKILL.md: https://api.skillmd.com/api/skills/onmax/hello-world/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- License: MIT
- Author: onmax (https://skillmd.com/u/onmax)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/onmax/hello-world

---


# Hello World Skill

This is a minimal skill for learning purposes.

## Usage

Import the greeting function from `example.ts`:

```ts
import { greet } from './example'

greet('World') // "Hello, World!"
```

