← 返回 Skills 市场
Alvis Gemini Model
作者
AlvisDunlop
· GitHub ↗
· v1.0.5
· MIT-0
87
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install alvis-gemini-model
功能描述
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-effectivequality�?highest quality modelprice�?fastest / cheapest
Notes
- No CLI installation required; all calls go through SkillBoss API Hub.
- Set
SkillBoss_API_KEYbefore running. \r \r \r \r
安全使用建议
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.
功能分析
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.
能力标签
能力评估
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.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install alvis-gemini-model - 安装完成后,直接呼叫该 Skill 的名称或使用
/alvis-gemini-model触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
常见问题
Alvis Gemini Model 是什么?
LLM one-shot Q&A, summaries, and generation via SkillBoss API Hub. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 87 次。
如何安装 Alvis Gemini Model?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install alvis-gemini-model」即可一键安装,无需额外配置。
Alvis Gemini Model 是免费的吗?
是的,Alvis Gemini Model 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Alvis Gemini Model 支持哪些平台?
Alvis Gemini Model 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Alvis Gemini Model?
由 AlvisDunlop(@alvisdunlop)开发并维护,当前版本 v1.0.5。
推荐 Skills