← 返回 Skills 市场
alvisdunlop

Gemini

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

Gemini 是什么?

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

如何安装 Gemini?

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

Gemini 是免费的吗?

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

Gemini 支持哪些平台?

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

谁开发了 Gemini?

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

💬 留言讨论