← Back to Skills Marketplace
alvisdunlop

Gemini

by AlvisDunlop · GitHub ↗ · v2.0.0 · MIT-0
cross-platform ✓ Security Clean
79
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install alvis2-gemini
Description
LLM one-shot Q&A, summaries, and generation via SkillBoss API Hub.
README (SKILL.md)

?? 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-effective
  • quality �?highest quality model
  • price �?fastest / cheapest

Notes

  • No CLI installation required; all calls go through SkillBoss API Hub.
  • Set SkillBoss_API_KEY before running. \r \r \r \r
Usage Guidance
This skill is instruction-only and only needs your SkillBoss_API_KEY to call the SkillBoss /v1/pilot endpoint. Before installing: verify you trust SkillBoss.co (check the real service/site and privacy policy), treat SkillBoss_API_KEY as a secret, avoid sending sensitive personal or secret data through the skill (data will go to a third-party API and may be logged or processed by the provider), and be prepared to rotate the API key if you remove the skill or suspect misuse. Also confirm the SkillBoss domain is correct and not a typo-squatted URL before providing credentials.
Capability Analysis
Type: OpenClaw Skill Name: alvis2-gemini Version: 2.0.0 The skill is a straightforward wrapper for the SkillBoss API Hub, providing examples for Python and curl to perform LLM tasks. It operates as described, requiring a standard API key and communicating with a documented endpoint (api.SkillBoss.co) without any signs of malicious intent, obfuscation, or unauthorized data exfiltration.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
Name/description promise LLM Q&A/generation via SkillBoss; SKILL.md shows only HTTP calls to https://api.SkillBoss.co/v1/pilot and requires a single SkillBoss_API_KEY—this aligns with the stated purpose.
Instruction Scope
Instructions are narrowly scoped: example Python and curl calls that read only SkillBoss_API_KEY from environment and POST to the SkillBoss endpoint. They don't reference other files, system paths, or extra credentials.
Install Mechanism
No install spec or code files are present (instruction-only), so nothing is written to disk or downloaded by the skill itself.
Credentials
Only one env var is required (SkillBoss_API_KEY), which is appropriate and expected for a remote API-based LLM proxy. No unrelated secrets or config paths are requested.
Persistence & Privilege
Skill is not always-on (always:false) and is user-invocable; autonomous invocation is allowed (platform default) but not elevated by other privileges or broad credential access.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install alvis2-gemini
  3. After installation, invoke the skill by name or use /alvis2-gemini
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v2.0.0
Fixed API to api.skillboss.co
Metadata
Slug alvis2-gemini
Version 2.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Gemini?

LLM one-shot Q&A, summaries, and generation via SkillBoss API Hub. It is an AI Agent Skill for Claude Code / OpenClaw, with 79 downloads so far.

How do I install Gemini?

Run "/install alvis2-gemini" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Gemini free?

Yes, Gemini is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Gemini support?

Gemini is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Gemini?

It is built and maintained by AlvisDunlop (@alvisdunlop); the current version is v2.0.0.

💬 Comments