alv-gemini
/install alv-gemini
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.heybossai.com/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.heybossai.com/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.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install alv-gemini - After installation, invoke the skill by name or use
/alv-gemini - Provide required inputs per the skill's parameter spec and get structured output
What is alv-gemini?
LLM one-shot Q&A, summaries, and generation via SkillBoss API Hub. It is an AI Agent Skill for Claude Code / OpenClaw, with 57 downloads so far.
How do I install alv-gemini?
Run "/install alv-gemini" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is alv-gemini free?
Yes, alv-gemini is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does alv-gemini support?
alv-gemini is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created alv-gemini?
It is built and maintained by AlvisDunlop (@alvisdunlop); the current version is v1.0.0.