Claude Code Plugins

Community-maintained marketplace

Feedback

A simple skill that greets the user

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name hello_world
version 1.0.0
entrypoint scripts/main.py
description A simple skill that greets the user
inputs [object Object]
outputs [object Object]
tags example, simple, greeting
allow_network false

Hello World Skill

A minimal example skill that demonstrates the basic structure of an open-skills skill bundle.

What it does

This skill takes a name as input and returns a friendly greeting message.

Usage

{
  "name": "Alice"
}

Returns:

{
  "greeting": "Hello, Alice! Welcome to open-skills."
}

Files

  • SKILL.md: Skill metadata and documentation (this file)
  • scripts/main.py: Main entrypoint with the run() function
  • tests/sample_input.json: Example input for testing