← Back to Skills Marketplace
alvisdunlop

alv-gemini

by AlvisDunlop · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
57
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install alv-gemini
Description
LLM one-shot Q&A, summaries, and generation via SkillBoss API Hub.
README (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.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-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.
Usage Guidance
This skill appears coherent and low-risk, but treat SKILLBOSS_API_KEY like any secret: only provide a key with the minimum required privileges and do not reuse high-privilege credentials. Verify you trust the provider (https://api.heybossai.com) and their privacy/data-retention policies before sending sensitive prompts, since requests and user content will go to an external service. Because this is instruction-only, there was no code to scan — if you need stronger assurance, ask the publisher for an official homepage/terms, or request a vetted connector from your platform instead of a third-party API key. If you have doubts, test with a limited-scope or ephemeral API key first.
Capability Analysis
Type: OpenClaw Skill Name: alv-gemini Version: 1.0.0 The skill provides documentation and code examples for interacting with the SkillBoss API Hub (api.heybossai.com) to perform LLM-based tasks. The Python and curl examples in SKILL.md demonstrate standard, transparent API requests using an environment variable for authentication, with no evidence of malicious intent, obfuscation, or unauthorized data exfiltration.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
Name/description state the skill proxies LLM requests via SkillBoss API Hub; the SKILL.md only shows POSTs to https://api.heybossai.com/v1/pilot and requires SKILLBOSS_API_KEY — this credential is appropriate and expected for the claimed functionality.
Instruction Scope
Runtime instructions are limited to making HTTP requests to SkillBoss and returning results (Python and curl examples). They do not instruct reading other environment variables, local files, or transmitting data to unrelated endpoints.
Install Mechanism
No install spec and no code files (instruction-only). That minimizes disk/write risk — nothing is downloaded or executed beyond making network requests at runtime.
Credentials
Only a single environment variable (SKILLBOSS_API_KEY) is required, which is proportional to an API-client skill. No additional unrelated secrets or config paths are requested.
Persistence & Privilege
always is false and there is no install or configuration that would persist or modify other skills. The skill can be invoked by the agent (normal default) but does not request elevated or permanent presence.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install alv-gemini
  3. After installation, invoke the skill by name or use /alv-gemini
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of the gemini skill for one-shot Q&A, summarization, and text generation via SkillBoss API Hub. - Supports Python and curl quick starts using the /v1/pilot endpoint, which automatically selects the optimal LLM. - Offers configurable model preferences: balanced, quality, or price. - Requires only setting the SKILLBOSS_API_KEY environment variable; no CLI installation needed.
Metadata
Slug alv-gemini
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

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.

💬 Comments