| name | arxiv-skill-extractor |
| description | Automates the process of extracting reusable skill code from arXiv papers. Use this skill to turn paper insights into actual OpenClaw skills. |
ArXiv Skill Extractor
This skill wraps arxiv-paper-reviews and provides an automated pipeline for:
- Fetching papers.
- Extracting key algorithms.
- Generating skill templates.
Usage
Extract Skill from a Paper
const { extractSkill } = require("./skills/arxiv-skill-extractor/index.js");
async function run() {
const result = await extractSkill("4711d67c242a5ecba2751e6b");
console.log(result);
}
run();
Automation
Run the default extraction loop (uses local_task:arxiv_skill_learning config):
node skills/arxiv-skill-extractor/index.js
node skills/arxiv-skill-extractor/index.js 4711d67c242a5ecba2751e6b
Why?
We need to continuously learn from new research. Manual reading is slow. This skill bridges the gap between paper knowledge and executable code.