技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v0.0.3
统计:⭐ 0 · 222 · 1 current installs · 1 all-time installs
⭐ 0
安装量(当前) 1
🛡 VirusTotal :良性 · OpenClaw :良性
Package:ansatzx/jina-deepsearch
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill is an instruction-only curl wrapper that uses a single AIHubMix API key to call Jina's DeepSearch model; its requirements and instructions are coherent with its stated purpose.
目的
The name/description say 'Jina DeepSearch via AIHubMix' and the SKILL.md issues a curl request to aihubmix.com with AIHUBMIX_API_KEY — the declared binary and env var match the stated purpose. Minor note: homepage is jina.ai while the actual API endpoint used is aihubmix.com; this is plausible (Jina model exposed via a third-party gateway) but worth verifying if you expect direct calls to jina.ai.
说明范围
Runtime instructions are narrowly scoped: they show a single curl POST to https://aihubmix.com/v1/chat/completions and only reference AIHUBMIX_API_KEY and Content-Type. The instructions do not read local files, other env vars, or send data elsewhere.
安装机制
There is no install spec and no code files; this is instruction-only and relies on curl being present. That minimizes on-disk risk.
证书
Only one required env var (AIHUBMIX_API_KEY) is requested, which is appropriate for making authenticated calls to AIHubMix. The key name indicates a secret — that is expected and proportional to the skill's function.
持久
always is false and the skill is user-invocable; it does not request persistent or elevated privileges. Note: disable-model-invocation is false (normal default), so the agent could call it autonomously if allowed by policy.
综合结论
This skill simply runs curl against aihubmix.com using the AIHUBMIX_API_KEY you provide. Before installing: 1) Verify you trust AIHubMix (aihubmix.com) and are comfortable giving it the queries you send — it will receive your request text and any data you include. 2) Confirm whether Jina's model is actually being proxied by AIHubMix (the skill's homepage points to jina.ai while the API host is aihubmix.com). 3) Treat AIHUBMIX_API_KEY as a secr…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「jina-deepsearch」。简介:Jina DeepSearch API access via AIHubMix - use curl to call the HTTP API directl…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/ansatzx/jina-deepsearch/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: jina-deepsearch
description: Jina DeepSearch API access via AIHubMix - use curl to call the HTTP API directly.
homepage: https://jina.ai/
metadata:
{
"openclaw":
{
"emoji": "🔍",
"requires": { "env": ["AIHUBMIX_API_KEY"], "bins": ["curl"] },
"install":
[
{
"id": "config",
"kind": "manual",
"label": "Configure AIHUBMIX_API_KEY",
"instructions": "Set AIHUBMIX_API_KEY environment variable. Get your key from https://aihubmix.com",
},
],
},
}
---
# Jina DeepSearch
Access Jina's DeepSearch API via AIHubMix using curl.
## Quick Start
```bash
# Set your API key first
export AIHUBMIX_API_KEY="sk-..."
# Call the API directly with curl
curl https://aihubmix.com/v1/chat/completions
-H "Content-Type: application/json"
-H "Authorization: Bearer $AIHUBMIX_API_KEY"
-d '{
"model": "jina-deepsearch-v1",
"messages": [{"role": "user", "content": "Your search query"}]
}'
```
## Configuration
Set `AIHUBMIX_API_KEY` environment variable. Get your API key from https://aihubmix.com
## Model
- `jina-deepsearch-v1` - Jina's deep search model