---
name: frontiers-skill
description: 搜索和获取Frontiers期刊的学术论文。当用户需要查找Frontiers出版的论文、获取论文全文或摘要时使用此技能。
---
# Frontiers 论文获取技能
## 概述
此技能用于搜索和获取Frontiers期刊的学术论文。Frontiers是一个开放获取的学术出版商,涵盖多个学科领域,包括生命科学、物理学、社会科学等。
## 使用方法
### 搜索Frontiers论文
使用DuckDuckGo搜索Frontiers的论文,关键词可以包括论文标题、作者、关键词等。
**示例:**
```bash
# 搜索Frontiers关于机器学习的论文
curl -s "https://duckduckgo.com/html/?q=Frontiers 机器学习 论文" | grep -o "https://www.frontiersin.org/[^"]*" | head -10
```
### 获取论文详情
使用web_fetch工具获取论文页面的内容,提取摘要和全文链接。
**示例:**
```python
from openclaw.tools import web_fetch
url = "https://www.frontiersin.org/articles/10.3389/fnins.2023.1234567/full"
content = web_fetch(url, extractMode="markdown")
print(content)
```
## 资源
### scripts/
可以添加Python脚本用于自动化搜索和提取论文信息。
### references/
可以添加Frontiers的API文档或搜索指南。