Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

超能文献-AI文档翻译与学术检索

v1.0.0

超能文献(Suppr)学术文献检索 API。当用户需要检索学术论文、查找 PubMed 文献、搜索研究资料时激活。

0· 77·0 current·0 all-time
byJianguang Zheng@zjg678

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for zjg678/suppr-academic-search-skills.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "超能文献-AI文档翻译与学术检索" (zjg678/suppr-academic-search-skills) from ClawHub.
Skill page: https://clawhub.ai/zjg678/suppr-academic-search-skills
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install suppr-academic-search-skills

ClawHub CLI

Package manager switcher

npx clawhub@latest install suppr-academic-search-skills
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
The name/description describe a PubMed-based semantic search and the SKILL.md provides concrete endpoints and parameters that match that purpose. However, the skill metadata declares no required credentials while the docs clearly require an API key (Authorization: Bearer <your_api_key>), and the provider domain (api.suppr.wilddata.cn) and source/homepage are unknown.
Instruction Scope
The runtime instructions are scoped to calling the Suppr API (POST semantic_search), forming JSON queries, and interpreting responses. The instructions do not request reading local files, system config, or other unrelated environment variables. They do, however, cause user queries and returned metadata to be sent to/received from an external third-party endpoint.
Install Mechanism
No install spec or code files are present; the skill is instruction-only, so nothing is written to disk and no third-party binaries or packages are pulled in by the skill itself.
!
Credentials
The SKILL.md requires an API key in the Authorization header, but the skill's declared requirements list no environment variables or primary credential. This mismatch is concerning: the agent will need an API key to function but the metadata does not declare it, and the API key would be sent to an external, unverified domain.
Persistence & Privilege
The skill does not request 'always' presence and does not modify system-wide settings; its privileges are limited to being invoked when selected.
What to consider before installing
This skill appears to be a wrapper for a third‑party academic search API, but the publisher and homepage are unknown and the SKILL.md expects you to provide an API key even though the skill metadata doesn't declare one. Before installing: (1) verify the provider (suppr.wilddata.cn) and read its privacy/security docs; (2) confirm where the API key should come from and why the metadata omits it; (3) avoid sending sensitive or proprietary content through the skill until you trust the endpoint; (4) prefer manual invocation (not autonomous) unless you trust the service and its data handling. If anything is unclear, ask the skill author to add a homepage, declare the required API key in metadata, and document data retention and usage.

Like a lobster shell, security has layers — review code before you run it.

academic-searchvk9747t5m9177czgf262xc2ewds849cvhlatestvk9747t5m9177czgf262xc2ewds849cvhliterature-searchvk9747t5m9177czgf262xc2ewds849cvhpubmedvk9747t5m9177czgf262xc2ewds849cvh
77downloads
0stars
1versions
Updated 3w ago
v1.0.0
MIT-0

超能文献学术文献检索 API

超能文献(Suppr)提供基于 PubMed 的 AI 语义文献检索服务,支持自然语言查询和丰富的文献元数据返回。

何时激活

  • 用户需要检索学术论文或文献
  • 用户需要搜索 PubMed 数据库
  • 用户需要查找特定主题的研究资料
  • 用户需要获取论文的 DOI、PMID、影响因子等元数据

API 端点

语义文献检索

POST https://api.suppr.wilddata.cn/v1/docs/semantic_search
Content-Type: application/json
Authorization: Bearer <your_api_key>

请求体参数:

参数类型必填默认值说明
queryString-自然语言查询字符串
topkInteger20最大返回结果数量,范围 1-100
return_doc_keysString[][]指定返回的文献字段列表
auto_selectBooleantrue是否由 AI 自动选择最优结果

return_doc_keys 完整字段列表

字段说明
title标题
link链接
snippet检索条目内容片段/摘要
datetime时间
abstract论文摘要
doi数字对象标识符 DOI
elocation_doi电子定位符 DOI
pii出版商项目标识符 PII
elocation_pii电子定位符 PII
cited_by_num被引用次数
pub_year出版年份
pub_season出版季
pub_month出版月份
pub_day出版日
issue_pub_year出版时间(期刊印刷版)
issue_pub_season出版季(期刊印刷版)
issue_pub_month出版月份(期刊印刷版)
issue_pub_day出版日(期刊印刷版)
article_pub_year出版年份(电子版)
article_pub_season出版季(电子版)
article_pub_month出版月份(电子版)
article_pub_day出版日(电子版)
publication出版物
publication_abbr出版物缩写
publication_nlm_id出版物 NLM ID
p_issn纸质版 ISSN
e_issn电子版 ISSN
l_issn链接 ISSN
impact_factor影响因子
publisher出版商
publisher_abbr出版商(缩写)
publisher_location出版机构所在地
pub_source_str出版源
language语言(title/abstract/snippet)
pub_language原出版语言
i18n_infos国际化信息
figure_ids图片 ID 列表
figure_urls图片 URL 列表
table_ids表格 ID 列表
pmidPubMed ID
pmcidPubMed Central ID
pub_volume
pub_issue
pub_page页码
pub_start_page起始页码
pub_end_page结束页码
pub_model出版模式

常用字段组合

快速概览

{
  "query": "糖尿病最新研究进展",
  "topk": 10,
  "return_doc_keys": ["title", "abstract", "pub_year"],
  "auto_select": true
}

引用格式

{
  "query": "CRISPR gene editing therapy",
  "topk": 20,
  "return_doc_keys": ["title", "doi", "pmid", "authors", "publication", "pub_year", "pub_volume", "pub_issue", "pub_page"],
  "auto_select": true
}

完整元数据

{
  "query": "machine learning drug discovery",
  "topk": 5,
  "return_doc_keys": ["title", "abstract", "doi", "pmid", "pmcid", "impact_factor", "authors", "pub_year", "publication", "cited_by_num"],
  "auto_select": true
}

响应格式

{
  "code": 0,
  "data": {
    "search_items": [
      {
        "doc": {
          "title": "论文标题",
          "abstract": "论文摘要...",
          "doi": "10.1007/xxxxx",
          "pmid": "35397038",
          "authors": [
            {
              "fore_name": "名",
              "last_name": "姓",
              "affiliations": [
                { "name": "所属机构" }
              ]
            }
          ],
          "publication": "期刊名称",
          "pub_year": 2024,
          "impact_factor": 5.2
        },
        "search_gateway": "pubmed"
      }
    ],
    "consumed_points": 20
  },
  "msg": ""
}

code 为 0 表示成功,非 0 表示错误。

使用示例

curl -X POST https://api.suppr.wilddata.cn/v1/docs/semantic_search \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "query": "阿尔茨海默病早期诊断生物标志物",
    "topk": 10,
    "return_doc_keys": ["title", "abstract", "doi", "pmid", "pub_year", "impact_factor"],
    "auto_select": true
  }'

注意事项

  • topk 为期望返回的最大数量,实际返回可能少于该值(取决于检索结果)
  • 不指定 return_doc_keys 时返回默认字段集
  • auto_selecttrue 时,AI 会自动筛选与查询最相关的结果
  • 速率限制:60 次/分钟

Comments

Loading comments...