跳到主要内容
知仓学习社ZHICANG

typst-paper

Typst academic paper assistant for existing `.typ` paper projects in English or Chinese. Use this skill whenever the user wants to compile, audit, o…

执行命令写文件联网严重 1 · 高危 3brycewang-stanford/Auto-Empirical-Research-Skills

它会碰到什么

扫了多少60 个文本文件,351 KB
它会碰到什么执行命令写文件联网
命中总数11 处
命中统计严重 1 · 高 3 · 中 3 · 低 2
逐条看命中(4 条严重或高危)
  • 严重 SKILL.md:7perm-wildcard
    allowed-tools: Read, Glob, Grep, Bash(uv *), Bash(typst *)
  • scripts/compile.py:117exec-spawn
    result = subprocess.run(
  • scripts/compile.py:150exec-spawn
    result = subprocess.run(
  • scripts/compile.py:169exec-spawn
    result = subprocess.run(

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

Typst Academic Paper Assistant

Use this skill for targeted work on an existing Typst paper project. Route requests to the smallest useful module and keep outputs compatible with Typst source review.

Capability Summary

  • Compile Typst projects and diagnose Typst CLI issues.
  • Audit format, bibliography, grammar, sentence length, argument logic, expression quality, and AI traces.
  • Review IEEE-like pseudocode blocks for algorithmic, algorithm-figure, lovelace, caption handling, and comment length.
  • Support both BibTeX and Hayagriva bibliography files.
  • Improve titles, translation, and experiment-section clarity for Typst papers.

Triggering

Use this skill when the user has an existing .typ paper project and wants help with:

  • Typst compilation or export issues
  • format or venue compliance
  • bibliography validation for BibTeX or Hayagriva
  • grammar, sentence, logic, or expression review
  • translation or bilingual polishing
  • title optimization
  • pseudocode and algorithm-block review
  • de-AI editing
  • experiment-section review

Do Not Use

Do not use this skill for:

  • LaTeX-first conference or thesis projects
  • DOCX/PDF-only editing without Typst source
  • thesis template detection or GB/T 7714 thesis workflows
  • from-scratch paper planning or literature research
  • multi-perspective review, scoring, or submission gate decisions (use paper-audit)
  • standalone pseudocode drafting without a paper context

Module Router

| Module | Use when | Primary command | Read next |

| --- | --- | --- | --- |

| compile | Typst build, export, font, or watch issues | uv run python $SKILL_DIR/scripts/compile.py main.typ | references/modules/COMPILE.md |

| format | Venue/layout review for a Typst paper | uv run python $SKILL_DIR/scripts/check_format.py main.typ | references/modules/FORMAT.md |

| bibliography | BibTeX or Hayagriva validation | uv run python $SKILL_DIR/scripts/verify_bib.py references.bib --typ main.typ | references/modules/BIBLIOGRAPHY.md |

| grammar | Grammar cleanup on Typst prose | uv run python $SKILL_DIR/scripts/analyze_grammar.py main.typ --section introduction | references/modules/GRAMMAR.md |

| sentences | Long or dense sentence diagnostics | uv run python $SKILL_DIR/scripts/analyze_sentences.py main.typ --section introduction | references/modules/SENTENCES.md |

| logic | Argument flow, introduction funnel, cross-section closure, and abstract/conclusion alignment review | uv run python $SKILL_DIR/scripts/analyze_logic.py main.typ --section methods | references/modules/LOGIC.md |

| expression | Tone and expression polishing | uv run python $SKILL_DIR/scripts/improve_expression.py main.typ --section methods | references/modules/EXPRESSION.md |

| translation | Chinese/English academic translation in Typst context | uv run python $SKILL_DIR/scripts/translate_academic.py input_zh.txt --domain deep-learning | references/modules/TRANSLATION.md |

| title | Generate, compare, or optimize Typst paper titles | uv run python $SKILL_DIR/scripts/optimize_title.py main.typ --check | references/modules/TITLE.md |

| pseudocode | Review algorithmic / algorithm-figure / lovelace output for IEEE-like safety, captions, and comment length | uv run python $SKILL_DIR/scripts/check_pseudocode.py main.typ --venue ieee | references/modules/PSEUDOCODE.md |

| deai | Reduce English or Chinese AI-writing traces while preserving Typst syntax | uv run python $SKILL_DIR/scripts/deai_check.py main.typ --section introduction | references/modules/DEAI.md |

| experiment | Inspect experiment-section clarity, discussion layering, and reporting quality | uv run python $SKILL_DIR/scripts/analyze_experiment.py main.typ --section experiment | references/modules/EXPERIMENT.md |

| tables | Table structure validation, three-line table generation | uv run python $SKILL_DIR/scripts/check_tables.py main.typ | references/modules/TABLES.md |

| abstract | Abstract five-element structure diagnosis and word count validation | uv run python $SKILL_DIR/scripts/analyze_abstract.py main.typ | references/modules/ABSTRACT.md |

| adapt | Journal adaptation: reformat paper for a different venue | (LLM-driven workflow) | references/modules/ADAPT.md |

Required Inputs

  • main.typ or the Typst entry file.
  • Optional --section SECTION for targeted analysis.
  • Optional bibliography path when the request targets references.
  • Optional venue context when the user cares about IEEE, ACM, Springer, or similar expectations.

If arguments are missing, ask only for the Typst entry file and the target module.

Output Contract

  • Return findings in Typst diff-comment style whenever possible: // MODULE (Line N) [Severity] [Priority]: Issue ...
  • Report the exact command used and the exit code when a script fails.
  • Preserve @cite, <label>, math blocks, and Typst macros unless the user explicitly asks for source edits.

Workflow

  1. Parse $ARGUMENTS and select the active module.
  2. Read only the reference file needed for that module.
  3. Run the module script with uv run python ....
  4. Return Typst-ready comments and next actions.
  5. For bibliography requests, decide BibTeX vs Hayagriva first, then run bibliography.

Safety Boundaries

  • Never invent citations, labels, or experimental claims.
  • Never rewrite Typst references, labels, or math content by default.
  • Keep compile diagnostics separate from prose rewrites so the user can validate each step.

Reference Map

  • references/TYPST_SYNTAX.md: Typst syntax reminders and pitfalls.
  • references/STYLE_GUIDE.md: paper-writing style baseline.
  • references/CITATION_VERIFICATION.md: citation verification workflow.
  • references/modules/: module-specific Typst commands and choices.
  • references/modules/PSEUDOCODE.md: IEEE-like defaults for Typst pseudocode.

Read only the file that matches the active module.

Example Requests

  • “Compile this Typst paper and tell me why the export works locally but fails in CI.”
  • “Check bibliography, title, and abstract wording in my main.typ submission.”
  • “Review this algorithm-figure block for IEEE-like caption, line-number, and comment issues.”
  • “Review the methods section for sentence length and logic, but keep Typst labels intact.”

See examples/ for full request-to-command walkthroughs.

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。