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

# Skills

> Extend your AI coding assistant with AihubMax Skills

## What are Skills

Skills are modular instruction packages following the open [Agent Skills specification](https://agentskills.io). They enable AI coding assistants (like Claude Code, OpenAI Codex CLI, etc.) to call AihubMax APIs directly to generate images, videos, audio, and more.

Each Skill contains a `SKILL.md` file defining API parameters, workflows, and usage examples. Once installed, your AI assistant automatically discovers and invokes it when appropriate.

## Installation

### 1. Get the Skills

All AihubMax Skills are hosted on GitHub:

<Card title="AihubMax Skills" icon="github" href="https://github.com/foxapi/skills">
  Browse and download all available Skills
</Card>

### 2. Copy to Skills directory

```bash theme={null}
# Clone the repository
git clone https://github.com/foxapi/skills.git

# Claude Code (personal)
cp -r skills/skills/foxapi-nanobanana-2-image ~/.claude/skills/

# Claude Code (project-level)
cp -r skills/skills/foxapi-nanobanana-2-image .claude/skills/

# OpenAI Codex CLI
cp -r skills/skills/foxapi-nanobanana-2-image ~/.codex/skills/
```

### 3. Set your API Key

```bash theme={null}
export API_KEY="your-api-key-here"
```

<Tip>
  Get your API Key from the [AihubMax Console](https://api.aihubmax.com/console).
</Tip>

## Usage

Once installed, your AI assistant automatically discovers your Skills. Just describe what you need in natural language:

* *"Generate a cyberpunk city skyline image"* → auto-invokes Nano Banana 2 Skill
* *"Create a video of a golden retriever running on the beach"* → auto-invokes Veo 3.1 Skill

You can also manually invoke a specific Skill:

```
/foxapi-nanobanana-2-image
/foxapi-veo-3-1-video
```

## Contributing

Want to add a new Skill? See [CONTRIBUTING.md](https://github.com/foxapi/skills/blob/main/CONTRIBUTING.md) in the GitHub repository.
