research-paper-pdf-translator

v1.0.0

自动将英文科研论文PDF翻译成中文,整理内容突出生物信息学细节,符合科研阅读习惯。

0· 189·0 current·0 all-time
byDong Zhao@zd200572

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for zd200572/bioinfo-paper-translate-summary-chinese.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "research-paper-pdf-translator" (zd200572/bioinfo-paper-translate-summary-chinese) from ClawHub.
Skill page: https://clawhub.ai/zd200572/bioinfo-paper-translate-summary-chinese
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install bioinfo-paper-translate-summary-chinese

ClawHub CLI

Package manager switcher

npx clawhub@latest install bioinfo-paper-translate-summary-chinese
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description (translate scientific PDFs to Chinese with bioinformatics focus) align with the code and instructions: SKILL.py converts the PDF with pdftotext, prints the text and a prompt asking the agent to translate and summarize. No unrelated credentials, binaries, or services are requested.
Instruction Scope
SKILL.md and SKILL.py only touch the supplied PDF. The skill prints the entire extracted paper text and the original absolute PDF path to stdout and instructs the agent to save a markdown file in the same directory. Printing full paper text and the absolute path is necessary for translation but can expose sensitive content or filesystem layout to the agent/model; the instructions give the agent broad discretion to write files in the PDF's directory.
Install Mechanism
No install spec; the SKILL.py runtime only relies on the external pdftotext binary (poppler-utils). This is a low-risk pattern compared with remote downloads or package installs.
Credentials
The skill declares no environment variables and the code does not read secrets or unrelated env vars. No external credentials or config paths are requested.
Persistence & Privilege
The skill is not always-on and does not modify other skills or system-wide agent settings. It writes a temporary text file and asks the agent to save output in the same directory; this is normal for a file-processing skill but grants write access to the target directory while running.
Assessment
This skill appears to do what it says, but consider these practical safety points before installing: - Data leakage: SKILL.py prints the entire extracted paper text and the absolute PDF path to stdout and asks the agent to translate it. If your agent sends prompts or content to a remote LLM or logs stdout, the full paper and filesystem path could be transmitted or recorded. Avoid using with confidential PDFs unless you control where model invocations and logs go. - Temporary file handling: The script writes a fixed file name (temp_paper_for_translation.txt) in the same directory as the PDF. That can overwrite files with the same name or leave artifacts if the script crashes. Prefer running in a copy of the directory or modify the script to use a secure temp file (e.g., tempfile in /tmp) or a unique name. - Write permission: The skill asks the agent to save the resulting markdown in the same directory; ensure you trust the agent's write permissions for that location. - Dependency: You must install poppler-utils (pdftotext) for reliable conversion. If you need stronger privacy guarantees, run the script in an isolated environment, modify it to use secure temporary files and avoid printing absolute paths, and ensure model invocations remain local or to a trusted endpoint.

Like a lobster shell, security has layers — review code before you run it.

latestvk97cax4kf6t26pd57h5vnq0tkn836p9c
189downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

科研论文PDF翻译整理

描述

自动将英文科研论文PDF翻译成中文,并按照科研阅读习惯进行整理,突出生物信息学细节。

使用场景

当您需要快速获取英文科研论文的中文核心内容,并希望内容符合生物信息学研究者的阅读习惯时。

运行方式

/usr/bin/python3 SKILL.py <pdf_path>

注意事项

  • 确保您的系统已安装 poppler-utils 包,其中包含 pdftotext 工具,这是PDF转换文本的必要组件。
  • PDF文件路径必须是绝对路径。
  • 对于内容复杂或扫描版的PDF,转换效果可能受限。

Comments

Loading comments...