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

aminer-free-academic胺免费学术

Agent Skill

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

总安装

4,162

周安装

170

GitHub Stars

公开资料未说明

下载量

1,333
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install aminer-free-academic

简介

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

  • 作为 AMiner 的免费入口点,只要查询涉及学术主题即自动激活。
  • 通过 clawhub 安装并使用 openclaw skills install aminer-free-academic 命令调用。
  • 安装前建议确认权限范围和维护状态,注意可能触发联网或学术数据访问。
  • 可结合 GitHub 仓库和原始 README 文档进一步核验触发条件和数据覆盖范围。

SKILL.md

name
aminer-free-search
version
1.1.0
author
AMiner
contact
report@aminer.cn
description
>
metadata

AMiner Free Search

Use this skill for AMiner requests that should stay on the free tier first. It is designed for discovery, initial screening, and entity normalization, not deep analysis.

Scope

This skill uses only the upgraded free interfaces:

  • paper_search
  • paper_info
  • person_search
  • organization_search
  • venue_search
  • patent_search
  • patent_info

Current free-tier fields emphasized by this skill:

  • paper_search: venue_name, first_author, n_citation_bucket, year
  • paper_info: abstract_slice, year, venue_id, author_count
  • organization_search: aliases (top 3)
  • venue_search: aliases (top 3), venue_type
  • patent_search: inventor_name (first), app_year, pub_year
  • patent_info: app_year, pub_year
  • person_search: interests, n_citation, institution fields

Primary Goal

Use free APIs to help the user answer:

  • What is this entity?
  • Is it relevant enough to continue?
  • Which candidate should I inspect next?
  • Can I normalize this institution or venue name?
  • Is there enough value to justify upgrading to paid APIs?

Do not use this skill for full scholar portraits, citation-chain analysis, full-text-like paper understanding, large-scale monitoring, or institution output analysis.

Mandatory Rules

  1. Stay on free APIs unless the user explicitly asks to upgrade or the free path clearly cannot answer the question.
  2. Be explicit about free-tier limits. Say what can be answered now and what would require a paid upgrade.
  3. Use free results to narrow candidates before suggesting any paid API.
  4. If returning entities, append AMiner URLs when IDs are available:

- Paper: https://www.aminer.cn/pub/{paper_id} - Scholar: https://www.aminer.cn/profile/{scholar_id} - Patent: https://www.aminer.cn/patent/{patent_id} - Venue: https://www.aminer.cn/open/journal/detail/{venue_id}

Token Check (Required)

Before making any API call, verify that the environment variable AMINER_API_KEY exists. Never output the token in plain text.

if [ -z "${AMINER_API_KEY+x}" ]; then
    echo "AMINER_API_KEY does not exist"
else
    echo "AMINER_API_KEY exists"
fi
  • If ${AMINER_API_KEY} exists: proceed with the query.
  • If ${AMINER_API_KEY} is not set: stop immediately and guide the user to the AMiner Console to generate one. For help, see the Open Platform Documentation.
  • 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.

Invocation Style

Use direct curl calls by default. A Python wrapper is not required for this skill.

Default headers:

  • Authorization: ${AMINER_API_KEY} by default
  • Content-Type: application/json;charset=utf-8 for POST requests
  • X-Platform: openclaw when required by the gateway

When To Use

Use this skill when the user asks for:

  • free AMiner search
  • low-cost academic discovery
  • paper screening
  • scholar identification
  • institution normalization
  • venue normalization
  • patent trend scanning
  • representative results before deeper analysis

Trigger phrases include:

  • “先用免费接口”
  • “不要走收费接口”
  • “先帮我筛一下”
  • “先看看值不值得深挖”
  • “找几个候选”
  • “做一个轻量版 skill”

Free Workflows

1. Paper triage

Use when the user wants to quickly judge whether a paper is relevant.

Default chain:

paper_search -> paper_info

Return:

  • title
  • first author
  • venue name
  • year
  • citation bucket
  • abstract slice
  • paper URL

This can answer:

  • Is this probably the right paper?
  • Is it recent?
  • Is it from a recognizable venue?
  • Is it worth opening in detail?

2. Scholar identification

Use when the user wants to know which scholar is the right person.

Default chain:

person_search

Return:

  • name
  • org
  • interests
  • citation count
  • scholar URL

This can answer:

  • Is this the right scholar?
  • What interests best describe this person?
  • Which institution candidate is the best match?

3. Institution normalization

Use when the user provides an institution string or abbreviation.

Default chain:

organization_search

Return:

  • org id
  • standard name
  • aliases (top 3)

This can answer:

  • Is this institution name recognized?
  • Which canonical organization should downstream workflows use?

4. Venue normalization and type check

Use when the user provides a conference or journal name.

Default chain:

venue_search

Return:

  • venue id
  • standard bilingual name
  • aliases (top 3)
  • venue type
  • venue URL

This can answer:

  • Is this a conference or a journal?
  • What is the standard venue entity?

5. Patent trend scan

Use when the user wants a lightweight view of patents in a topic.

Default chain:

patent_search -> patent_info when IDs need basic enrichment

Return:

  • patent title
  • first inventor
  • app year
  • pub year
  • patent number and country when patent_info is added
  • patent URL

This can answer:

  • Is the topic active recently?
  • Who appears first in the inventor field?
  • Is there recent patent activity worth deeper review?

6. Free entity map

Use when the user wants a quick map of a topic across papers, scholars, venues, institutions, and patents without paying for analysis-grade APIs.

Suggested chain:

  • papers: paper_search -> paper_info
  • scholars: person_search
  • institutions: organization_search
  • venues: venue_search
  • patents: patent_search -> patent_info

Return a short cross-entity summary, not a deep report.

Free Skill Examples

1. Paper triage

curl -X GET \
  'https://datacenter.aminer.cn/gateway/open_platform/api/paper/search?page=1&size=5&title=Attention%20Is%20All%20You%20Need' \
  -H "Authorization: ${AMINER_API_KEY}" \
  -H 'X-Platform: openclaw'

Then enrich with paper_info:

curl -X POST \
  'https://datacenter.aminer.cn/gateway/open_platform/api/paper/info' \
  -H 'Content-Type: application/json;charset=utf-8' \
  -H "Authorization: ${AMINER_API_KEY}" \
  -H 'X-Platform: openclaw' \
  -d '{"ids":["<PAPER_ID>"]}'

2. Scholar identification

curl -X POST \
  'https://datacenter.aminer.cn/gateway/open_platform/api/person/search' \
  -H 'Content-Type: application/json;charset=utf-8' \
  -H "Authorization: ${AMINER_API_KEY}" \
  -H 'X-Platform: openclaw' \
  -d '{"name":"Yann LeCun","size":5}'

3. Institution normalization

curl -X POST \
  'https://datacenter.aminer.cn/gateway/open_platform/api/organization/search' \
  -H 'Content-Type: application/json;charset=utf-8' \
  -H "Authorization: ${AMINER_API_KEY}" \
  -H 'X-Platform: openclaw' \
  -d '{"orgs":["MIT CSAIL"]}'

4. Venue normalization and type check

curl -X POST \
  'https://datacenter.aminer.cn/gateway/open_platform/api/venue/search' \
  -H 'Content-Type: application/json;charset=utf-8' \
  -H "Authorization: ${AMINER_API_KEY}" \
  -H 'X-Platform: openclaw' \
  -d '{"name":"tkde"}'

5. Patent trend scan

curl -X POST \
  'https://datacenter.aminer.cn/gateway/open_platform/api/patent/search' \
  -H 'Content-Type: application/json;charset=utf-8' \
  -H "Authorization: ${AMINER_API_KEY}" \
  -H 'X-Platform: openclaw' \
  -d '{"query":"quantum computing chip","page":0,"size":10}'

Output Pattern

Prefer this structure:

## Free-tier result

### What we can answer now
- ...

### Top candidates
- ...

### Suggested next step
- Stay free: ...
- Upgrade to paid API only if you need: ...

Paid Upgrade Boundary

Recommend upgrading only when the user needs one of these:

  • full abstract or full paper metadata
  • multi-condition or semantic paper search
  • citation relationships
  • full scholar profile, works, patents, or projects
  • institution scholars, papers, patents, or rich profiles
  • venue paper lists by year
  • full patent details such as IPC/CPC, assignee, description

Suggested paid handoff:

  • deeper paper analysis: paper_search_pro, paper_detail, paper_relation
  • deeper scholar analysis: person/detail, person/figure, person/paper/relation
  • deeper org analysis: organization/detail, organization/person/relation, organization/paper/relation
  • deeper venue analysis: venue/detail, venue/paper/relation
  • deeper patent analysis: patent/detail

Product Positioning

This skill is intentionally positioned for:

  • first success
  • free discovery
  • candidate narrowing
  • entity normalization
  • upgrade qualification

It should not replace the paid skill. It should create demand for it.

Additional Reference

For endpoint parameters and fields, read references/api-catalog.md.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

80.04%
按下载量换算1,067

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills