Agent Skillsbrycewang-stanford/Awesome-Journal-Skills › colt-artifact-evaluation

colt-artifact-evaluation

GitHub

针对COLT会议无独立代码评估环节的特点,指导作者将证明附录视为核心工件进行验证。涵盖定理映射、常数追踪、依赖管理及辅助脚本规范,确保理论严谨性与可复现性。

COLT-Skills/skills/colt-artifact-evaluation/SKILL.md brycewang-stanford/Awesome-Journal-Skills

触发场景

准备COLT论文投稿材料 检查数学证明附录的完整性与逻辑一致性 生成理论论文的验证清单

安装

npx skills add brycewang-stanford/Awesome-Journal-Skills --skill colt-artifact-evaluation -g -y
更多选项

非标准路径

npx skills add https://github.com/brycewang-stanford/Awesome-Journal-Skills/tree/main/COLT-Skills/skills/colt-artifact-evaluation -g -y

不安装直接使用

npx skills use brycewang-stanford/Awesome-Journal-Skills@colt-artifact-evaluation

指定 Agent (Claude Code)

npx skills add brycewang-stanford/Awesome-Journal-Skills --skill colt-artifact-evaluation -a claude-code -g -y

安装 repo 全部 skill

npx skills add brycewang-stanford/Awesome-Journal-Skills --all -g -y

预览 repo 内 skill

npx skills add brycewang-stanford/Awesome-Journal-Skills --list

SKILL.md

Frontmatter
{
    "name": "colt-artifact-evaluation",
    "description": "Use when deciding what evidence package a COLT (Conference on Learning Theory) paper needs, given that COLT runs no artifact-evaluation track or badges — the proof appendix is the artifact. Covers proof-verification passes, optional code companions for numerics, formalization aids, and post-acceptance release of scripts."
}

COLT Artifact Evaluation

First, the honest framing: COLT has no artifact-evaluation track, no artifact badges, and no code-submission requirement. Nothing of the kind appears in the COLT 2026 Call for Papers or conference pages (checked 2026-07-08). Do not import NeurIPS/ICML-style artifact checklists into a COLT plan; they answer questions this venue does not ask. What replaces artifact review at COLT is the referee's line-by-line reading of your proofs — so this skill treats the proof appendix as the artifact and tells you how to make it verifiable.

What replaces the artifact track

At an artifact-track venue The COLT counterpart Who "evaluates" it
Code repository with run scripts Complete proofs in the same PDF Reviewers, line by line
Reproducibility checklist form Explicit assumption and constant bookkeeping Reviewers and the AC
Artifact badge Community trust that the argument closes Readers citing the bound
Dockerized environment Self-contained lemma dependencies Anyone re-deriving the result
Benchmark seeds and configs Scripts for illustrative numerics, if any Discretionary reader interest

The proof appendix as artifact

A COLT artifact plan is a verification plan:

  • Map every theorem to its full proof location and confirm no step says "similarly" or "standard" where the step is neither.
  • Track constants explicitly through the proof chain; a constant that changes value between Lemma 4 and Theorem 1 is the theory equivalent of a failing test.
  • List every external result invoked (concentration inequalities, minimax theorems, reductions) with a precise citation including theorem number, and check that your setting satisfies that result's hypotheses — the most common hidden bug.
  • Have a coauthor who did not write a proof verify it cold, logging time-to-verify. Sections that take a fresh expert more than an hour per page need restructuring before a time-pressed referee sees them.

A verification ledger you can actually run

Keep a machine-checkable inventory next to the LaTeX source:

# proof-ledger.txt — one line per claim, updated at every freeze
THM1  full proof App.B  | deps: LEM3, LEM4, [BLM13 Thm 6.2]  | verified: RG 2026-01-12
THM2  full proof App.C  | deps: THM1, LEM5                   | verified: none  <-- BLOCKER
LEM3  full proof App.B.1| deps: none                          | verified: SW 2026-01-08
LEM4  sketch only       | deps: [SSBD14 Lemma 26.8]           | verified: n/a   <-- expand
COR1  two lines in body | deps: THM2                          | verified: with THM2

The rule: no submission while any load-bearing line reads verified: none. This ledger, not a badge, is COLT-grade artifact discipline.

When code exists anyway

Many COLT papers include small numerical illustrations, and some results come with reference implementations. Norms for those:

  • The 2026 CFP imposed no code-upload mechanism; if you want reviewers to see code, it must be referenced in the PDF via an anonymized link or included as appendix pseudocode. Anonymize repository history and hosting if you link during review.
  • Keep illustration scripts tiny and dependency-light: one file that regenerates the figure from a fixed seed is worth more than a framework.
  • Formal-verification companions (Lean or Coq mechanizations of a key lemma) are an emerging but optional credibility signal in the theory community — mention one if it exists, never fake partial formalization as full.
  • After acceptance, publish scripts in a citable repository and link them from the arXiv version, since the PMLR PDF is fixed at camera-ready.

Worked vignette: packaging a bandit paper's evidence

A hypothetical submission proves a $O(\sqrt{TK})$ regret upper bound and a matching lower bound, and includes one figure simulating both on the lower-bound instance. Its artifact plan under COLT rules:

  • The upper-bound proof (App. B) and lower-bound construction (App. C) are the artifacts; both enter the ledger with named verifiers and dates.
  • The external-results audit lists the two concentration inequalities used, each with source theorem number and a one-line check that boundedness hypotheses hold.
  • The figure's generating script (40 lines, numpy only) is described procedurally in App. D — instance parameters, seed, 100 replications — because no upload channel exists; the script itself is queued for a public repository at acceptance.
  • Nothing else ships. No environment files, no hardware table, no checklist — those belong to venues that ask for them.

Post-acceptance release checklist

When code or mechanization exists, release it once anonymity ends:

Item Standard Why it matters at COLT
Repository Public, licensed, tagged at camera-ready state The PMLR PDF is frozen; the repo carries updates
Link placement arXiv version + PMLR "code" field if offered Theory readers find papers via arXiv first
Script scope Regenerates each figure from a fixed seed Matches the illustration claims exactly
Mechanized proofs State coverage precisely (which lemmas, which axioms) Partial formalization overstated reads as spin

What not to do

  • Do not pad a COLT submission with an "artifact appendix" of configs and hardware tables for a paper whose claims are theorems; reviewers read it as misunderstanding the venue.
  • Do not promise a code release as a substitute for a complete proof — no reviewer here will trade executable evidence for a gap.
  • Do not cite artifact badges from other venues as evidence of correctness.

Cycle-volatility warnings

  • If a future COLT cycle introduces any code or artifact mechanism, the CFP will say so explicitly; absence in 2026 does not bind later years (待核实 each cycle).
  • Anonymous-linking rules during review follow the current anonymity policy, which is re-issued yearly.

Output format

[Artifact reality check] proofs are the artifact / paper also ships numerics
[Verification ledger] complete / gaps at <claims>
[External results audit] <result -> hypotheses checked?>
[Code companion] none needed / anonymized link / post-acceptance release
[Blocking item] <the one unverified load-bearing claim>

版本历史

  • 9f86f09 当前 2026-07-19 14:40

同 Skill 集合

AAAI-Skills/skills/aaai-artifact-evaluation/SKILL.md
AAAI-Skills/skills/aaai-author-response/SKILL.md
AAAI-Skills/skills/aaai-camera-ready/SKILL.md
AAAI-Skills/skills/aaai-experiments/SKILL.md
AAAI-Skills/skills/aaai-related-work/SKILL.md
AAAI-Skills/skills/aaai-reproducibility/SKILL.md
AAAI-Skills/skills/aaai-review-process/SKILL.md
AAAI-Skills/skills/aaai-submission/SKILL.md
AAAI-Skills/skills/aaai-supplementary/SKILL.md
AAAI-Skills/skills/aaai-topic-selection/SKILL.md
AAAI-Skills/skills/aaai-workflow/SKILL.md
AAAI-Skills/skills/aaai-writing-style/SKILL.md
AAMAS-Skills/skills/aamas-artifact-evaluation/SKILL.md
AAMAS-Skills/skills/aamas-author-response/SKILL.md
AAMAS-Skills/skills/aamas-camera-ready/SKILL.md
AAMAS-Skills/skills/aamas-experiments/SKILL.md
AAMAS-Skills/skills/aamas-related-work/SKILL.md
AAMAS-Skills/skills/aamas-reproducibility/SKILL.md
AAMAS-Skills/skills/aamas-review-process/SKILL.md
AAMAS-Skills/skills/aamas-submission/SKILL.md
AAMAS-Skills/skills/aamas-supplementary/SKILL.md
AAMAS-Skills/skills/aamas-topic-selection/SKILL.md
AAMAS-Skills/skills/aamas-workflow/SKILL.md
AAMAS-Skills/skills/aamas-writing-style/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-editor-strategy/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-evidence-standards/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-literature-synthesis/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-organizing-framework/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-proposal-framing/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-review-process/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-revision/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-submission/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-tables-figures/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-topic-selection/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-workflow/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-writing-style/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-contribution-framing/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-data-analysis/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-literature-positioning/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-methods/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-rebuttal/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-review-process/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-submission/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-tables-figures/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-theory-development/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-topic-selection/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-workflow/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-writing-style/SKILL.md
Academy-of-Management-Review-Skills/skills/amr-contribution-framing/SKILL.md
Academy-of-Management-Review-Skills/skills/amr-data-analysis/SKILL.md

元信息

文件数
0
版本
5717eab
Hash
4f331f51
收录时间
2026-07-19 14:40

首页 - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-09 00:17
浙ICP备14020137号-1 $访客地图$