llm-models Pass

Access Claude, Gemini, Kimi, GLM and 100+ LLMs via inference.sh CLI using OpenRouter. Models: Claude Opus 4.5, Claude Sonnet 4.5, Claude Haiku 4.5, Gemini 3 Pro, Kimi K2, GLM-4.6, Intellect 3. One API for all models with automatic fallback and cost optimization. Use for: AI assistants, code generation, reasoning, agents, chat, content generation. Triggers: claude api, openrouter, llm api, claude sonnet, claude opus, gemini api, kimi, language model, gpt alternative, anthropic api, ai model api, llm access, chat api, claude alternative, openai alternative

61out of 100
1.0k
stars
21
downloads
76
views

// Install Skill

Install Skill

Skills are third-party code from public GitHub repositories. SkillHub scans for known malicious patterns but cannot guarantee safety. Review the source code before installing.

Install globally (user-level):

npx skillhub install openclaw/skills/llm-models

Install in current project:

npx skillhub install openclaw/skills/llm-models --project

skill.install.customTargetHelp

npx skillhub install openclaw/skills/llm-models --target-dir /path/to/skills

Suggested path: ~/.claude/skills/llm-models/

AI Review

61
out of 100
Instruction Quality65
Description Precision72
Usefulness55
Technical Soundness60

Scored 61 for being a solid CLI wrapper skill with good model mapping table and broad trigger coverage. Main gaps: no error handling, no decision points, no multi-step workflow automation — it's essentially a command reference rather than a workflow skill. The 'automatic fallback' is a tool feature, not skill logic.

betasimpledevelopersai-engineerscontent-creatorsllm-accesscode-generationcontent-generationapi-calling
Reviewed by review-skill-gateway(z-ai/glm-5.2) on 8/2/2026

SKILL.md Content

---
name: llm-models
description: |
  Access Claude, Gemini, Kimi, GLM and 100+ LLMs via inference.sh CLI using OpenRouter.
  Models: Claude Opus 4.5, Claude Sonnet 4.5, Claude Haiku 4.5, Gemini 3 Pro, Kimi K2, GLM-4.6, Intellect 3.
  One API for all models with automatic fallback and cost optimization.
  Use for: AI assistants, code generation, reasoning, agents, chat, content generation.
  Triggers: claude api, openrouter, llm api, claude sonnet, claude opus, gemini api, kimi,
  language model, gpt alternative, anthropic api, ai model api, llm access, chat api,
  claude alternative, openai alternative
allowed-tools: Bash(infsh *)
---

# LLM Models via OpenRouter

Access 100+ language models via [inference.sh](https://inference.sh) CLI.

## Quick Start

```bash
curl -fsSL https://cli.inference.sh | sh && infsh login

# Call Claude Sonnet
infsh app run openrouter/claude-sonnet-45 --input '{"prompt": "Explain quantum computing"}'
```

## Available Models

| Model | App ID | Best For |
|-------|--------|----------|
| Claude Opus 4.5 | `openrouter/claude-opus-45` | Complex reasoning, coding |
| Claude Sonnet 4.5 | `openrouter/claude-sonnet-45` | Balanced performance |
| Claude Haiku 4.5 | `openrouter/claude-haiku-45` | Fast, economical |
| Gemini 3 Pro | `openrouter/gemini-3-pro-preview` | Google's latest |
| Kimi K2 Thinking | `openrouter/kimi-k2-thinking` | Multi-step reasoning |
| GLM-4.6 | `openrouter/glm-46` | Open-source, coding |
| Intellect 3 | `openrouter/intellect-3` | General purpose |
| Any Model | `openrouter/any-model` | Auto-selects best option |

## Search LLM Apps

```bash
infsh app list --search "openrouter"
infsh app list --search "claude"
```

## Examples

### Claude Opus (Best Quality)

```bash
infsh app run openrouter/claude-opus-45 --input '{
  "prompt": "Write a Python function to detect palindromes with comprehensive tests"
}'
```

### Claude Sonnet (Balanced)

```bash
infsh app run openrouter/claude-sonnet-45 --input '{
  "prompt": "Summarize the key concepts of machine learning"
}'
```

### Claude Haiku (Fast & Cheap)

```bash
infsh app run openrouter/claude-haiku-45 --input '{
  "prompt": "Translate this to French: Hello, how are you?"
}'
```

### Kimi K2 (Thinking Agent)

```bash
infsh app run openrouter/kimi-k2-thinking --input '{
  "prompt": "Plan a step-by-step approach to build a web scraper"
}'
```

### Any Model (Auto-Select)

```bash
# Automatically picks the most cost-effective model
infsh app run openrouter/any-model --input '{
  "prompt": "What is the capital of France?"
}'
```

### With System Prompt

```bash
infsh app sample openrouter/claude-sonnet-45 --save input.json

# Edit input.json:
# {
#   "system": "You are a helpful coding assistant",
#   "prompt": "How do I read a file in Python?"
# }

infsh app run openrouter/claude-sonnet-45 --input input.json
```

## Use Cases

- **Coding**: Generate, review, debug code
- **Writing**: Content, summaries, translations
- **Analysis**: Data interpretation, research
- **Agents**: Build AI-powered workflows
- **Chat**: Conversational interfaces

## Related Skills

```bash
# Full platform skill (all 150+ apps)
npx skills add inference-sh/agent-skills@inference-sh

# Web search (combine with LLMs for RAG)
npx skills add inference-sh/agent-skills@web-search

# Image generation
npx skills add inference-sh/agent-skills@ai-image-generation

# Video generation
npx skills add inference-sh/agent-skills@ai-video-generation
```

Browse all apps: `infsh app list`

## Documentation

- [Agents Overview](https://inference.sh/docs/concepts/agents) - Building AI agents
- [Agent SDK](https://inference.sh/docs/api/agent/overview) - Programmatic agent control
- [Building a Research Agent](https://inference.sh/blog/guides/research-agent) - LLM + search integration guide

License

Declared license: MIT

MIT License

Copyright (c) 2026 openclaw

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View the license in the source repositorythe version published there is authoritative.