skills/easy-openrouter/SKILL.md
Test individual LLM models through OpenRouter and compare observed latency, cost, token usage, and outputs. Includes model ID format, :nitro/:online modifiers, rankings/provider lookup, and simple manual comparison workflows. Trigger words: OpenRouter, test model, model ID, compare models, provider latency, throughput, cheapest provider, fastest provider, :nitro, :online
npx skillsauth add shiqkuangsan/oh-my-daily-skills tooyoung:easy-openrouterInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Quickly test LLM models and find the best one for your task.
export OPENROUTER_API_KEY="sk-or-v1-xxxx"
Use scripts/call_openrouter.sh:
# Basic test
bash scripts/call_openrouter.sh \
--model "anthropic/claude-sonnet-4" \
--prompt "Explain quantum computing in one sentence" \
--json
# With parameters
bash scripts/call_openrouter.sh \
--model "openai/gpt-4o" \
--prompt "Write a haiku about code" \
--max-tokens 100 \
--temperature 0.7 \
--json
Output includes: response time (ms), cost ($), token usage, full response
Parameters:
--model: Model ID (required)--prompt: Prompt text (required)--system: System prompt (optional)--max-tokens: Max tokens--temperature: Temperature 0.0-2.0--json: JSON outputprovider/model-name[:modifier]
Common models:
anthropic/claude-sonnet-4openai/gpt-4oopenai/gpt-4o-minigoogle/gemini-2.0-flash-001deepseek/deepseek-chatModifiers:
:nitro - Use fastest provider:online - Enable web searchanthropic/claude-sonnet-4:nitro:onlinehttps://openrouter.ai/rankings?category=<category>#categories
| Category | URL |
| ----------- | ------------------------------------------------------------------ |
| Programming | https://openrouter.ai/rankings?category=programming#categories |
| Translation | https://openrouter.ai/rankings?category=translation#categories |
| Science | https://openrouter.ai/rankings?category=science#categories |
| Finance | https://openrouter.ai/rankings?category=finance#categories |
| Legal | https://openrouter.ai/rankings?category=legal#categories |
| Academia | https://openrouter.ai/rankings?category=academia#categories |
| Marketing | https://openrouter.ai/rankings?category=marketing#categories |
| SEO | https://openrouter.ai/rankings?category=marketing/seo#categories |
https://openrouter.ai/<model-slug>/providers?sort=<sort>
Sort options:
throughput - By throughput (tokens/sec)latency - By latencyprice - By priceExample: Find fastest provider for claude-sonnet-4
https://openrouter.ai/anthropic/claude-sonnet-4/providers?sort=throughput
curl -s https://openrouter.ai/api/v1/models \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
| jq '.data | sort_by(.pricing.prompt) | .[:10] | .[].id'
# Output: top 10 cheapest models
# Test Claude
bash scripts/call_openrouter.sh --model "anthropic/claude-sonnet-4" --prompt "Explain microservices architecture" --json > claude.json
# Test GPT-4o
bash scripts/call_openrouter.sh --model "openai/gpt-4o" --prompt "Explain microservices architecture" --json > gpt4o.json
# Compare results
jq -s '[.[0], .[1]] | map({model, response_time_ms, cost})' claude.json gpt4o.json
https://openrouter.ai/rankings?category=programming#categoriesConsiderations:
:nitro modifiergpt-4o-mini or deepseek-chatclaude-sonnet-4 or gpt-4oFor API details, query OpenRouter documentation via Context7.
development
Show OpenAI Codex release highlights in Chinese. Fetch GitHub release notes, summarize feature-level changes, skip bug-fix/chore noise by default, and append a mandatory highlights section. Trigger words: Codex updates, Codex features, Codex 新功能, Codex 更新, OpenAI Codex releases
development
清理当前项目的 Claude Code 会话:列出 ~/.claude/projects 下最近会话,按序号或 sessionId 选择,经二次确认后删除对应 .jsonl 与同名附件目录。Trigger words: 清理 cc 会话, 删除历史会话, cc resume 会话, clean cc sessions, cc session cleaner
development
Create simple Three.js web apps with scene setup, lighting, geometries, materials, animations, OrbitControls, particles, and responsive rendering. Use for Three.js scenes, WebGL demos, 3D showcases, and interactive 3D web content. Trigger: threejs, Three.js, 3D scene, WebGL, 三维展示, 3D showcase, interactive 3D
development
为 Claude Code 定义个性化身份风格(人设)。触发词:定义人设、创建身份、persona、角色设定、CLAUDE.local.md