> ## Documentation Index
> Fetch the complete documentation index at: https://skillcliprotocol.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Create and use a skill in under 2 minutes

## Install the CLI

```bash theme={null}
npm install -g @skillcliprotocol/skills
```

## Create a skill

```bash theme={null}
mkdir my-weather-skill && cd my-weather-skill
```

Create `SKILL.md`:

```markdown theme={null}
# Weather Skill

Get current weather for any city.

## Usage

Run the included script with a city name:

\`\`\`bash
./run.sh "San Francisco"
\`\`\`

Returns plain text weather summary.
```

Create `run.sh`:

```bash theme={null}
#!/bin/bash
curl -s "wttr.in/${1// /+}?format=3"
```

```bash theme={null}
chmod +x run.sh
```

## Use it

```bash theme={null}
skills add ./my-weather-skill
```

That's it. Any SCP-compatible agent will now discover the skill, read the `SKILL.md`, and know how to call `run.sh` when a user asks about weather.

## What just happened?

1. You wrote a markdown file describing the skill
2. You wrote a shell script that does the work
3. You registered it locally

No server to run. No SDK to import. No protocol to implement.
