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

# Agent Skills

> Install Interhuman Agent Skills so coding agents can call the API using packaged workflows. Skill names and behavior are maintained in the public repository.

# Agent Skills

Interhuman **Agent Skills** are installable packages that teach compatible agents (Cursor, Claude Code, Codex, OpenCode, and others) how to call Interhuman API workflows with consistent prompts and guardrails.

The set of skills, their names, and what each one covers **change over time**. Treat the public repository as the catalog and changelog—this page explains how to install and use the skill set without duplicating the per-skill README.

Use the repository to:

* See **which skills exist today** and what each one wraps
* Copy **up-to-date** install examples and options (`--list`, `--skill`, `--global`, and so on)
* Align agent behavior with **current** request shapes and response handling

## Install skills

Install the full Interhuman skill set from GitHub:

```bash theme={null}
npx skills add InterhumanAI/skills
```

Or from the repository URL:

```bash theme={null}
npx skills add https://github.com/InterhumanAI/skills
```

<Columns cols={1}>
  <Card title="Interhuman Agent Skills on GitHub" icon="github" href="https://github.com/InterhumanAI/skills" cta="Open repository">
    Authoritative list of skills, install commands, and per-skill behavior. Check here whenever you add or update skills in your project.
  </Card>
</Columns>

## Common install patterns

List what the repository offers without installing:

```bash theme={null}
npx skills add InterhumanAI/skills --list
```

Install specific skills only (use the names listed in the repository README):

```bash theme={null}
# Example skill name — see GitHub for current options
npx skills add InterhumanAI/skills --skill interhuman-stream-analyze
```

Install every skill from the repository:

```bash theme={null}
npx skills add InterhumanAI/skills --skill '*'
```

Install globally for Cursor (example):

```bash theme={null}
npx skills add InterhumanAI/skills -g -a cursor -y
```

## Recommended workflow

1. Open [github.com/InterhumanAI/skills](https://github.com/InterhumanAI/skills) and pick the skill that matches your integration (upload, stream, or others listed there).
2. Configure your **API key** in the environment your agent uses (for example `export API_KEY="YOUR_API_KEY"`). Skills expect direct API-key usage: `Authorization: Bearer <api_key>` unless the repo documents otherwise.
3. Let the agent follow the skill instructions and treat outputs as **raw API JSON**—compose app logic in your own code.

## API reference (stable docs)

HTTP upload analysis and WebSocket streaming are documented here; use these pages alongside the skill README for parameters, envelopes, and error fields:

* [Upload & analyze](/api-reference/upload-analyze)
* [Stream & analyze](/api-reference/stream-analyze)
* [Authentication](/api-reference/authentication)
* [Video upload quickstart](/getting-started/video-upload-quickstart)
