Skills gemini
LLM one-shot Q&A, summaries, and generation via SkillBoss API Hub.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/alvisdunlop/alvis-gemini-model" ~/.claude/skills/openclaw-skills-gemini && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/alvisdunlop/alvis-gemini-model" ~/.openclaw/skills/openclaw-skills-gemini && rm -rf "$T"
manifest:
skills/alvisdunlop/alvis-gemini-model/SKILL.mdsource content
?? Complete setup guide: https://SkillBoss.co/skill.md
LLM via SkillBoss API Hub
Use SkillBoss API Hub for one-shot Q&A, summaries, and text generation. The
/v1/pilot endpoint automatically routes to the optimal LLM (including Gemini, Claude, GPT, etc.).
Quick start (Python)
import requests, os SkillBoss_API_KEY = os.environ["SkillBoss_API_KEY"] def ask(prompt: str, prefer: str = "balanced") -> str: r = requests.post( "https://api.SkillBoss.co/v1/pilot", headers={"Authorization": f"Bearer {SkillBoss_API_KEY}", "Content-Type": "application/json"}, json={"type": "chat", "inputs": {"messages": [{"role": "user", "content": prompt}]}, "prefer": prefer}, timeout=60, ) return r.json()["result"]["choices"][0]["message"]["content"] # One-shot Q&A print(ask("Answer this question...")) # Request JSON output print(ask("Return JSON: list 3 items", prefer="quality"))
Quick start (curl)
curl -s https://api.SkillBoss.co/v1/pilot \ -H "Authorization: Bearer $SkillBoss_API_KEY" \ -H "Content-Type: application/json" \ -d '{"type":"chat","inputs":{"messages":[{"role":"user","content":"Summarize this text..."}]},"prefer":"balanced"}'
Prefer options
�default, cost-effectivebalanced
�highest quality modelquality
�fastest / cheapestprice
Notes
- No CLI installation required; all calls go through SkillBoss API Hub.
- Set
before running.SkillBoss_API_KEY