用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/QiZishi/PaperAgent --skill write-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | write_skill |
| description | Academic writing skill for generating summaries, reports, literature reviews, and other research documents |
| version | 1.0.0 |
| author | PaperAgent Team |
This skill enables you to generate various types of academic writing, including summaries, literature reviews, research reports, and other scholarly documents. Use this skill when you need to produce well-structured academic content.
You have access to the following writing tools (registered in the Toolkit):
generate_summaryGenerate a concise summary of given text.
Parameters:
text (str, required): Text to summarizemax_length (int, optional): Maximum length in words (default: 500)style (str, optional): "academic", "casual", "technical" (default: "academic")language (str, optional): Output language - "zh" or "en" (default: "zh")Returns: Generated summary text.
Example:
generate_summary(
text=paper_abstract,
max_length=200,
style="academic",
language="zh"
)
generate_report_sectionGenerate a specific section of an academic report.
Parameters:
topic (str, required): Topic of the sectioncontent (str, required): Source content or contextsection_type (str, optional): "introduction", "body", "conclusion", "abstract", "methodology", "results", "discussion" (default: "body")language (str, optional): Output language (default: "zh")Returns: Generated section content.
Example:
generate_report_section(
topic="Transformer Architecture",
content=research_notes,
section_type="introduction",
language="en"
)
generate_literature_reviewGenerate a literature review from a set of papers.
Parameters:
papers (list[dict], required): List of paper metadata with abstractsfocus_topic (str, required): Central topic or research questionstructure (str, optional): "thematic", "chronological", "methodological" (default: "thematic")length (str, optional): "short", "medium", "long" (default: "medium")language (str, optional): Output language (default: "zh")Returns: Structured literature review with proper citations.
Example:
generate_literature_review(
papers=paper_list,
focus_topic="Applications of LLMs in Scientific Research",
structure="thematic",
length="long",
language="zh"
)
generate_outlineGenerate an outline for a research document.
Parameters:
topic (str, required): Document topicdocument_type (str, optional): "paper", "thesis", "report", "proposal" (default: "paper")depth (int, optional): Outline depth level (default: 3)language (str, optional): Output language (default: "zh")Returns: Hierarchical outline structure.
Example:
generate_outline(
topic="Deep Learning for Drug Discovery",
document_type="paper",
depth=3,
language="en"
)
polish_textPolish and improve existing text.
Parameters:
text (str, required): Text to polishfocus (str, optional): "grammar", "clarity", "conciseness", "academic_tone", "all" (default: "all")preserve_meaning (bool, optional): Strictly preserve original meaning (default: True)language (str, optional): Text language (default: "zh")Returns: Polished text with optional change annotations.
Example:
polish_text(
text=draft_paragraph,
focus="academic_tone",
preserve_meaning=True,
language="en"
)
translate_academicTranslate academic text with domain awareness.
Parameters:
text (str, required): Text to translatesource_lang (str, required): Source language ("zh" or "en")target_lang (str, required): Target language ("zh" or "en")domain (str, optional): Academic domain for terminology (e.g., "computer_science", "biology")Returns: Translated text preserving academic style and terminology.
Example:
translate_academic(
text=chinese_abstract,
source_lang="zh",
target_lang="en",
domain="computer_science"
)
generate_abstractGenerate an abstract for a research paper.
Parameters:
title (str, required): Paper titlecontent (str, required): Paper content or detailed notesmax_words (int, optional): Maximum words (default: 250)structure (str, optional): "structured" (with sections) or "unstructured" (default: "unstructured")language (str, optional): Output language (default: "en")Returns: Generated abstract.
Example:
generate_abstract(
title="A Novel Approach to Neural Machine Translation",
content=full_paper_content,
max_words=300,
structure="structured",
language="en"
)
generate_related_workGenerate a related work section.
Parameters:
papers (list[dict], required): Related papers with metadataown_contribution (str, required): Description of your own contributioncomparison_focus (str, optional): What to focus comparison onlanguage (str, optional): Output language (default: "zh")Returns: Related work section with proper positioning.
Example:
generate_related_work(
papers=related_papers,
own_contribution="We propose a novel attention mechanism...",
comparison_focus="efficiency and scalability",
language="en"
)
All generated content is in markdown format with: