Skip to content

HiAPIAI/hiapi-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HiAPI Skills

Official HiAPI skill directory for AI Agents.

HiAPI Skills • Install • API Key • HiAPI

Get API Key · Pricing · Docs · Prompt Gallery · Remote MCP Guide · 简体中文


AI Agent? Start with llms-install.md. It tells your agent which skill to install, how to set HIAPI_API_KEY, and what to do when a key, balance, quota, or model request fails.


What Is This?

This is the official directory of HiAPI skills for OpenClaw, Claude Code, Codex, OpenCode, Cursor-style agent workflows, and other tools that can read local skills. It helps you choose the right HiAPI entry point before installing a specific skill.

HiAPI is an AI API platform built for developers: one API, all AI models. These skills package common image and video generation workflows so an AI Agent can call a focused model without guessing endpoints or parameters.

Use this repository when you want to choose a HiAPI skill. Install the individual skill repository when you are ready to generate images or videos.


Public Entry Map

Entry Link Use it when...
Prompt Galleries awesome-gpt-image-2-prompts You want output-backed creative recipes before generating images.
Agent Skills hiapi-skills You want to browse available HiAPI skills and choose one focused workflow.
Remote MCP https://mcp.hiapi.ai/mcp Your client supports remote MCP and can pass Authorization: Bearer <HIAPI_API_KEY>.
API Cookbook docs.hiapi.ai You want direct API request shapes, model parameters, and integration guides.

These entry points solve different jobs: prompt galleries show proven visual examples, single-model skills call real HiAPI model endpoints, and Remote MCP helps agents discover the broader HiAPI toolset.


Available Skills

Skill Best For Model Repository
GPT Image 2 Posters, illustrations, social graphics, product visuals, cover images gpt-image-2 hiapi-gpt-image-2-skill
Seedance 2.0 Video Text-to-video, image-to-video, cinematic clips, product videos, storyboards seedance-2-0 hiapi-seedance-2-0-video-skill
HappyHorse 1.0 Video Lightweight text-to-video drafts, short social clips, ad concepts happyhorse-1-0 hiapi-happyhorse-1-0-video-skill

Choose an Entry

I want to... Open
Find a tested prompt and output example first Awesome GPT Image 2 Prompts
Generate images from text GPT Image 2 Skill
Generate or animate videos with a stronger video workflow Seedance 2.0 Video Skill
Quickly generate short text-to-video clips HappyHorse 1.0 Video Skill
Let an agent access more HiAPI models from chat HiAPI Remote MCP Guide

Skills are best when you want a stable, focused workflow. Remote MCP is better when you want a chat agent to discover and call multiple HiAPI tools. The MCP endpoint is https://mcp.hiapi.ai/mcp.


Install One Skill

Pick the repository for the model you need. Install all three only if you want all three skills available in your agent.

OpenClaw

# GPT Image 2
openclaw skills add https://github.com/HiAPIAI/hiapi-gpt-image-2-skill

# Seedance 2.0 Video
openclaw skills add https://github.com/HiAPIAI/hiapi-seedance-2-0-video-skill

# HappyHorse 1.0 Video
openclaw skills add https://github.com/HiAPIAI/hiapi-happyhorse-1-0-video-skill

Codex

mkdir -p "${CODEX_HOME:-$HOME/.codex}/skills"

rm -rf "${CODEX_HOME:-$HOME/.codex}/skills/hiapi-gpt-image-2"
git clone https://github.com/HiAPIAI/hiapi-gpt-image-2-skill.git "${CODEX_HOME:-$HOME/.codex}/skills/hiapi-gpt-image-2"

rm -rf "${CODEX_HOME:-$HOME/.codex}/skills/hiapi-seedance-2-0-video"
git clone https://github.com/HiAPIAI/hiapi-seedance-2-0-video-skill.git "${CODEX_HOME:-$HOME/.codex}/skills/hiapi-seedance-2-0-video"

rm -rf "${CODEX_HOME:-$HOME/.codex}/skills/hiapi-happyhorse-1-0-video"
git clone https://github.com/HiAPIAI/hiapi-happyhorse-1-0-video-skill.git "${CODEX_HOME:-$HOME/.codex}/skills/hiapi-happyhorse-1-0-video"

Restart Codex after installing skills.

Claude Code

mkdir -p "$HOME/.claude/skills"

rm -rf "$HOME/.claude/skills/hiapi-gpt-image-2"
git clone https://github.com/HiAPIAI/hiapi-gpt-image-2-skill.git "$HOME/.claude/skills/hiapi-gpt-image-2"

rm -rf "$HOME/.claude/skills/hiapi-seedance-2-0-video"
git clone https://github.com/HiAPIAI/hiapi-seedance-2-0-video-skill.git "$HOME/.claude/skills/hiapi-seedance-2-0-video"

rm -rf "$HOME/.claude/skills/hiapi-happyhorse-1-0-video"
git clone https://github.com/HiAPIAI/hiapi-happyhorse-1-0-video-skill.git "$HOME/.claude/skills/hiapi-happyhorse-1-0-video"

Any Agent With A Skills Folder

export AGENT_SKILLS_DIR="/path/to/your/agent/skills"
mkdir -p "$AGENT_SKILLS_DIR"

rm -rf "$AGENT_SKILLS_DIR/hiapi-gpt-image-2"
git clone https://github.com/HiAPIAI/hiapi-gpt-image-2-skill.git "$AGENT_SKILLS_DIR/hiapi-gpt-image-2"

rm -rf "$AGENT_SKILLS_DIR/hiapi-seedance-2-0-video"
git clone https://github.com/HiAPIAI/hiapi-seedance-2-0-video-skill.git "$AGENT_SKILLS_DIR/hiapi-seedance-2-0-video"

rm -rf "$AGENT_SKILLS_DIR/hiapi-happyhorse-1-0-video"
git clone https://github.com/HiAPIAI/hiapi-happyhorse-1-0-video-skill.git "$AGENT_SKILLS_DIR/hiapi-happyhorse-1-0-video"

Get API Key

  1. Open HiAPI API Keys.
  2. Create or sign in to your HiAPI account.
  3. Create or copy an API key.
  4. Set it in the terminal where your agent runs:
export HIAPI_API_KEY="your_hiapi_api_key_here"
export HIAPI_BASE_URL="https://api.hiapi.ai"

Each skill includes a scripts/check-config.mjs helper so your agent can verify the key and network path before generation.


Agent Prompt

Copy this to your AI Agent:

Use HiAPI skills for image and video generation.

If I ask for an image, install or use:
https://github.com/HiAPIAI/hiapi-gpt-image-2-skill

If I ask for a stronger video workflow or image-to-video, install or use:
https://github.com/HiAPIAI/hiapi-seedance-2-0-video-skill

If I ask for a quick text-to-video clip, install or use:
https://github.com/HiAPIAI/hiapi-happyhorse-1-0-video-skill

Use HIAPI_API_KEY for authentication. If the key is missing, invalid, rate-limited, or the account has insufficient balance, show the user the next step and link to HiAPI.

Prompt Gallery Workflow

Use awesome-gpt-image-2-prompts when the user needs inspiration, style references, or a prompt starting point. Each case includes a result image, source attribution, aspect ratio, and a HiAPI Draw link. After the user chooses a case, use the relevant skill or direct API request to generate a new result with their own subject, product, text, or scene.


Machine-Readable Index

This repository includes skills.json, a machine-readable index of the current HiAPI skill repositories, model pages, install commands, and intended use cases.


Troubleshooting

Problem Next Step
Missing HIAPI_API_KEY Create or copy a key at HiAPI API Keys, then export HIAPI_API_KEY.
Invalid key or unauthorized request Check the key or create a new one at HiAPI API Keys.
Insufficient balance, quota, or payment status Check your account in the HiAPI Dashboard and review Pricing.
Rate limited Wait and retry, or reduce concurrent generations.
Unsure which model to use Start with the table above, or follow the HiAPI Remote MCP Guide so your agent can inspect available tools.

Related HiAPI Repositories


License

MIT


HiAPI — One API, all AI models.

Releases

No releases published

Packages

 
 
 

Contributors