inference-sh-cli

Run 150+ cloud AI apps for image, video, audio, and search via the inference.sh CLI.

Updated Jun 7, 2026
One-click install
npx skills add https://github.com/Chensihakniroth/ANAKOT-AGENT --skill inference-sh-cli-chensihakniroth
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: inference-sh-cli
Source: https://github.com/Chensihakniroth/ANAKOT-AGENT/tree/main/optional-skills/devops/cli
Command: npx skills add https://github.com/Chensihakniroth/ANAKOT-AGENT --skill inference-sh-cli-chensihakniroth

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Running AI models like FLUX, Veo, or Seedance normally requires managing separate provider APIs, GPU infrastructure, and authentication for each service. This Skill provides a single CLI interface to over 150 cloud-hosted AI apps without any GPU or per-provider setup. ## Core Features & Use Cases - Image Generation: Run FLUX, Gemini, Seedream, and Grok image models with a single command and JSON input. - Video & Avatar Generation: Generate videos with Veo, Seedance, and Wan, or create lipsync avatars with OmniHuman from local files. - Search & Research: Execute AI-powered search through Tavily and Exa apps directly from the terminal. - Use Case: A user asks for a product mockup video. The agent searches the app catalog with infsh app list --search video, runs google/veo-3-1-fast with a JSON prompt, and returns the generated video URL for inline display. ## Quick Start Use the inference.sh CLI to search for an image generation app and generate a picture of a sunset over mountains with FLUX.

Frequently Asked Questions about inference-sh-cli

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate images with the inference.sh CLI?▼

Search for an image app with `infsh app list --search image`, then run it with a JSON input, for example `infsh app run falai/flux-dev-lora --input '{"prompt": "sunset"}' --json`. The JSON output contains URLs to the generated images.

How do I find the right app ID on inference.sh?▼

Always search the catalog first using `infsh app list --search <term>` or `infsh app search <query>`. App IDs use the format namespace/app-name and change frequently, so never guess them.

Can inference.sh CLI upload local files for video generation?▼

Yes, any input field that accepts a URL also accepts a local file path, including absolute, relative, and home-directory paths. The CLI automatically uploads the file when running apps like image-to-video or avatar generation.

Why does infsh fail with authentication errors?▼

Authentication errors mean the CLI is not logged in or the API key is invalid. Run `infsh login` to authenticate via browser, verify with `infsh me`, or set the INFSH_API_KEY environment variable for scripts and CI.

How do I handle long-running video generation tasks?▼

Video generation can take 30-120 seconds. Use `infsh app run <app> --input <file> --no-wait` to submit without blocking, then check the result later with `infsh task get <task-id> --json`.