Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

academic-translator学术翻译

Agent Skill

academic-translator 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,239

周安装

214

GitHub Stars

公开资料未说明

下载量

1,678
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:academic-translator(学术翻译)
来源仓库:https://github.com/levinaz69/academic-translator
安装命令:
openclaw skills install academic-translator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install academic-translator

简介

翻译和分析计算机科学学术论文(EN↔ZH),总结内容,用论文文本加网络研究回答问题,并比较相关作品。

SKILL.md

Skill: Academic Translator & Research Assistant

Trigger: User provides a PDF file, arxiv link/ID, or asks to translate/analyze an academic paper.

Overview

Professional academic translation agent for CS papers. Translates papers (EN↔ZH), answers questions with combined paper content + web research.

Workflow

1. Paper Ingestion

From arxiv link/ID:

source /home/kjp/.openclaw/workspace/.venv/bin/activate
python {SKILL_DIR}/fetch_arxiv.py "<arxiv_url_or_id>" /tmp/arxiv_papers

Returns JSON with metadata (title, authors, abstract, pdf_path). Use this to:

  • Show the user a brief summary first
  • Then extract full text from the downloaded PDF

From PDF file (uploaded or local path):

source /home/kjp/.openclaw/workspace/.venv/bin/activate
python {SKILL_DIR}/extract_pdf.py "<path_to_pdf>" [max_pages]

Returns JSON with page-by-page text. Omit max_pages for full extraction.

2. Translation

After extracting paper text, translate using these principles:

Translation Guidelines:

  • 术语一致性: Maintain consistent technical terminology throughout. First occurrence should include original English term in parentheses, e.g. "注意力机制 (Attention Mechanism)"
  • 保留专有名词: Model names (GPT, BERT, Transformer), dataset names, benchmark names stay in English
  • 数学公式: Keep LaTeX/math notation as-is, only translate surrounding explanation text
  • 图表引用: "Figure 1" → "图1", "Table 2" → "表2", "Equation 3" → "公式(3)"
  • 学术风格: Use formal academic Chinese (学术书面语), avoid colloquial expressions
  • 结构保留: Maintain paper structure: Abstract(摘要), Introduction(引言), Related Work(相关工作), Method(方法), Experiments(实验), Conclusion(结论)

Translation Output Format:

# [翻译标题]
**原标题:** [Original Title]
**作者:** [Authors]
**来源:** [arxiv ID / conference / journal]

## 摘要
[Translated abstract]

## 1 引言
[Translated content...]
...

3. Research & Q&A

When the user asks questions about the paper:

  1. First search the extracted paper content for relevant sections
  2. Then use web_search for supplementary context:

- Related papers and citations - Blog posts / explanations of key concepts - Implementation details (GitHub repos) - Latest developments on the topic

  1. Synthesize an answer combining paper content + web findings
  2. Cite sources clearly: page numbers for paper content, URLs for web sources

4. Capabilities

CommandAction
"翻译这篇论文" / "translate this paper"Full paper translation
"翻译摘要/引言/第N节"Translate specific section
"总结这篇论文" / "summarize"Generate structured summary
"解释 [concept]"Explain a concept from the paper with web context
"[any question]"Answer based on paper + web research
"对比 [paper A] 和 [paper B]"Compare two papers

5. Summary Format

When summarizing, use this structure:

## 📄 论文概览
**标题:** ...
**核心贡献:** 1-2 sentences
**关键词:** ...

## 🎯 主要贡献
1. ...
2. ...

## 🔬 方法概述
[Concise method description]

## 📊 实验结果
[Key results and comparisons]

## 💡 核心洞察
[Why this matters, limitations, future directions]

State Management

Store paper context in /tmp/academic_papers/ for multi-turn conversations:

  • /tmp/academic_papers/current_paper.json — metadata of current paper
  • /tmp/academic_papers/current_text.txt — extracted full text

This allows follow-up questions without re-extracting.

Notes

  • For very long papers (>30 pages), extract and translate in batches
  • Always show paper metadata first before diving into translation
  • Use web_search proactively for unfamiliar terms or cutting-edge topics
  • Default translation direction: English → Chinese (unless user specifies otherwise)
  • Use sub-agents (sessions_spawn) for full paper translation to avoid blocking the main session

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

81.81%
按下载量换算1,373

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills