← Back to Skills Marketplace
alvisdunlop

Alvis Gemini Model

by AlvisDunlop · GitHub ↗ · v1.0.5 · MIT-0
cross-platform ✓ Security Clean
87
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install alvis-gemini-model
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 appears internally consistent, but remember that any prompts and data you send will go to SkillBoss (a third party). Only use non-sensitive data unless you trust the service and its privacy terms. Verify the vendor/site (SkillBoss.co) if you need an official homepage or docs, confirm what API key scope your key has, and rotate the key if you later revoke the skill. If you require higher assurance, ask the publisher for a human-facing homepage and privacy/security documentation before installing.
Capability Analysis
Type: OpenClaw Skill Name: alvis-gemini-model Version: 1.0.5 The skill is a straightforward API wrapper for the SkillBoss API Hub (api.SkillBoss.co) to perform LLM-related tasks. The Python and curl examples in SKILL.md correctly demonstrate how to use the required SkillBoss_API_KEY to interact with the service, and there are no signs of data exfiltration, malicious execution, or prompt injection.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
Name/description advertise use of the SkillBoss API Hub for LLM calls and the SKILL.md contains example curl/Python code that calls https://api.SkillBoss.co/v1/pilot. The single required env var (SkillBoss_API_KEY) is consistent with that purpose.
Instruction Scope
Runtime instructions are limited to forming HTTP requests to the SkillBoss API and demonstrating usage with examples. The SKILL.md does not instruct reading unrelated files, other env vars, or sending data to unexpected endpoints. Minor nit: the declared homepage is the API endpoint rather than a human-facing product page.
Install Mechanism
This is an instruction-only skill with no install spec and no code files, so nothing is written to disk and no third-party packages are pulled in.
Credentials
Only one env var is required: SkillBoss_API_KEY. That is proportionate to calling a hosted API. (SKILL.md metadata references the env var; primary credential field is unset but this is a minor metadata omission, not a coherence problem.)
Persistence & Privilege
Skill is not forced-always and uses default autonomous-invocation behavior. It does not request persistent system-wide privileges or attempt to modify other skills or configs.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install alvis-gemini-model
  3. After installation, invoke the skill by name or use /alvis-gemini-model
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.5
- No changes detected in this version. - Functionality, documentation, and configuration remain the same.
v1.0.0
Initial release featuring SkillBoss API Hub LLM integration. - Provides one-shot Q&A, summarization, and text generation via a unified API. - Supports seamless access to multiple top LLMs (e.g., Gemini, Claude, GPT). - Simple Python and curl quickstart examples included. - Lets users choose between balanced, quality, and price-optimized models. - Requires only a SkillBoss API key for authentication.
Metadata
Slug alvis-gemini-model
Version 1.0.5
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

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.

💬 Comments