/ Каталог / Песочница / thesis-skills
● Сообщество quzhiii ⚡ Сразу

thesis-skills

автор quzhiii · quzhiii/thesis-skills

Deterministic thesis workflow — Word→LaTeX migration with auto-citation mapping, Citation Lock, Chinese/English language QA, YAML rule-pack format validation.

quzhiii/thesis-skills is a Python-based Claude skill for Chinese academic thesis writing. Handles EndNote/Zotero import, Word-to-LaTeX conversion with auto-citation sync (claimed 5.25× faster than manual), a Citation Lock mechanism to stop reference numbers shifting when you edit, sentence-aware cross-file language screening, YAML rule-pack validation against university format requirements, and span-based patch previews for safe automated fixing (v0.5.2).

Зачем использовать

Ключевые функции

Живое демо

Как выглядит на практике

thesis-skill.replay ▶ готово
0/0

Установка

Выберите клиент

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "thesis-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/quzhiii/thesis-skills",
        "~/.claude/skills/thesis-skills"
      ],
      "_inferred": true
    }
  }
}

Откройте Claude Desktop → Settings → Developer → Edit Config. Перезапустите после сохранения.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "thesis-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/quzhiii/thesis-skills",
        "~/.claude/skills/thesis-skills"
      ],
      "_inferred": true
    }
  }
}

Cursor использует ту же схему mcpServers, что и Claude Desktop. Конфиг проекта приоритетнее глобального.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "thesis-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/quzhiii/thesis-skills",
        "~/.claude/skills/thesis-skills"
      ],
      "_inferred": true
    }
  }
}

Щёлкните значок MCP Servers на боковой панели Cline, затем "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "thesis-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/quzhiii/thesis-skills",
        "~/.claude/skills/thesis-skills"
      ],
      "_inferred": true
    }
  }
}

Тот же формат, что и Claude Desktop. Перезапустите Windsurf для применения.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "thesis-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/quzhiii/thesis-skills",
        "~/.claude/skills/thesis-skills"
      ]
    }
  ]
}

Continue использует массив объектов серверов, а не map.

~/.config/zed/settings.json
{
  "context_servers": {
    "thesis-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/quzhiii/thesis-skills",
          "~/.claude/skills/thesis-skills"
        ]
      }
    }
  }
}

Добавьте в context_servers. Zed перезагружается автоматически.

claude mcp add thesis-skill -- git clone https://github.com/quzhiii/thesis-skills ~/.claude/skills/thesis-skills

Однострочная команда. Проверить: claude mcp list. Удалить: claude mcp remove.

Сценарии использования

Реальные сценарии: thesis-skills

Migrate a Word-format thesis draft into LaTeX without remapping 300 citations by hand

👤 Chinese graduate students switching to LaTeX late in the game ⏱ ~120 min intermediate

Когда использовать: You wrote in Word, adviser demands LaTeX, deadline is in two weeks.

Предварительные требования
  • Skill cloned — git clone https://github.com/quzhiii/thesis-skills ~/.claude/skills/thesis-skills
  • Zotero/EndNote export of your library — Export .bib from Zotero or use EndNote XML
Поток
  1. Import the bibliography
    Use thesis-skills — import my Zotero .bib and cross-reference with the Word doc's citations.✓ Скопировано
    → Every Word citation mapped to a .bib entry; gaps flagged
  2. Convert the body
    Now convert Chapter 1 of thesis.docx to LaTeX preserving structure and citations.✓ Скопировано
    → Clean .tex with \cite{} keys, not numeric citations
  3. Enable Citation Lock
    Turn on Citation Lock before I start rearranging sections.✓ Скопировано
    → Confirmation + a note on how to verify numbering integrity

Итог: A LaTeX draft with every citation key intact and a safety net against renumbering bugs.

Подводные камни
  • Cross-references to figures/tables break during conversion — Run the rule-pack validation pass afterward — it catches dead refs
Сочетать с: filesystem

Validate thesis formatting against a specific university's YAML rule pack

👤 Students with university-specific format requirements ⏱ ~45 min intermediate

Когда использовать: Final submission is next week; format committee rejects on trivia.

Поток
  1. Point at the rule pack
    thesis-skills — validate thesis.tex against the Tsinghua rule pack.✓ Скопировано
    → Per-rule pass/fail with line references
  2. Apply patches
    For each safe-level fix, show the span-based patch preview and apply.✓ Скопировано
    → Previews show exact before/after; applied only when text matches

Итог: A format-compliant thesis without the typical 3 rounds of committee rejections.

Cross-file Chinese/English language QA on the whole thesis

👤 Students writing in a second language or mixing ⏱ ~60 min intermediate

Когда использовать: Final polish; spell-check isn't enough.

Поток
  1. Run sentence-aware screening
    thesis-skills — full-thesis language screening. Flag connector misuse and acronym inconsistency.✓ Скопировано
    → Issues grouped by type, not raw grammar noise
  2. Apply chosen fixes
    Apply the 'safe' level fixes; preview 'risky' ones for my review.✓ Скопировано
    → Tiered application so you stay in control

Итог: Consistent terminology and tone across all chapters.

Комбинации

Сочетайте с другими MCP — эффект x10

thesis-skill + filesystem

Operate across the whole thesis tree, not just one file

Run language screen across all .tex files under thesis/.✓ Скопировано
thesis-skill + github

Commit each phase (bib import, chapter convert, format fix) as its own revertable step

Commit after each conversion phase so rollback is trivial.✓ Скопировано

Инструменты

Что предоставляет этот MCP

ИнструментВходные данныеКогда вызыватьСтоимость
import_bibliography path to .bib / EndNote XML Start of any migration 0
word_to_latex chapter path + bib state Converting body content 0
citation_lock enable / verify Before structural edits 0
rule_pack_validate thesis path + pack name Before submission 0
language_screen thesis path + scope Final polish 0

Стоимость и лимиты

Во что обходится

Квота API
None
Токенов на вызов
Can be large — full-thesis scans
Деньги
Free — skills are local files
Совет
Scope by chapter when possible; full-thesis scans eat context.

Безопасность

Права, секреты, радиус поражения

Хранение учётных данных: No credentials — pure prompts
Исходящий трафик: None — thesis stays local

Устранение неполадок

Частые ошибки и исправления

Skill not invoked — Claude does generic Pandoc conversion

Say 'use thesis-skills' explicitly; Pandoc doesn't do citation lock or rule-pack validation.

Проверить: ls ~/.claude/skills/thesis-skills/SKILL.md
SKILL.md frontmatter wrong

Re-clone; description drives activation.

Проверить: head ~/.claude/skills/thesis-skills/SKILL.md
Wrong trigger keywords — language screen misses cross-file issues

Pass 'full-thesis' scope explicitly rather than per-chapter.

Альтернативы

thesis-skills в сравнении

АльтернативаКогда использоватьКомпромисс
PandocGeneric Word↔LaTeX conversion without citation intelligenceNo citation locking, no rule packs
Manual migrationThesis is shortHours of remapping citations

Ещё

Ресурсы

📖 Читать официальный README на GitHub

🐙 Открытые задачи

🔍 Все 400+ MCP-серверов и Skills