# Install

Three ways to install, ordered by how much you trust the tooling between you and the files. They all end up putting the same markdown in the same place. Pick the method that matches how you like to vet what reaches your machine.

<Tabs defaultValue="cli">

<Tab value="cli" label="skills.sh CLI">

The shortest path. One command fetches the core skills (the router plus the CLI, docs and builder specialists) into your agent's conventional skills directory:

```bash
npx skills add GetStream/agent-skills -s stream stream-cli stream-docs stream-builder
```

This trusts the [skills.sh CLI](https://github.com/vercel-labs/skills) to do the fetching for you. The CLI is open source and pulls markdown directly from [`GetStream/agent-skills`](https://github.com/GetStream/agent-skills). Works on every supported agent.

The platform packs (Swift, Android, React Native) stay out of this install. The router pulls in whichever one your project needs on demand. To add one up front, name it: `npx skills add GetStream/agent-skills -s stream-swift`.

</Tab>

<Tab value="github" label="Direct from GitHub">

If you'd rather not run the skills.sh CLI, clone or download the repo yourself. You're trusting only GitHub:

```bash
# Clone into Claude Code's skills directory
git clone https://github.com/GetStream/agent-skills ~/.claude/skills/stream-pack

# Or pull a tarball
curl -L https://github.com/GetStream/agent-skills/archive/refs/heads/main.tar.gz \
  | tar -xz -C ~/.claude/skills/
```

A raw clone brings the entire pack, every skill including the platform packs, because it can't pick a subset. If you only want the core skills, use the CLI command above instead.

</Tab>

<Tab value="manual" label="Manual paste">

If your agent doesn't read a standard skills directory, you don't need either tool. Open the `SKILL.md` you want on [GitHub](https://github.com/GetStream/agent-skills) and paste it straight into the agent's context window. You're trusting nothing but your own eyes on the markdown. This is the fallback for any agent the two paths above don't cover.

</Tab>

</Tabs>

## Network operations

<Admonition type="info">

Nothing executes when you install, whichever path you took.

</Admonition>

Two later operations can touch the network, and the agent prompts you before either one runs:

- The Stream CLI binary install, which runs on your first `/stream-cli` invocation and only if the CLI isn't already on your machine.
- The optional frontend skills that `/stream-builder` offers to pull in for UI scaffolding.

Both are explained in full, with the checksum and approval details, on the [Security and trust](/agent-skills/docs/concepts/security/) page. Read it before installing, the same way you'd review any tool that touches your project. The complete file-by-file audit lives in the [repo `README.md`](https://github.com/GetStream/agent-skills#what-gets-installed).

## Claude Code auto mode

<Admonition type="warning">

Auto mode blocks runtime network fetches. Run the steps that download something once in a normal session first, then switch to auto mode.

</Admonition>

Claude Code's auto mode runs shell commands through a safety classifier that blocks downloading and running code from the network. That stops every step in this pack that fetches something at runtime:

- a platform pack the router would otherwise pull in on demand
- the Stream CLI binary install (a `curl ... | bash`)
- the optional frontend skills `/stream-builder` offers

Run these once in a normal session before switching to auto mode. The core install already includes the CLI, docs and builder skills, so the router never fetches those mid-task. If you build for a native platform, pre-install that pack once too (for example `npx skills add GetStream/agent-skills -s stream-swift`), so the router doesn't have to fetch it under auto mode. The Stream CLI binary install and the optional frontend skills still need a normal session, since both fetch at runtime.


---

This page was last updated at 2026-06-16T16:17:03.280Z.

For the most recent version of this documentation, visit [https://getstream.io/agent-skills/docs/installation/](https://getstream.io/agent-skills/docs/installation/).