aminer-mcp: Skill for Claude Code

.agent/skills/aminer-search/SKILL.md

aminer-search is a skill for Claude Code, Codex from huanghuoguoguo/aminer-mcp. It costs 19 tokens per session (581 once invoked), scanned A, original, MIT.

A command-line search tool for AMiner, a research database containing academic papers, researchers, and patents.

In plain words
What is it for?
Searching for papers by title, researchers by name and organization, and patents through the AMiner API.
Why use it?
It provides a documented way to look up research information when an AMiner access token is available.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

This is huanghuoguoguo/aminer-mcp's own configuration. It tells Claude Code and Codex how to work on aminer-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything aminer-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to huanghuoguoguo/aminer-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/huanghuoguoguo/aminer-mcp/main/.agent/skills/aminer-search/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/huanghuoguoguo/aminer-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for aminer-search

README.md
[![agentmods](https://agentmods.dev/badge/skills/huanghuoguoguo/aminer-mcp/aminer-search/github.svg)](https://agentmods.dev/skills/huanghuoguoguo/aminer-mcp/aminer-search)
Your own site
<a href="https://agentmods.dev/skills/huanghuoguoguo/aminer-mcp/aminer-search"><img src="https://agentmods.dev/badge/skills/huanghuoguoguo/aminer-mcp/aminer-search/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for aminer-search

Your own site · 80×15
<a href="https://agentmods.dev/skills/huanghuoguoguo/aminer-mcp/aminer-search"><img src="https://agentmods.dev/badge/skills/huanghuoguoguo/aminer-mcp/aminer-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 581 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00019 $0.00581
Opus 5 $0.00010 $0.00291
Sonnet 5 $0.00004 $0.00116
Haiku 4.5 $0.00002 $0.00058

Measured 12d ago against content hash f83bd8a88f2b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

aminer-search scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/search_tool.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agent/skills/aminer-search/SKILL.md · 79 lines

How it starts

The opening of the file, as written. The whole thing — 79 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AMiner Search Skill

This skill allows you to search for academic papers, scholars, and patents using the AMiner Open Platform API directly from the command line, leveraging the existing codebase.

Requirements

  1. Python Environment: Ensure Python 3.x is installed.
  2. Dependencies:
    • requests (Install via pip install requests or pip install -r requirements.txt)
  3. Environment Variables:
    • AMINER_TOKEN: Your AMiner API token must be set in your environment.

Usage

This skill provides a Python script scripts/search_tool.py that can be executed to perform searches.

1. Search for Papers

To search for papers by title.

Command:

python .agent/skills/aminer-search/scripts/search_tool.py paper --title "Your Paper Title" --size 5

Parameters:

  • --title: The title of the paper (Required).
  • --page: Page number (Default: 0).
  • --size: Number of results (Default: 10).

2. Search for Scholars

To search for a scholar by name and optional organization.

Command:

python .agent/skills/aminer-search/scripts/search_tool.py scholar --name "Scholar Name" --org "Univ Name"

Parameters:

  • --name: Name of the scholar (Required).
  • --org: Organization name (Optional).
  • --offset: Pagination offset (Default: 0).
  • --size: Number of results (Default: 10).

3. Search for Patents

To search for patents using keywords.

Command:

python .agent/skills/aminer-search/scripts/search_tool.py patent --query "Patent Keywords"

Parameters:

  • --query: Search query (Required).
  • --page: Page number (Default: 0).
  • --size: Number of results (Default: 20).

Example Workflow

  1. Setup: Check if the token is set.
    echo $env:AMINER_TOKEN
    
  2. Search: Run the search command.
    python .agent/skills/aminer-search/scripts/search_tool.py paper --title "Attention is all you need"
    
  3. Process: The output is valid JSON, which can be parsed or saved to a file.
    python .agent/skills/aminer-search/scripts/search_tool.py paper --title "Mamba" > mamba_papers.json
    

Read the full file on GitHub · 79 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 79 lines · 19 tokens per session scan A f83bd8a88f2b

Subscribe to this mod's changes

aminer-search is a skill published in the GitHub repository huanghuoguoguo/aminer-mcp (5 stars, last pushed 5mo ago), licensed MIT. It adds 19 tokens to every session and 581 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

last30Days

Resolve "last30Days" to a concrete ISO date range relative to your run time — a rolling 30-day window ending today. Returns inclusive civil dates plus exact UTC instants so you have temporal context without computing dates by hand. Read-only: no writes, no network. Use before a "last 30 days" / trailing-month task…

chaitanyagiri/munder-difflin · 83 tokens

thisQuarter

Resolve "thisQuarter" to a concrete ISO date range relative to your run time — this quarter so far (quarter start → today). Returns inclusive civil dates plus exact UTC instants so you have temporal context without computing dates by hand. Read-only: no writes, no network. Use before a quarter-to-date task (QTD…

chaitanyagiri/munder-difflin · 78 tokens

thisWeek

Resolve "thisWeek" to a concrete ISO date range relative to your run time — this week so far (Monday → today). Returns inclusive civil dates plus exact UTC instants so you have temporal context without computing dates by hand. Read-only: no writes, no network. Use before a week-to-date task (this week's activity…

chaitanyagiri/munder-difflin · 77 tokens

md-fetch-summarize

Fetch a URL and return a concise markdown summary of its content. Read-only: no files are written; the summary is returned as output only. Use when asked to "fetch and summarize", "summarize this URL", "what does this page say", or "get the content of ". Proactively suggest when the user pastes a URL and asks what it…

chaitanyagiri/munder-difflin · 93 tokens

prompt-design

Design MCP prompts to expose reusable prompt templates. Use when creating parameterized prompts in xmcp.

basementstudio/xmcp · 22 tokens

aesthetic-audit

A commercial visual and user-experience review workflow for websites, product pages, landing pages, and visual assets. It examines clarity, hierarchy, spacing, typography, color, trust signals, conversion paths, and mobile behavior.

anymouschina/TapCanvas · 63 tokens