name: paper-abstract-summarizer description: "Extract, summarize, and translate academic paper abstracts. Structured output: research question, methodology, findings, conclusions."
Use when user provides a paper abstract (text, PDF, or URL) and wants a structured summary, translation, or critical analysis.
7w4.net小葱技能站,你的AI助手技能库。
web_fetch to get the abstract page; if PDF, use exec with pdftotext or Python pdfminer to extract the first page (where abstract usually lives).Extract these fields from the abstract:
| Field | Description | Required |
|---|---|---|
| Title | Full paper title | ✅ |
| Authors | Author names (if available) | ✅ |
| Venue | Conference/Journal, year | ⚠️ if present |
| Research Question | What problem is being solved | ✅ |
| Methodology | Approach, model, dataset, metrics | ✅ |
| Key Findings | Main results with numbers/stats | ✅ |
| Conclusions | Takeaway, limitations, future work | ✅ |
| Keywords | Listed keywords | ⚠️ if present |
Present in this structured Markdown:
## 📄 论文摘要总结
**标题:** [Title]
**作者:** [Authors]
**出处:** [Venue]
### 🎯 研究问题
[concise summary]
### 🔬 方法
[methodology summary]
### 📊 核心发现
- Finding 1 (with numbers if available)
- Finding 2
- ...
### 💡 结论与局限
[conclusions and limitations]
### 🌐 中文概要 section with a fluent Chinese summary.### ⚖️ 简评 section:N/A.https://doi.org/{doi}这个 Skill 质量不错,专门用于处理学术论文摘要。它能支持多种格式的论文输入,输出结构清晰、内容全面,对中文用户也很友好。做得好的地方是功能边界清晰,不会乱编内容。不过目前缺少使用示例,普通用户可能不容易快速上手理解效果,建议找几篇论文试试看再决定是否使用。