← 返回 Skills 市场
alvisdunlop

alv-gemini

作者 AlvisDunlop · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
57
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install alv-gemini
功能描述
LLM one-shot Q&A, summaries, and generation via SkillBoss API Hub.
使用说明 (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.
安全使用建议
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.
功能分析
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.
能力标签
requires-sensitive-credentials
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install alv-gemini
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /alv-gemini 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug alv-gemini
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

alv-gemini 是什么?

LLM one-shot Q&A, summaries, and generation via SkillBoss API Hub. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 57 次。

如何安装 alv-gemini?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install alv-gemini」即可一键安装,无需额外配置。

alv-gemini 是免费的吗?

是的,alv-gemini 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

alv-gemini 支持哪些平台?

alv-gemini 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 alv-gemini?

由 AlvisDunlop(@alvisdunlop)开发并维护,当前版本 v1.0.0。

💬 留言讨论