gemini
LLM one-shot Q&A, summaries, and generation via SkillBoss API Hub.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/basillytton/alvis-v2-gemini?? 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.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-basillytton-alvis-v2-gemini": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
ai-ppt-generator
Generate PPT with SkillBoss API Hub. Smart template selection based on content.
canvas-design
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.
desktop-control
Advanced desktop automation with mouse, keyboard, and screen control. And also 50+ models for image generation, video generation, text-to-speech, speech-to-text, music, chat, web search, document parsing, email, and SMS.
Nextjs
Build Next.js 15 apps with App Router, server components, caching, auth, and production patterns.
gemini
LLM one-shot Q&A, summaries, and generation via SkillBoss API Hub.