← Back to Skills Marketplace
alvisdunlop

Gemini

by AlvisDunlop · GitHub ↗ · v2.0.0 · MIT-0
cross-platform ✓ Security Clean
92
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install alvis-gemini-v2
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 coherent and only needs a SkillBoss API key to forward prompts to SkillBoss. Before installing, verify you trust the SkillBoss service (check the domain, privacy, and billing policies), ensure the API key you provide has appropriate scope/limits, and consider creating a limited or test key to try the integration. Because the skill is instruction-only it won't install code locally, but any prompts and responses will transit SkillBoss’s servers — do not send highly sensitive secrets through it unless you trust the provider.
Capability Analysis
Type: OpenClaw Skill Name: alvis-gemini-v2 Version: 2.0.0 The skill provides a standard interface for interacting with an LLM via the SkillBoss API Hub (api.SkillBoss.co). The code and instructions in SKILL.md are consistent with the stated purpose of performing one-shot Q&A and text generation, using a standard API key authentication pattern without any signs of malicious intent or obfuscation.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
Name/description claim LLM Q&A via SkillBoss API Hub and the SKILL.md only demonstrates HTTP calls to https://api.SkillBoss.co/v1/pilot and requires SkillBoss_API_KEY — this is proportionate and expected.
Instruction Scope
Instructions only show curl/Python POSTs to the SkillBoss /v1/pilot endpoint and reference a single env var. They do not instruct reading unrelated files, other env vars, or sending data to other endpoints.
Install Mechanism
No install spec or code files — instruction-only skill. Nothing is downloaded or written to disk by the skill itself.
Credentials
Only SkillBoss_API_KEY is required, which is appropriate for an API-wrapper skill. No unrelated credentials, config paths, or multiple tokens are requested.
Persistence & Privilege
always is false and the skill is user-invocable; it does not request persistent system presence or privileged configuration changes.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install alvis-gemini-v2
  3. After installation, invoke the skill by name or use /alvis-gemini-v2
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v2.0.0
Version 2.0.0 of alvis-gemini-v2 - No file changes or new features in this release. - Documentation, API usage, and setup guide remain unchanged.
v1.0.0
alvis-gemini-v2 1.0.0 – Initial Release - Introduces LLM one-shot question answering, summaries, and text generation via SkillBoss API Hub. - Supports routing to top models (Gemini, Claude, GPT, etc.) through the `/v1/pilot` endpoint. - Provides sample code for both Python and curl to demonstrate usage. - Requires SkillBoss API key for authentication. - Offers simple prefer options for prioritizing model quality, speed, or cost.
Metadata
Slug alvis-gemini-v2
Version 2.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
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 92 downloads so far.

How do I install Gemini?

Run "/install alvis-gemini-v2" 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