agent-tools by toolshell/skills
npx skills add https://github.com/toolshell/skills --skill agent-tools通过简单的 CLI 在云端运行 150 多个 AI 应用。无需 GPU。

curl -fsSL https://cli.inference.sh | sh
infsh login
安装程序会做什么? 安装脚本 会检测您的操作系统和架构,从
dist.inference.sh下载正确的二进制文件,验证其 SHA-256 校验和,并将其放入您的 PATH 中。仅此而已 —— 无需提升权限,没有后台进程,没有遥测数据。如果您安装了 cosign,安装程序还会自动验证 Sigstore 签名。手动安装(如果您不想通过管道传输到 sh):
# 下载二进制文件和校验和 curl -LO https://dist.inference.sh/cli/checksums.txt curl -LO $(curl -fsSL https://dist.inference.sh/cli/manifest.json | grep -o '"url":"[^"]*"' | grep $(uname -s | tr A-Z a-z)-$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/') | head -1 | cut -d'"' -f4) # 验证校验和 sha256sum -c checksums.txt --ignore-missing # 解压并安装 tar -xzf inferencesh-cli-*.tar.gz mv inferencesh-cli-* ~/.local/bin/inferencesh
Run 150+ AI apps in the cloud with a simple CLI. No GPU required.

curl -fsSL https://cli.inference.sh | sh
infsh login
What does the installer do? The install script detects your OS and architecture, downloads the correct binary from
dist.inference.sh, verifies its SHA-256 checksum, and places it in your PATH. That's it — no elevated permissions, no background processes, no telemetry. If you have cosign installed, the installer also verifies the Sigstore signature automatically.Manual install (if you prefer not to pipe to sh):
# Download the binary and checksums curl -LO https://dist.inference.sh/cli/checksums.txt curl -LO $(curl -fsSL https://dist.inference.sh/cli/manifest.json | grep -o '"url":"[^"]*"' | grep $(uname -s | tr A-Z a-z)-$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/') | head -1 | cut -d'"' -f4) # Verify checksum sha256sum -c checksums.txt --ignore-missing # Extract and install tar -xzf inferencesh-cli-*.tar.gz mv inferencesh-cli-* ~/.local/bin/inferencesh
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
# 生成图像
infsh app run falai/flux-dev-lora --input '{"prompt": "a cat astronaut"}'
# 生成视频
infsh app run google/veo-3-1-fast --input '{"prompt": "drone over mountains"}'
# 调用 Claude
infsh app run openrouter/claude-sonnet-45 --input '{"prompt": "Explain quantum computing"}'
# 网络搜索
infsh app run tavily/search-assistant --input '{"query": "latest AI news"}'
# 发布到 Twitter
infsh app run x/post-tweet --input '{"text": "Hello from AI!"}'
# 生成 3D 模型
infsh app run infsh/rodin-3d-generator --input '{"prompt": "a wooden chair"}'
| 任务 | 命令 |
|---|---|
| 列出所有应用 | infsh app list |
| 搜索应用 | infsh app list --search "flux" |
| 按类别筛选 | infsh app list --category image |
| 获取应用详情 | infsh app get google/veo-3-1-fast |
| 生成示例输入 | infsh app sample google/veo-3-1-fast --save input.json |
| 运行应用 | infsh app run google/veo-3-1-fast --input input.json |
| 运行无需等待 | infsh app run <app> --input input.json --no-wait |
| 检查任务状态 | infsh task get <task-id> |
| 类别 | 示例 |
|---|---|
| 图像 | FLUX, Gemini 3 Pro, Grok Imagine, Seedream 4.5, Reve, Topaz Upscaler |
| 视频 | Veo 3.1, Seedance 1.5, Wan 2.5, OmniHuman, Fabric, HunyuanVideo Foley |
| 大语言模型 | Claude Opus/Sonnet/Haiku, Gemini 3 Pro, Kimi K2, GLM-4, 任何 OpenRouter 模型 |
| 搜索 | Tavily Search, Tavily Extract, Exa Search, Exa Answer, Exa Extract |
| 3D | Rodin 3D Generator |
| Twitter/X | post-tweet, post-create, dm-send, user-follow, post-like, post-retweet |
| 实用工具 | 媒体合并, 视频添加字幕, 图像拼接, 音频提取 |
# 图像生成 (FLUX, Gemini, Grok, Seedream)
npx skills add inference-sh/skills@ai-image-generation
# 视频生成 (Veo, Seedance, Wan, OmniHuman)
npx skills add inference-sh/skills@ai-video-generation
# 大语言模型 (Claude, Gemini, Kimi, GLM via OpenRouter)
npx skills add inference-sh/skills@llm-models
# 网络搜索 (Tavily, Exa)
npx skills add inference-sh/skills@web-search
# AI 虚拟形象与唇形同步 (OmniHuman, Fabric, PixVerse)
npx skills add inference-sh/skills@ai-avatar-video
# Twitter/X 自动化
npx skills add inference-sh/skills@twitter-automation
# 模型特定
npx skills add inference-sh/skills@flux-image
npx skills add inference-sh/skills@google-veo
# 实用工具
npx skills add inference-sh/skills@image-upscaling
npx skills add inference-sh/skills@background-removal
每周安装量
25.3K
代码仓库
GitHub 星标数
125
首次出现
2 天前
安全审计
安装于
claude-code20.3K
codex17.7K
gemini-cli17.7K
opencode17.7K
amp17.7K
github-copilot17.7K
# Generate an image
infsh app run falai/flux-dev-lora --input '{"prompt": "a cat astronaut"}'
# Generate a video
infsh app run google/veo-3-1-fast --input '{"prompt": "drone over mountains"}'
# Call Claude
infsh app run openrouter/claude-sonnet-45 --input '{"prompt": "Explain quantum computing"}'
# Web search
infsh app run tavily/search-assistant --input '{"query": "latest AI news"}'
# Post to Twitter
infsh app run x/post-tweet --input '{"text": "Hello from AI!"}'
# Generate 3D model
infsh app run infsh/rodin-3d-generator --input '{"prompt": "a wooden chair"}'
| Task | Command |
|---|---|
| List all apps | infsh app list |
| Search apps | infsh app list --search "flux" |
| Filter by category | infsh app list --category image |
| Get app details | infsh app get google/veo-3-1-fast |
| Generate sample input | infsh app sample google/veo-3-1-fast --save input.json |
| Run app | infsh app run google/veo-3-1-fast --input input.json |
| Run without waiting | infsh app run <app> --input input.json --no-wait |
| Check task status | infsh task get <task-id> |
| Category | Examples |
|---|---|
| Image | FLUX, Gemini 3 Pro, Grok Imagine, Seedream 4.5, Reve, Topaz Upscaler |
| Video | Veo 3.1, Seedance 1.5, Wan 2.5, OmniHuman, Fabric, HunyuanVideo Foley |
| LLMs | Claude Opus/Sonnet/Haiku, Gemini 3 Pro, Kimi K2, GLM-4, any OpenRouter model |
| Search | Tavily Search, Tavily Extract, Exa Search, Exa Answer, Exa Extract |
| 3D | Rodin 3D Generator |
| Twitter/X | post-tweet, post-create, dm-send, user-follow, post-like, post-retweet |
| Utilities | Media merger, caption videos, image stitching, audio extraction |
# Image generation (FLUX, Gemini, Grok, Seedream)
npx skills add inference-sh/skills@ai-image-generation
# Video generation (Veo, Seedance, Wan, OmniHuman)
npx skills add inference-sh/skills@ai-video-generation
# LLMs (Claude, Gemini, Kimi, GLM via OpenRouter)
npx skills add inference-sh/skills@llm-models
# Web search (Tavily, Exa)
npx skills add inference-sh/skills@web-search
# AI avatars & lipsync (OmniHuman, Fabric, PixVerse)
npx skills add inference-sh/skills@ai-avatar-video
# Twitter/X automation
npx skills add inference-sh/skills@twitter-automation
# Model-specific
npx skills add inference-sh/skills@flux-image
npx skills add inference-sh/skills@google-veo
# Utilities
npx skills add inference-sh/skills@image-upscaling
npx skills add inference-sh/skills@background-removal
Weekly Installs
25.3K
Repository
GitHub Stars
125
First Seen
2 days ago
Security Audits
Installed on
claude-code20.3K
codex17.7K
gemini-cli17.7K
opencode17.7K
amp17.7K
github-copilot17.7K
AI新闻播客制作技能:实时新闻转对话式播客脚本与音频生成
1,200 周安装