Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Morrison-Lab/ai-config --skill fix-forward-references명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | fix-forward-references |
| description | Fix forward references in text. |
| user-invocable | true |
| allowed-tools | ["Bash","Read","Grep","Edit","Write"] |
A forward reference makes a reader hold an unresolved pointer: "as discussed below" promises content they haven't seen yet. This skill finds those, confirms they're real (not an idiom, not already fixed), and fixes them by moving content earlier or, when reordering isn't the right call, rewording the pointer into a working link.
The full detection heuristic, confirmation checklist, and fix menu live in
shared/writing/forward-references.md —
read it before running this skill; the steps below are the short version.
definition-crossrefs.md's formal-crossref-div check, fact-check-prose,
and find-ai-tells.forward-references.md ---
start with the bare directional word (below, later, following,
subsequently, further down, next, afterward); use the narrower
reference-cue-paired pattern as a higher-confidence secondary filter
when the primary grep returns too many idiom hits.shared/writing/definition-crossrefs.md (cited from CLAUDE.md's
"Hyperlink technical terms and results" section, not a standalone skill)
--- the narrower, formal-crossref-div case of this same problem, scoped
to term/theorem definitions. Its check works by comparing div position to
first mention directly, so it catches a bare @def-x crossref with no
directional word at all --- something this skill's grep heuristic misses.
Run both on a diff that touches definitions.detect-informal-definitions --- a concept with no formal
definition div of its own can't be crossref'd, which is exactly what
pushes an author toward a forward-pointing phrase in the first place.
Run it alongside this skill on a diff that introduces new technical
content; fixing its findings often removes a forward reference for free.check-rendered-refs / crr --- checks whether a crossref resolved
at render time; this skill checks whether it points in the right
direction, on the source prose, before render.challenge-ambiguous-terminology.md --- catches unclear terms; this
skill assumes the term is clear and checks whether the reader has already
been given whatever it's pointing at.find-ai-tells / fact-check-prose --- sibling prose-review passes;
run all three together on a diff that touches narrative prose.ard / ardi --- when reviewing a PR/MR, apply this check alongside
the other prose-review rules CLAUDE.md lists.