Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

abstract-writing-guide摘要写作指导

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

220

周安装

9

GitHub Stars

209

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:abstract-writing-guide(摘要写作指导)
来源仓库:https://github.com/wentorai/research-plugins
仓库路径:skills/abstract-writing-guide
安装命令:
npx skills add https://github.com/wentorai/research-plugins --skill abstract-writing-guide
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/wentorai/research-plugins --skill abstract-writing-guide

简介

用于撰写有效的研究摘要,清晰传达研究目的、方法、结果与意义。

  • 涵盖结构化(IMRaD)与非结构化格式,优化字数与常见错误规避。
  • 适用于科学、医学及人文社科领域的论文投稿准备场景。
  • 安装命令:npx skills add https://github.com/wentorai/research-plugins --skill abstract-writing-guide
  • 支持 Codex、Claude、Cursor、Gemini CLI,通过 GitHub 安装。

SKILL.md

Abstract Writing Guide

A skill for writing effective research abstracts that clearly communicate your study's purpose, methods, results, and significance. Covers structured and unstructured formats, word count optimization, and common pitfalls.

Abstract Structures

Structured Abstract (IMRaD)

Most journals in science and medicine require a structured abstract:

BACKGROUND/OBJECTIVE: 1-2 sentences on the problem and study aim
METHODS: 2-3 sentences on study design, participants, and analysis
RESULTS: 2-4 sentences with key quantitative findings
CONCLUSION: 1-2 sentences on implications and significance

Total: typically 150-300 words (check journal requirements)

Unstructured Abstract

Common in social sciences and humanities:

Sentence 1: Context and problem statement
Sentence 2: Research gap or objective
Sentence 3: Methods overview
Sentence 4-5: Key findings
Sentence 6: Implications and significance

Total: typically 150-250 words

Writing Process

Step-by-Step Framework

def generate_abstract_outline(study_info: dict) -> dict:
    """
    Generate an abstract outline from study information.

    Args:
        study_info: Dict with keys: 'problem', 'gap', 'objective',
                    'design', 'sample', 'methods', 'key_findings',
                    'implications', 'word_limit'
    Returns:
        Structured abstract outline with estimated word counts
    """
    word_limit = study_info.get('word_limit', 250)

    # Allocate words proportionally
    sections = {
        'background': {
            'allocation_pct': 0.15,
            'content': [study_info['problem'], study_info['gap']],
            'template': "Despite {problem}, {gap}. This study aimed to {objective}."
        },
        'methods': {
            'allocation_pct': 0.25,
            'content': [study_info['design'], study_info['sample'], study_info['methods']],
            'template': "A {design} was conducted with {sample}. {methods}."
        },
        'results': {
            'allocation_pct': 0.35,
            'content': study_info['key_findings'],
            'template': "Results showed {findings}."
        },
        'conclusion': {
            'allocation_pct': 0.25,
            'content': study_info['implications'],
            'template': "These findings suggest {implications}."
        }
    }

    for section in sections.values():
        section['target_words'] = round(word_limit * section['allocation_pct'])

    return {
        'sections': sections,
        'word_limit': word_limit,
        'tips': [
            'Write the Results section first (most important)',
            'Use past tense for methods and results',
            'Avoid abbreviations unless space-saving is critical',
            'Include at least one quantitative result with effect size',
            'Do not include citations in the abstract'
        ]
    }

Example: Well-Written Abstract

Background: Chronic low back pain affects 23% of the global adult population,
yet optimal exercise interventions remain unclear. This systematic review and
meta-analysis aimed to compare the effectiveness of yoga, Pilates, and
general exercise for reducing pain and disability in chronic low back pain.

Methods: We searched PubMed, CINAHL, Cochrane Library, and PEDro from
inception to December 2025. Randomized controlled trials comparing yoga,
Pilates, or general exercise to usual care were included. Pain (VAS/NRS)
and disability (ODI/RMDQ) were pooled using random-effects meta-analysis.

Results: Thirty-seven RCTs (N = 3,421) met inclusion criteria. All exercise
types significantly reduced pain compared to usual care: yoga (SMD = -0.73,
95% CI [-0.94, -0.52]), Pilates (SMD = -0.62, 95% CI [-0.81, -0.43]),
and general exercise (SMD = -0.48, 95% CI [-0.63, -0.33]). Yoga showed
significantly greater pain reduction than general exercise (p = 0.03)
but not Pilates (p = 0.28). Heterogeneity was moderate (I-squared = 48-61%).

Conclusion: Yoga, Pilates, and general exercise all effectively reduce
chronic low back pain, with yoga showing a modest advantage over general
exercise. Clinicians should consider patient preferences when recommending
exercise modalities.

Title Writing

Title Construction Principles

def evaluate_title(title: str) -> dict:
    """Evaluate a paper title against best practices."""
    checks = {}

    # Length check
    word_count = len(title.split())
    checks['word_count'] = word_count
    checks['length_ok'] = 10 <= word_count <= 20

    # Key content checks
    checks['has_colon'] = ':' in title  # Structured titles often use colons
    checks['starts_with_article'] = title.lower().startswith(('a ', 'an ', 'the '))
    checks['has_abbreviation'] = any(w.isupper() and len(w) > 1 for w in title.split())

    # Title type classification
    if '?' in title:
        checks['type'] = 'question'
    elif ':' in title:
        checks['type'] = 'compound'
    elif title.split()[0].endswith('ing'):
        checks['type'] = 'gerund'
    else:
        checks['type'] = 'declarative'

    checks['recommendations'] = []
    if word_count > 20:
        checks['recommendations'].append('Consider shortening -- aim for 10-15 words')
    if word_count < 8:
        checks['recommendations'].append('Consider adding specificity')
    if checks['starts_with_article']:
        checks['recommendations'].append('Avoid starting with articles (A/An/The)')
    if checks['has_abbreviation']:
        checks['recommendations'].append('Spell out abbreviations in titles')

    return checks

Title Patterns by Discipline

PatternExampleCommon In
Method: Finding"Deep Learning for Protein Structure: A Comparative Study"CS, Engineering
Declarative"Mindfulness Reduces Cortisol in College Students"Psychology, Medicine
Question"Does Remote Work Improve Productivity?"Social Sciences
Descriptive"Gene Expression Patterns in Early-Stage Lung Cancer"Biology, Medicine

Common Mistakes to Avoid

  1. Vague conclusions: "More research is needed" -- instead, state specific implications
  2. Missing numbers: Always include at least one quantitative finding
  3. New information: Never introduce information not in the paper
  4. Excessive background: Readers know the field -- get to your contribution quickly
  5. Passive voice overuse: Use active voice where possible ("We found" not "It was found")
  6. Promising more than delivering: The abstract must accurately represent the paper's scope

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.91%
按下载量换算25

Claude

31.04%
按下载量换算22

Cursor

18.22%
按下载量换算13

Gemini CLI

7.99%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills