一键导入
colm
COLM (Conference on Language Modeling) paper formatting — activate when the user wants COLM template setup, migration, or formatting/compilation fixes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
COLM (Conference on Language Modeling) paper formatting — activate when the user wants COLM template setup, migration, or formatting/compilation fixes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Generate structured CSV literature survey tables. MUST activate this skill (instead of plain-text replies) when the user requests a literature review, paper collection, related work survey, or comparison of papers on a topic. 生成结构化 CSV 文献调研表格。当用户要求调研论文、收集文献、整理相关工作、对比论文时,必须激活此 skill 生成 CSV 输出,而非纯文字回复。 Triggers: survey, related work, literature review, paper list, find papers, collect papers, compare papers, 调研, 文献, 找论文, 相关论文, 收集论文, 整理文献, 论文列表, 帮我找论文. Output: multi-source search → metadata extraction → 8-column CSV (title, abstract, summary, relevance, authors, year, venue, link) → send to IM.
MANDATORY skill for creating any figure, diagram, chart, table visualization, or TikZ graphic in a paper. Must be activated BEFORE writing any drawing code. Produces standalone .tex → compiled PDF/PNG → \includegraphics in paper. Never inline TikZ code directly into paper sections.
QQ Bot 媒体发送指南。教 AI 如何发送图片给用户。
AAAI paper formatting — activate when the user wants AAAI template setup, migration, or formatting/compilation fixes.
ACL-family venue paper formatting (ACL, EMNLP, NAACL, EACL, AACL, COLING, ARR, Findings) — activate when the user wants any ACL-series template setup, migration, or format fixes.
Academic venue paper discovery — activate when you need to find papers accepted at specific conferences or journals (ACL, EMNLP, NeurIPS, ICML, ICLR, MLSys, etc.), analyze venue acceptance preferences, or look up CFP requirements.
| name | colm |
| description | COLM (Conference on Language Modeling) paper formatting — activate when the user wants COLM template setup, migration, or formatting/compilation fixes. |
| allowed-tools | ["read_file","write_file","str_replace","bash","latex_compile"] |
[SKILL: COLM PAPER FORMAT]
Activate when: user mentions COLM, Conference on Language Modeling, or asks to use/fix the COLM template.
After this skill is activated, select the matching scenario based on user intent.
Before venue-specific template steps, also load and follow ml-paper-writing skill.
At minimum, apply these shared references:
writing-guide.md (narrative and clarity)citation-workflow.md (verified citations; no hallucinations)reviewer-guidelines.md (reviewer-facing quality checks)checklists.md (pre-submission gates)Built-in template: templates/colm2025/ (referred to as TEMPLATES_DIR below), targeting COLM 2025.
Contents: colm2025_conference.sty, colm2025_conference.bst, colm2025_conference.tex, colm2025_conference.bib, colm2025_conference.pdf, fancyhdr.sty, natbib.sty, math_commands.tex.
This step MUST be completed before any scenario below.
submission, preprint, or final). Default to latest available year if user does not specify.TEMPLATES_DIR exists and includes required files: colm2025_conference.sty, colm2025_conference.bst, colm2025_conference.tex, fancyhdr.sty, natbib.sty.TEMPLATES_DIR are complete.zip or repository snapshot)colm2025_conference in commands/examples as a placeholder for the resolved style basename from the selected .sty file.colm2026_conference.sty, replace colm2025_conference with colm2026_conference in \\usepackage, \\bibliographystyle, copy commands, and checks.Step 1 — Copy template files to project core directory using bash:
bash(command="cp TEMPLATES_DIR/colm2025_conference.sty TEMPLATES_DIR/colm2025_conference.bst TEMPLATES_DIR/fancyhdr.sty TEMPLATES_DIR/natbib.sty <PROJECT_CORE>/")
Step 2 — Read TEMPLATES_DIR/colm2025_conference.tex with read_file for canonical preamble and document structure.
Step 3 — Create main.tex using write_file:
\documentclass{article}\usepackage[submission]{colm2025_conference}microtype, hyperref, url, booktabs, lineno)\ifcolmsubmission\linenumbers\fi\bibliography{references} (or project bib file)\bibliographystyle{colm2025_conference}Step 4 — Run latex_compile; if errors occur, fix and recompile.
Step 1 — Read current main.tex with read_file to analyze current preamble.
Step 2 — Read TEMPLATES_DIR/colm2025_conference.tex with read_file as migration reference.
Step 3 — Copy style files using bash (do NOT overwrite paper content):
bash(command="cp TEMPLATES_DIR/colm2025_conference.sty TEMPLATES_DIR/colm2025_conference.bst TEMPLATES_DIR/fancyhdr.sty TEMPLATES_DIR/natbib.sty <PROJECT_CORE>/")
Step 4 — Update preamble using str_replace:
\documentclass{article}\usepackage[submission]{colm2025_conference}\usepackage[preprint]{colm2025_conference}\usepackage[final]{colm2025_conference}geometry, manual margins, external Palatino/Times overrides that conflict with template)Step 5 — Align submission/final behavior:
Step 6 — Fix bibliography setup:
\bibliographystyle{colm2025_conference}\bibliography{references} (or existing bib file)Step 7 — Run latex_compile and resolve remaining issues.
Step 1 — Run latex_compile to capture errors/warnings.
Step 2 — Read preamble in main.tex and compare with TEMPLATES_DIR/colm2025_conference.tex.
Step 3 — Check common COLM failures:
colm2025_conference.sty / .bst in project rootfinal or preprint during anonymous submission)colm2025_conference)Step 4 — Apply fixes with str_replace.
Step 5 — Re-run latex_compile until clean.
Step 1 — Read full main.tex with read_file.
Step 2 — Verify checklist items:
\usepackage[submission]{colm2025_conference} is used for review submission\ifcolmsubmission ... \linenumbers ... \fi)colm2025_conference styleStep 3 — Report and fix issues one by one with str_replace.
Step 4 — Run final latex_compile verification.
⚠️ Reference only — always verify: COLM policies can change by year. Always prioritize the target year's CFP and author kit over defaults in this skill.
Unzip into project root (same folder as main.tex):
project/
├── main.tex
├── colm2025_conference.sty
├── colm2025_conference.bst
├── colm2025_conference.tex
├── fancyhdr.sty
└── natbib.sty
colm2025_conference.tex — canonical setup and usagecolm2025_conference.pdf — formatting instructionscolm2025_conference.sty — option behavior (submission, preprint, final)main.tex\documentclass{article}
\usepackage[submission]{colm2025_conference}
\usepackage{microtype}
\usepackage{hyperref}
\usepackage{url}
\usepackage{booktabs}
\usepackage{lineno}
\ifcolmsubmission
\linenumbers
\fi
| Item | Requirement |
|---|---|
| Submission mode | Use [submission] for blind review |
| Layout | Single-column, US Letter dimensions (set by style) |
| Page limit | Typically 9 pages main text + unlimited references (verify CFP) |
| Bibliography | \bibliographystyle{colm2025_conference} |
| Camera-ready | Switch to [final] only after acceptance |
final instead of submission)colm2025_conference.sty or .bst in rootgeometry or custom hacks