来源信息
- 仓库
- brycewang-stanford/Auto-Empirical-Research-Skills
- 最近来源活动
- 2026年4月3日 02:07
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 3,291
- 分支
- 432
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
菜单
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill plagiarism-detection-guide命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | plagiarism-detection-guide |
| description | Use plagiarism detection tools and ensure manuscript originality |
| metadata | {"openclaw":{"emoji":"🛡️","category":"writing","subcategory":"polish","keywords":["plagiarism detection","originality check","Turnitin","iThenticate","self-plagiarism","text similarity"],"source":"wentor-research-plugins"}} |
A skill for using plagiarism detection tools to ensure manuscript originality before submission. Covers major detection platforms, understanding similarity reports, avoiding self-plagiarism, paraphrasing best practices, and institutional policies.
| Tool | Primary Users | Database | Cost |
|---|---|---|---|
| iThenticate | Researchers, publishers | Crossref, web, dissertations | Subscription |
| Turnitin | Universities (student work) | Student papers, web, journals | Institutional |
| Copyscape | Web content | Web pages | Per-search or subscription |
| Quetext | General | Web, academic | Free tier / Premium |
| PlagScan | Academic, corporate | Web, internal database | Per-document |
| Grammarly Premium | Writers | Web, ProQuest | Included in Premium |
Text matching (NOT idea matching):
- Tools compare your text against databases of published content
- They flag verbatim matches and close paraphrases
- They do NOT detect idea plagiarism or conceptual theft
- They do NOT understand context (quoted text may be flagged)
Common databases searched:
- Published journal articles (via Crossref, Scopus partnerships)
- Web pages and online content
- Previously submitted student papers (Turnitin only)
- Books and dissertations (varies by tool)
- Preprint servers (arXiv, SSRN)
def interpret_similarity_score(total_score: float,
source_breakdown: list[dict]) -> dict:
"""
Interpret a plagiarism detection similarity report.
Args:
total_score: Overall similarity percentage
source_breakdown: List of dicts with 'source', 'percentage', 'type'
"""
interpretation = {
"total_similarity": total_score,
"risk_level": (
"low" if total_score < 15
else "moderate" if total_score < 30
else "high"
),
"guidance": {
"low": (
"Under 15% is typical for original research papers. "
"Review flagged sections to confirm they are properly quoted "
"or are common phrases."
),
"moderate": (
"15-30% warrants review. Check if matches are from your own "
"prior work (self-citation), methods sections using standard "
"language, or properly attributed quotations."
),
"high": (
"Over 30% requires careful review. Large blocks of matched "
"text must be rewritten, quoted, or properly attributed. "
"Note: review articles and meta-analyses may legitimately "
"have higher similarity scores."
)
}
}
# Categorize sources
for src in source_breakdown:
src[] = (
src[] ==
src[] ==
)
interpretation[] = source_breakdown
interpretation
Typically acceptable:
- Reference list entries
- Standard methodology descriptions ("Informed consent was obtained...")
- Widely used definitions or established terminology
- Properly quoted and attributed passages
- Author name and affiliation blocks
- Common phrases ("on the other hand", "in this study")
Potentially problematic:
- Paragraphs copied from other papers without quotation or citation
- Closely paraphrased passages without citation
- Reuse of your own prior text without disclosure (self-plagiarism)
- Translated text from another language without attribution
- Figures, tables, or data descriptions from other sources
Self-plagiarism occurs when you reuse substantial portions of your
own previously published text without disclosure. This is an issue
because publishers hold copyright on your published work.
Problematic:
- Copying methods paragraphs from your prior paper verbatim
- Reusing introduction or discussion text across papers
- "Salami slicing" -- publishing the same data in multiple papers
Acceptable:
- Building on your own prior findings (with proper citation)
- Reusing brief, standard methodological phrases
- Reproducing your own figures with permission and citation
- Theses/dissertations reused in subsequent journal articles
(check journal policy -- most allow this)
Step 1: Read the source passage carefully
Step 2: Close the source -- do not look at it
Step 3: Write the idea in your own words from memory
Step 4: Compare with the original for accuracy
Step 5: Add the citation
Test: If you can cover the original and still write the passage,
you have genuinely paraphrased. If you need to keep looking back
and changing individual words, you are patch-writing (still plagiarism).
| Error | Example | Fix |
|---|---|---|
| Word swapping | "Important" becomes "significant" with same structure | Restructure the entire sentence |
| Patchwriting | Changing a few words but keeping sentence structure | Write from understanding, not from text |
| Missing citation | Good paraphrase but no in-text citation | Always cite the source of the idea |
Before submitting your manuscript, verify: all direct quotes are in quotation marks with page numbers, all paraphrased ideas have in-text citations, methods text is rewritten rather than copied from prior papers, any reuse of your own prior text is disclosed to the editor, and your similarity report shows no large unattributed matches. Run the detection tool on your final manuscript version, not an earlier draft, to ensure all revisions are captured.