Skip to main content

What are Skills

Skills are modular instruction packages following the open Agent Skills specification. They enable AI coding assistants (like Claude Code, OpenAI Codex CLI, etc.) to call FoxAPI 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 FoxAPI Skills are hosted on GitHub:

FoxAPI Skills

Browse and download all available Skills

2. Copy to Skills directory

# 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

export API_KEY="your-api-key-here"
Get your API Key from the FoxAPI Console.

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 in the GitHub repository.