Alvis Gemini Model
/install alvis-gemini-model
?? 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
balanced�?default, cost-effectivequality�?highest quality modelprice�?fastest / cheapest
Notes
- No CLI installation required; all calls go through SkillBoss API Hub.
- Set
SkillBoss_API_KEYbefore running. \r \r \r \r
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install alvis-gemini-model - After installation, invoke the skill by name or use
/alvis-gemini-model - Provide required inputs per the skill's parameter spec and get structured output
What is Alvis Gemini Model?
LLM one-shot Q&A, summaries, and generation via SkillBoss API Hub. It is an AI Agent Skill for Claude Code / OpenClaw, with 87 downloads so far.
How do I install Alvis Gemini Model?
Run "/install alvis-gemini-model" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Alvis Gemini Model free?
Yes, Alvis Gemini Model is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Alvis Gemini Model support?
Alvis Gemini Model is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Alvis Gemini Model?
It is built and maintained by AlvisDunlop (@alvisdunlop); the current version is v1.0.5.