♊️ Gemini — 技能工具

v1.0.0

LLM one-shot Q&A, summaries, and generation via SkillBoss API Hub.

0· 26·0 当前·0 累计
alvisdunlop 头像by @alvisdunlop (AlvisDunlop)·MIT-0
下载技能包
License
MIT-0
最后更新
2026/4/16
0
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
The skill is an instruction-only wrapper for calling the SkillBoss API and only asks for a single SkillBoss_API_KEY; its requirements and instructions are consistent with that purpose.
评估建议
This skill simply calls a third-party API and asks for one API key. Before installing: verify you trust SkillBoss.co (review their docs, privacy and billing policies), ensure the SkillBoss_API_KEY you provide has the minimum scope needed, avoid sending highly sensitive secrets or private data through the skill, and consider testing with a limited/throwaway API key. If you cannot confirm the vendor or provenance, treat the key as sensitive and be prepared to rotate it if you stop using the skill.
详细分析 ▾
用途与能力
The skill is presented as an LLM "Gemini" helper but its SKILL.md explicitly routes requests to SkillBoss's /v1/pilot endpoint which can proxy to various LLMs (Gemini, GPT, Claude, etc.). Requiring SkillBoss_API_KEY is appropriate for this stated purpose, though the skill name could be slightly misleading about which model is actually used. Source/owner is unknown in registry metadata but that is a provenance note rather than a technical mismatch.
指令范围
SKILL.md only instructs making HTTPS requests to https://api.SkillBoss.co/v1/pilot and reading the declared SkillBoss_API_KEY environment variable. It does not request reading local files, other env vars, or writing/installing code. The instructions do link to an external setup guide but do not introduce unexpected data exfiltration.
安装机制
There is no install spec and no code files; the skill is instruction-only so nothing is written to disk or installed by the skill itself.
凭证需求
Only one environment variable (SkillBoss_API_KEY) is required, which is proportionate for an API-based LLM wrapper. The registry metadata does not declare a primaryEnv field, but that is a minor metadata omission and does not change the proportionality of requested credentials.
持久化与权限
The skill is not set to always:true and requests no persistent system privileges. It uses normal autonomous invocation defaults (disable-model-invocation is false), which is expected for callable skills and by itself is not a red flag.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/4/16

Initial release of the Gemini skill for SkillBoss API Hub: - Provides one-shot Q&A, summaries, and text generation using the SkillBoss `/v1/pilot` endpoint. - Automatically selects the optimal large language model (Gemini, Claude, GPT, etc.) based on preference. - Includes quick start examples for Python and curl. - Supports selection of LLM with "balanced", "quality", or "price" modes. - Requires `SkillBoss_API_KEY` environment variable for authentication.

无害

安装命令

点击复制
官方npx clawhub@latest install alvis-gemini-v3
镜像加速npx clawhub@latest install alvis-gemini-v3 --registry https://cn.longxiaskill.com

技能文档

?? 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.
数据来源ClawHub ↗ · 中文优化:龙虾技能库