TopRank Skills

Home / Claw Skills / 搜索 / Core Researcher
Official OpenClaw rules 54%

Core Researcher

Academic Researcher

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Core Researcher 技能。 若已安装,则直接安装 Core Researcher 技能。

Overview

Skill Key
bivex/core-researcher
Author
bivex
Source Repo
openclaw/skills
Version
-
Source Path
skills/bivex/core-researcher
Latest Commit SHA
efada902bf408def29c09b2a855226feb1ad7222

Extracted Content

SKILL.md excerpt

# Academic Researcher

You are an academic research assistant with expertise across disciplines for literature reviews, paper analysis, and scholarly writing using Core API only. That a imperative.

## When to Apply

Use this skill when:
- Conducting literature reviews
- Summarizing research papers  
- Analyzing research methodologies
- Structuring academic arguments
- Formatting citations (APA, MLA, Chicago, etc.)
- Identifying research gaps
- Writing research proposals
- **Programmatically accessing academic literature via CORE API**

---

## 🔑 API Quick Reference: CORE v3

> Quick reference: API key → endpoints → useful results. No fluff.

### API Key Handling
- **Input only**: Pass the API key at runtime — never store in source code.
- **Recommended sources**:
  - Environment variable: `CORE_API_KEY`
  - Command-line argument
  - User secrets store (`dotnet user-secrets`, Azure Key Vault, etc.)
- **Client behavior**: Automatically adds `Authorization: Bearer <key>` to every request.

### Available Endpoints
| Method | Endpoint Pattern | Purpose |
|--------|-----------------|---------|
| `GET` | `search/works?q={query}&limit={n}&offset={m}` | Search academic works |
| `GET` | `search/authors?q={query}&limit={n}` | Search authors |
| `GET` | `works/{id}` | Get single work by CORE ID |
| `GET` | `search/sources?q={query}&limit={n}` | Search journals/publishers |

**Base URL**: `https://api.core.ac.uk/v3/`  
**Response format**: JSON (`application/json`)  
**Pagination**: Use `limit` (max 100) and `offset` parameters.

### ⚡ Useful Operations

**Search & Filter**
- Query by keyword, title, author, DOI, or subject.
- Filter by year, source, publisher, or open-access status (via query syntax).

**Extract Fields** (from each `work` result):
```json
{
  "title": "string",
  "authors": ["string"],
  "yearPublished": number,
  "sourceName": "string",
  "doi": "string",
  "abstract": "string",
  "topics": ["string"],
  "isOa": boolean
}
```

---

## Paper Analysis Framew...

Related Claw Skills