Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

aminer-open-academic阿米纳开放学术

Agent Skill

aminer-open-academic 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

28,448

周安装

1,222

GitHub Stars

1

下载量

9,972
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:aminer-open-academic(阿米纳开放学术)
来源仓库:https://github.com/canxiangcc/aminer-open-academic
安装命令:
openclaw skills install aminer-open-academic
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install aminer-open-academic

简介

aminer-open-academic 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 每当用户查询涉及学术、研究主题时自动激活,支持论文、学者、机构等查询。
  • 通过 clawhub 安装并使用 openclaw skills install aminer-open-academic 命令调用。
  • 安装前建议确认权限范围和维护状态,注意可能触发联网或学术 API 调用。
  • 可结合 GitHub 仓库和原始 README 文档进一步核验触发词和返回数据结构。

SKILL.md

name
aminer-data-search
version
1.1.1
author
AMiner
contact
report@aminer.cn
description
>
metadata

AMiner Open Platform Academic Data Query

27 APIs + 5 workflows. Token required: set AMINER_API_KEY env var.

  • Docs: https://open.aminer.cn/open/docs | Console: https://open.aminer.cn/open/board?tab=control

Mandatory Rules (Critical)

  1. Token Security: Only check whether AMINER_API_KEY exists; never expose the token in plain text anywhere.
  2. Cost Control: Prefer optimal combined queries; never do indiscriminate full-detail retrieval. Default to top 10 details when the user has not specified a count.
  3. Free-First: Prefer free APIs unless the user explicitly requires deeper fields; only upgrade to paid APIs when free ones cannot satisfy the need.
  4. Result Links: Always append an accessible URL after each entity in the output.
  5. Disambiguation: Scholar ambiguity → filter by org/org_id or ask user to confirm. Org ambiguity → use org_disambiguate_pro. Paper ambiguity → cross-check year + venue_name + first_author.
  6. Cost Report: After completing all API calls, always output a cost summary to the user showing: each API called, its unit price, number of calls, and the total cost. Format example: [Cost] ¥X.XX total, N API calls (api_a: ¥X.XX × N, api_b: Free × N).
  7. High-Cost Confirmation (≥ ¥5): Before executing a workflow or call chain whose estimated total cost is ¥5.00 or more, stop and ask the user for confirmation first. Show the planned call chain, estimated cost per step, and the total. Only proceed after the user explicitly agrees. This applies to both predefined workflows (e.g., Scholar Profile ~¥6.00) and ad-hoc multi-step plans.

Entity URL templates (mandatory):

  • Paper: https://www.aminer.cn/pub/{paper_id}
  • Scholar: https://www.aminer.cn/profile/{scholar_id}
  • Patent: https://www.aminer.cn/patent/{patent_id}
  • Journal: https://www.aminer.cn/open/journal/detail/{journal_id}

Token Check (Required)

Check AMINER_API_KEY exists before any API call. Never expose token in plain text.

[ -z "${AMINER_API_KEY+x}" ] && echo "AMINER_API_KEY missing" || echo "AMINER_API_KEY exists"
  • If ${AMINER_API_KEY} exists: proceed. If not: check --token parameter. If neither: stop, guide user to Console to generate one.
  • If the user provides AMINER_API_KEY inline (e.g. "My token is xxx"), accept it for the current session, but recommend setting it as an environment variable for better security.
  • Default headers: Authorization: ${AMINER_API_KEY}, X-Platform: openclaw, Content-Type: application/json;charset=utf-8 (POST).

Call Guardrails

  1. Parameter names and types must match references/api-catalog.md exactly.
  2. paper_info is batch-only: {"ids": [...]}. paper_detail is single-paper only: one id. Never mix them.
  3. When multiple details are needed, filter with a low-cost API first, then fetch details for a small set.

Paper Search API Selection Guide

When the user says "search for papers", determine the goal first:

APIFocusUse CaseCost
paper_searchTitle search → paper_idKnown paper title, locate targetFree
paper_search_proMulti-condition search (author/org/venue/keyword)Topic search, sort by citations or year¥0.01
paper_qa_searchNatural language Q&A / topic keyword searchSemantic search, structured keyword OR/AND¥0.05
paper_list_by_keywordsMulti-keyword batch retrievalBatch thematic retrieval¥0.10
paper_detail_by_conditionYear + venue dimensionJournal annual monitoring¥0.20

Default routing:

  1. Known title: paper_search -> paper_detail -> paper_relation
  2. Conditional filtering: paper_search_pro -> paper_detail
  3. Natural language Q&A: paper_qa_search (fall back to paper_search_pro if no results)
  4. Journal annual analysis: venue_search -> venue_paper_relation -> paper_detail_by_condition

Key paper_qa_search rules:

  • query and topic_high/topic_middle/topic_low are mutually exclusive; do not pass both.
  • query mode: pass a natural language string. topic_* mode: expand synonyms/English variants first.
  • Supports sci_flag, force_citation_sort, force_year_sort, author_id, org_id, venue_ids filters.

Free-tier screening fields available:

  • paper_search: venue_name, first_author, n_citation_bucket, year
  • paper_info: abstract_slice, year, venue_id, author_count
  • person_search: interests, n_citation, org/org_id
  • organization_search: aliases
  • venue_search: aliases, venue_type
  • patent_search: inventor_name, app_year, pub_year
  • patent_info: app_year, pub_year

Handling Out-of-Workflow Requests

When the user's request falls outside the 5 workflows:

  1. Read references/api-catalog.md to confirm available APIs, parameters, and response fields.
  2. Design the shortest viable call chain: locate ID → supplement details → expand relationships.
  3. Do not give up because "no existing workflow fits"; actively compose APIs based on api-catalog.

5 Combined Workflows

Workflow 1: Scholar Profile (~¥6.00)

Use Case: Complete academic profile — bio, research interests, papers, patents, projects. Cost note: Full execution exceeds the ¥5 threshold → must ask for user confirmation before proceeding (Rule 7). Show the planned steps and cost. Confirm which sub-modules are needed; skip patents/projects if not requested.

Call Chain:

Scholar search (name → person_id)
    ↓
Parallel calls (pick as needed):
  ├── Scholar details (bio/education/honors)         ¥1.00
  ├── Scholar portrait (interests/work history)      ¥0.50
  ├── Scholar papers (paper list)                    ¥1.50
  ├── Scholar patents (patent list)                  ¥1.50
  └── Scholar projects (funding info)                ¥1.50

Fallback: if paper_search yields no results in sub-steps, fall back to paper_search_pro.


Workflow 2: Paper Deep Dive (~¥0.12)

Use Case: Full paper information and citation chain from a title or keyword.

Call Chain:

Paper search / Paper search pro (title/keyword → paper_id)
    ↓
Paper details (abstract/authors/DOI/journal/year/keywords)  ¥0.01
    ↓
Paper citations (cited papers → cited_ids)                  ¥0.10
    ↓
(Optional) Batch paper_info for cited papers                Free

Fallback: if paper_search yields no results, fall back to paper_search_pro.


Workflow 3: Org Analysis (~¥0.81)

Use Case: Institution scholar size, paper output, patent count — for competitive research or partnership evaluation.

Call Chain:

Org disambiguation pro (raw string → org_id)  ¥0.05
    ↓
Parallel calls:
  ├── Org details (description/type)             ¥0.01
  ├── Org scholars (scholar list, 10/call)       ¥0.50
  ├── Org papers (paper list, 10/call)           ¥0.10
  └── Org patents (patent IDs, up to 10,000)     ¥0.10
If disambiguation pro returns no ID, fall back to org_search (free).

Workflow 4: Venue Papers (~¥0.10 - ¥0.30)

Use Case: Track journal papers by year; useful for submission research or trend analysis.

Call Chain:

Venue search (name → venue_id)                          Free
    ↓
(Optional) Venue details (ISSN/type/abbreviation)       ¥0.20
    ↓
Venue papers (venue_id + year → paper_id list)          ¥0.10
    ↓
(Optional) Batch paper detail query

Workflow 5: Patent Analysis (~¥0.02)

Use Case: Search patents in a technology domain, or retrieve a scholar's/institution's patent portfolio.

Call Chain (standalone search):

Patent search (query → patent_id)        Free
    ↓
Patent info / Patent details             Free / ¥0.01

Call Chain (via scholar/institution):

Scholar search → Scholar patents (patent_id list)
Org disambiguation → Org patents (patent_id list)
    ↓
Patent info / Patent details

Individual API Quick Reference

Full parameter docs: read references/api-catalog.md
#TitleMethodPriceAPI Path (Base: datacenter.aminer.cn/gateway/open_platform)
1Paper QA SearchPOST¥0.05/api/paper/qa/search
2Scholar SearchPOSTFree/api/person/search
3Paper SearchGETFree/api/paper/search
4Paper Search ProGET¥0.01/api/paper/search/pro
5Patent SearchPOSTFree/api/patent/search
6Org SearchPOSTFree/api/organization/search
7Venue SearchPOSTFree/api/venue/search
8Scholar DetailsGET¥1.00/api/person/detail
9Scholar ProjectsGET¥1.50/api/project/person/v3/open
10Scholar PapersGET¥1.50/api/person/paper/relation
11Scholar PatentsGET¥1.50/api/person/patent/relation
12Scholar PortraitGET¥0.50/api/person/figure
13Paper InfoPOSTFree/api/paper/info
14Paper DetailsGET¥0.01/api/paper/detail
15Paper CitationsGET¥0.10/api/paper/relation
16Patent InfoGETFree/api/patent/info
17Patent DetailsGET¥0.01/api/patent/detail
18Org DetailsPOST¥0.01/api/organization/detail
19Org PatentsGET¥0.10/api/organization/patent/relation
20Org ScholarsGET¥0.50/api/organization/person/relation
21Org PapersGET¥0.10/api/organization/paper/relation
22Venue DetailsPOST¥0.20/api/venue/detail
23Venue PapersPOST¥0.10/api/venue/paper/relation
24Org DisambiguationPOST¥0.01/api/organization/na
25Org Disambiguation ProPOST¥0.05/api/organization/na/pro
26Paper Batch QueryGET¥0.10/api/paper/list/citation/by/keywords
27Paper Details by Year+VenueGET¥0.20/api/paper/platform/allpubs/more/detail/by/ts/org/venue

References

  • Full API parameter documentation: read references/api-catalog.md
  • Optional Python client: scripts/aminer_client.py
  • Test cases: evals/evals.json
  • Official documentation: https://open.aminer.cn/open/docs
  • Console: https://open.aminer.cn/open/board?tab=control

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

78.22%
按下载量换算7,800

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills