scholar

scholar is a skill for Claude Code, Codex from serejaris/kimi-skills. It costs 113 tokens per session (815 once invoked), scanned C, original, MIT.

A tool for searching academic literature, meaning published research papers and related scholarly records, across subjects and publication types. It can return paper details such as titles, authors, abstracts, and citation counts, and can look up author profiles.

In plain words
What is it for?
Use it to search papers by keywords or authors, run more detailed literature searches, check citation data, and find information about researchers.
Why use it?
It helps answer research questions with relevant papers and citation information instead of relying only on general web results.

Skill for Claude CodeCodex

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

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 scripts/scholar_tool.py describe.

Good fit Use it to search papers by keywords or authors, run more detailed literature searches, check citation data, and find information about researchers.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/serejaris/kimi-skills
agentmods
npx agentmods add skills/serejaris/kimi-skills/scholar

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 scholar

README.md
[![agentmods](https://agentmods.dev/badge/skills/serejaris/kimi-skills/scholar/github.svg)](https://agentmods.dev/skills/serejaris/kimi-skills/scholar)
Your own site
<a href="https://agentmods.dev/skills/serejaris/kimi-skills/scholar"><img src="https://agentmods.dev/badge/skills/serejaris/kimi-skills/scholar/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 scholar

Your own site · 80×15
<a href="https://agentmods.dev/skills/serejaris/kimi-skills/scholar"><img src="https://agentmods.dev/badge/skills/serejaris/kimi-skills/scholar.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 113 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 815 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 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.00113 $0.00815
Opus 5 $0.00056 $0.00407
Sonnet 5 $0.00023 $0.00163
Haiku 4.5 $0.00011 $0.00081

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

Security

Grade C, and why

scholar scanned grade C with 2 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 11d ago.

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.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

python3 -c "import agent_gw" || python3 -m pip install "$(curl -s https://cdn.kimi.com/agentgw/pysdk/manifest.json | python3 -c "import json,sys; print(json.load(sys.stdin)['latest']['url'])")"

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

python3 -c "import agent_gw" || python3 -m pip install "$(curl -s https://cdn.kimi.com/agentgw/pysdk/manifest.json | python3 -c "import json,sys; print(json.load(sys.stdin)['latest']['url'])")"
plugin-skills/scholar/SKILL.md · 83 lines

How it starts

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

Scholar

Use this skill to answer questions that require academic literature search, citation data, or author profile information.

Setup

Check whether the agent-gw Python SDK is available in the current Python environment, and install it only if the check fails:

python3 -c "import agent_gw" || python3 -m pip install "$(curl -s https://cdn.kimi.com/agentgw/pysdk/manifest.json | python3 -c "import json,sys; print(json.load(sys.stdin)['latest']['url'])")"

The SDK needs an API key from api_key=..., KIMI_API_KEY, or ~/.kimi/agent-gw.json.

Workflow

  1. Run python3 scripts/scholar_tool.py describe from the plugin directory to call get_data_source_desc({"name": "scholar"}).
  2. Read the returned Markdown carefully. It contains the overall data source rules, academic search formats, global constraints, and each API's description, required parameters, optional parameters, defaults, and allowed values.
  3. Select the API that best matches the user's question, such as paper search, advanced paper search, or author profile lookup.
  4. Build params exactly from the Markdown requirements. Use documented keyword, author, publication year, pagination, profile, citation, or access-link fields only when the API supports them.
  5. Use python3 scripts/scholar_tool.py call to call call_data_source_tool.
  6. If the call fails, explain the failure reason from the response.
  7. If the call succeeds, save any returned files first, then answer using resp.result.assistant; ignore resp.result.user unless display content is specifically needed.

Script

Use the bundled script from the plugin directory:

python3 scripts/scholar_tool.py describe

After reading the Markdown and selecting an API:

python3 scripts/scholar_tool.py call \
  --api-name "<api name from markdown>" \
  --params-json '{"required_param":"value"}'

For larger params, write a JSON object and pass --params-file path/to/params.json.

The script:

Read the full file on GitHub · 83 lines

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. 11d ago First seen · 83 lines · 113 tokens per session scan C 98bf29cab5e7

Subscribe to this mod's changes

scholar is a skill published in the GitHub repository serejaris/kimi-skills (6 stars, last pushed 1mo ago), licensed MIT. It adds 113 tokens to every session and 815 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). 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

offensive-wifi

Wireless / 802.11 attack methodology for red team engagements and wireless security assessments. Covers monitor-mode setup, WPA/WPA2-PSK handshake capture and PMKID attacks, WPA3 SAE downgrade and Dragonblood, WPA-Enterprise (EAP) attacks (MSCHAPv2 cracking, EAP-TLS cert theft, evil-twin RADIUS), Karma / Known Beacons…

SnailSploit/Claude-Red · 183 tokens

syndic

Gère un parc de copropriétés en France avec vue portfolio consolidée. Couvre administration, comptabilité (décret 2005, plan comptable copro, 5 annexes), assemblées générales (convocation, PV, notification), appels de fonds, travaux, fournisseurs, recouvrement d'impayés et transition de syndic. Maîtrise les majorités…

romainsimon/paperasse · 194 tokens

offensive-bluetooth-classic

Bluetooth Classic (BR/EDR) attack methodology — device discovery, service enumeration via SDP, LMP/L2CAP layer attacks, legacy PIN cracking (BlueBorne / KNOB), Bluetooth file-transfer abuse (BlueSnarfing legacy), unauthenticated profile abuse (HSP, HFP, OPP), and modern relevance against older industrial / automotive…

SnailSploit/Claude-Red · 123 tokens

agent-wiki

Incremental LLM-friendly wiki generator for Obsidian note vaults. Use when: (1) Building wiki from notes, (2) Ingesting notes to wiki, (3) Obsidian LLM wiki, (4) Incremental knowledge base management. Triggers: 'build wiki from notes', 'ingest notes to wiki', 'Obsidian LLM wiki', 'incremental knowledge base'.

Dianel555/DSkills · 89 tokens

design-md-validator

Validate DESIGN.md files against the official Google specification using the @google/design.md CLI linter. Works with local files. Use when the user wants to lint a DESIGN.md, check spec compliance, find broken token references, verify WCAG contrast ratios, diff two versions, export tokens to Tailwind or DTCG format…

fabricioctelles/skills · 170 tokens

agent-ready-oauth-protected-resource

Sub-skill de agent-ready-cloudflare: Implement OAuth Protected Resource Metadata.

fabricioctelles/skills · 23 tokens