Learn-skills.dev llm-models
install
source · Clone the upstream repo
git clone https://github.com/NeverSight/learn-skills.dev
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/NeverSight/learn-skills.dev "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/skills-md/1nf-sh/skills/llm-models" ~/.claude/skills/neversight-learn-skills-dev-llm-models && rm -rf "$T"
manifest:
data/skills-md/1nf-sh/skills/llm-models/SKILL.mdsource content
LLM Models via OpenRouter

Access 100+ language models via inference.sh CLI.
Quick Start
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 | | Complex reasoning, coding |
| Claude Sonnet 4.5 | | Balanced performance |
| Claude Haiku 4.5 | | Fast, economical |
| Gemini 3 Pro | | Google's latest |
| Kimi K2 Thinking | | Multi-step reasoning |
| GLM-4.6 | | Open-source, coding |
| Intellect 3 | | General purpose |
| Any Model | | Auto-selects best option |
Search LLM Apps
infsh app list --search "openrouter" infsh app list --search "claude"
Examples
Claude Opus (Best Quality)
infsh app run openrouter/claude-opus-45 --input '{ "prompt": "Write a Python function to detect palindromes with comprehensive tests" }'
Claude Sonnet (Balanced)
infsh app run openrouter/claude-sonnet-45 --input '{ "prompt": "Summarize the key concepts of machine learning" }'
Claude Haiku (Fast & Cheap)
infsh app run openrouter/claude-haiku-45 --input '{ "prompt": "Translate this to French: Hello, how are you?" }'
Kimi K2 (Thinking Agent)
infsh app run openrouter/kimi-k2-thinking --input '{ "prompt": "Plan a step-by-step approach to build a web scraper" }'
Any Model (Auto-Select)
# Automatically picks the most cost-effective model infsh app run openrouter/any-model --input '{ "prompt": "What is the capital of France?" }'
With System Prompt
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
# Full platform skill (all 150+ apps) npx skills add inferencesh/skills@inference-sh # Web search (combine with LLMs for RAG) npx skills add inferencesh/skills@web-search # Image generation npx skills add inferencesh/skills@ai-image-generation # Video generation npx skills add inferencesh/skills@ai-video-generation
Browse all apps:
infsh app list
Documentation
- Agents Overview - Building AI agents
- Agent SDK - Programmatic agent control
- Building a Research Agent - LLM + search integration guide