# Send Abstract Searcher to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "abstract-searcher",
    "name": "Abstract Searcher",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/EasonC13/abstract-searcher",
    "canonicalUrl": "https://clawhub.ai/EasonC13/abstract-searcher",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/abstract-searcher",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=abstract-searcher",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/add_abstracts.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "abstract-searcher",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T07:43:01.508Z",
      "expiresAt": "2026-05-06T07:43:01.508Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=abstract-searcher",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=abstract-searcher",
        "contentDisposition": "attachment; filename=\"abstract-searcher-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "abstract-searcher"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/abstract-searcher"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/abstract-searcher",
    "downloadUrl": "https://openagent3.xyz/downloads/abstract-searcher",
    "agentUrl": "https://openagent3.xyz/skills/abstract-searcher/agent",
    "manifestUrl": "https://openagent3.xyz/skills/abstract-searcher/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/abstract-searcher/agent.md"
  }
}
```
## Documentation

### Abstract Searcher

Automatically fetch and add abstracts to BibTeX entries.

### Usage

Given a .bib file, this skill will:

Parse each BibTeX entry
Search for the abstract using multiple sources:

arXiv API (for arXiv papers)
Semantic Scholar API
CrossRef API
OpenAlex API


If APIs fail: Use browser automation to search Google Scholar
Add abstract={...} to each entry
Return the complete modified .bib file

### Quick Start

# Process a bib file (API-based)
python3 {baseDir}/scripts/add_abstracts.py input.bib > output.bib

### API Sources (No keys required)

arXiv API: http://export.arxiv.org/api/query?search_query=...
Semantic Scholar: https://api.semanticscholar.org/graph/v1/paper/search?query=...
CrossRef: https://api.crossref.org/works?query.title=...
OpenAlex: https://api.openalex.org/works?search=...

### Browser Fallback (IMPORTANT!)

When APIs fail to find an abstract, use Chrome browser relay like a real person:

### Step 1: Attach Chrome tab

# Check if tab is attached
browser action=tabs profile=chrome

# If no tabs, ask user to click the Clawdbot Browser Relay toolbar icon
# Or use mac-control skill to auto-click it

### Step 2: Open Google Scholar and search

browser action=open profile=chrome targetUrl="https://scholar.google.com"
browser action=snapshot profile=chrome

# Type the paper title in search box
browser action=act profile=chrome request={"kind":"type","ref":"search box ref","text":"paper title here"}
browser action=act profile=chrome request={"kind":"press","key":"Enter"}
browser action=snapshot profile=chrome

### Step 3: Click the result

# Find the paper in results, click to open
browser action=act profile=chrome request={"kind":"click","ref":"paper title link ref"}
browser action=snapshot profile=chrome

### Step 4: Extract abstract from the page

ScienceDirect: Look for "Abstract" section in snapshot
ACL Anthology: Abstract is directly visible at top
Springer/Wiley: May need to click "Abstract" to expand
PubMed: Abstract is usually visible

### Step 5: Copy and format for BibTeX

# Get the abstract text from snapshot
# Clean it: remove newlines, escape special chars
# Add to bib entry: abstract={...},

### Tips:

Use profile=chrome to use real Chrome with your login sessions
Google Scholar rarely blocks real Chrome browsers
ScienceDirect/IEEE may need institutional login (your Chrome has it)
Always verify the paper title matches before copying abstract!

### Notes

Rate limiting: 2 seconds between API requests
Browser fallback should find almost all papers
Abstracts are cleaned (newlines removed, escaped for BibTeX)
Always verify the abstract matches the correct paper!
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: EasonC13
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T07:43:01.508Z
- Expires at: 2026-05-06T07:43:01.508Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/abstract-searcher)
- [Send to Agent page](https://openagent3.xyz/skills/abstract-searcher/agent)
- [JSON manifest](https://openagent3.xyz/skills/abstract-searcher/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/abstract-searcher/agent.md)
- [Download page](https://openagent3.xyz/downloads/abstract-searcher)