원클릭으로
doom-check
Run static analysis and byte-compile checks on the Doom config without opening Emacs
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run static analysis and byte-compile checks on the Doom config without opening Emacs
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Add a new Emacs package to this doom config — packages.el declaration, config.org section, and doom sync
Systematically debug a doom emacs issue — errors, broken packages, slow startup, keybinding conflicts
Look up a Doom Emacs module's documentation, flags, and packages before configuring anything manually. Use this when the user asks about adding a feature, package, or integration to Doom.
Run doom sync after config changes and diagnose any errors
Update doom emacs and/or packages — runs doom upgrade, handles errors, summarizes what changed
Expert Emacs Lisp programmer and Doom Emacs architect. Use when writing custom packages, configuring complex behaviors, debugging elisp, designing abstractions, or any task that requires deep Emacs/Doom knowledge.
| name | doom-check |
| description | Run static analysis and byte-compile checks on the Doom config without opening Emacs |
| argument-hint | [--static-only] [--byte-compile-only] |
| allowed-tools | Bash |
Run the doom-check script to validate the config before or after making changes.
| File | Purpose |
|---|---|
~/.config/doom/bin/doom-check | Executable check script — edit this to add checks |
~/.config/doom/tests/config-tests.el | ERT test suite — edit this to add tests |
~/.config/doom/bin/doom-check # full check (static + ERT + byte-compile)
~/.config/doom/bin/doom-check --static-only # fast grep checks only
~/.config/doom/bin/doom-check --byte-compile-only
setq! obsolete macro (Doom 3.0 → use setopt)(require 'cl) deprecated (use cl-lib):background nil invalid face attribute (use 'unspecified)t arg (e.g. (foo-mode t) → use hook or +1)defun inside after! block (not byte-compiled):ensure t in use-package! (wrong for Doom/straight.el)dap-mode references (Doom uses dape now)config.el freshness relative to config.orgbatch-byte-compile on config.elAdd new shell checks to ~/.config/doom/bin/doom-check.
Add new functional tests to ~/.config/doom/tests/config-tests.el.
Shell check pattern:
count=$(grep -c 'pattern' "$CONFIG_ORG" 2>/dev/null || true)
[[ $count -gt 0 ]] && fail "description" || ok "description"