You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The suite keeps shared material in sync three ways. One of them, byte-identical vendored copies, is the only one that
depends on a person remembering to re-sync, and it covers the most files. #184 already proved the alternative works. I
would like to reduce three mechanisms to two.
The companion issue on config-loading duplication (#203) is independent of this one; either can land first.
The middle row is 22 copies of 4 files, about 3,150 duplicated lines:
config-rule.md 151 lines x 12 copies = 1812
yagni-rule.md 146 lines x 4 copies = 584
evidence-rule.md 120 lines x 4 copies = 480
collaborative-stop-rule.md 137 lines x 2 copies = 274
Nothing tests that the copies match the canonical file.
There is no drift today
I checked all 22 copies against their canonical files on main: every one matches. I also walked han-coding/references/config-rule.md against han-core's across every commit that touched the canonical file, and
they match at every point.
So this is not a bug report. It is a request to remove a manual invariant that holds only because maintainers keep
remembering it. The cost shows up in release notes: "the vendored rule files re-synced with their canonical copies" and
its variants appear 12 times in the v5.4.0 section of CHANGELOG.md.
Installation copies the symlink target as a regular file, so the script ships without any plugin depending on another
to reach it.
Verified across all 12 plugins in default mode, and end to end through a GitHub-source marketplace install.
I confirmed the install side independently: on a VM, .claude/plugins/cache/han/han-communication/1.2.0/scripts/han-config-dir.sh is a regular file. A skill reads a real
file either way.
Linting is not an obstacle
Prettier on its own refuses an explicitly specified symlink and exits 2, and a .prettierignore entry does not suppress
it. But prek never hands a symlink to a hook. In a scratch repo tracking one symlinked .md whose target was
deliberately misformatted, prek run --all-files reported prettier ... Passed and left the target unchanged. No hook
change, exclude: rule, or ignore file is needed. The canonical file is still linted under its own path.
Why the markdown was never symlinked is not recorded anywhere: cfdfff7 carries a subject line and no body, and CONTRIBUTING.md has no vendoring section. The two conventions landed two months apart, in #143 and then #184.
Proposal
Replace the 22 vendored references/*.md copies with relative symlinks to their canonical files. No lint
configuration changes.
Add a test for what the existing hooks miss. check-symlinks and destroyed-symlinks already fail a dangling link
or one flattened into a regular file. Neither can see coverage (a plugin that should carry a reference and
carries nothing is not a symlink, so no symlink hook looks at it) or target correctness (a link that resolves,
but to the wrong file).
Record the convention in CONTRIBUTING.md.
Open questions
Is dereference-on-install guaranteed or incidental? Worth settling first. Han config expansion fix #184 verified it through a
GitHub-source marketplace install and my VM agrees, but I cannot find it stated in Claude Code's docs. If it is
incidental, a symlinked reference could one day ship dangling, which fails worse for a reference than for the script:
the script's probe carries a 2>/dev/null || echo fallback and a references/*.md link has no equivalent. The repo
side is already covered by check-symlinks and destroyed-symlinks; it is packaging I want confirmed.
Should some of these use the invoke-a-guidance-skill mechanism instead?readability-rule.md and writing-voice.md are not copied at all; consumers declare a han-communication dependency and invoke readability-guidance, which resolves them through its own ${CLAUDE_PLUGIN_ROOT}. That is a separate discussion,
filed as Consolidate config loading; the inline half of the data-fetch prohibition is unevidenced #203. It does not compose for config-rule.md in any case, since readability-guidance itself
points at config-rule.md by relative path into han-communication's own vendored copy.
@mxriverlynn happy to take this on, including the first open question, if you have no objections. Checking first since
it touches every plugin, and you may have ruled symlinks out here for a reason that is not written down.
Summary
The suite keeps shared material in sync three ways. One of them, byte-identical vendored copies, is the only one that
depends on a person remembering to re-sync, and it covers the most files. #184 already proved the alternative works. I
would like to reduce three mechanisms to two.
The companion issue on config-loading duplication (#203) is independent of this one; either can land first.
The three mechanisms
scripts/han-config-dir.shconfig-rule.md,collaborative-stop-rule.md,yagni-rule.md,evidence-rule.mdreadability-rule.md,writing-voice.mdThe middle row is 22 copies of 4 files, about 3,150 duplicated lines:
Nothing tests that the copies match the canonical file.
There is no drift today
I checked all 22 copies against their canonical files on
main: every one matches. I also walkedhan-coding/references/config-rule.mdagainsthan-core's across every commit that touched the canonical file, andthey match at every point.
So this is not a bug report. It is a request to remove a manual invariant that holds only because maintainers keep
remembering it. The cost shows up in release notes: "the vendored rule files re-synced with their canonical copies" and
its variants appear 12 times in the v5.4.0 section of
CHANGELOG.md.Why symlinking works
55bdb1d(#184) records it:I confirmed the install side independently: on a VM,
.claude/plugins/cache/han/han-communication/1.2.0/scripts/han-config-dir.shis a regular file. A skill reads a realfile either way.
Linting is not an obstacle
Prettier on its own refuses an explicitly specified symlink and exits 2, and a
.prettierignoreentry does not suppressit. But prek never hands a symlink to a hook. In a scratch repo tracking one symlinked
.mdwhose target wasdeliberately misformatted,
prek run --all-filesreportedprettier ... Passedand left the target unchanged. No hookchange,
exclude:rule, or ignore file is needed. The canonical file is still linted under its own path.Why the markdown was never symlinked is not recorded anywhere:
cfdfff7carries a subject line and no body, andCONTRIBUTING.mdhas no vendoring section. The two conventions landed two months apart, in #143 and then #184.Proposal
references/*.mdcopies with relative symlinks to their canonical files. No lintconfiguration changes.
check-symlinksanddestroyed-symlinksalready fail a dangling linkor one flattened into a regular file. Neither can see coverage (a plugin that should carry a reference and
carries nothing is not a symlink, so no symlink hook looks at it) or target correctness (a link that resolves,
but to the wrong file).
CONTRIBUTING.md.Open questions
GitHub-source marketplace install and my VM agrees, but I cannot find it stated in Claude Code's docs. If it is
incidental, a symlinked reference could one day ship dangling, which fails worse for a reference than for the script:
the script's probe carries a
2>/dev/null || echofallback and areferences/*.mdlink has no equivalent. The reposide is already covered by
check-symlinksanddestroyed-symlinks; it is packaging I want confirmed.readability-rule.mdandwriting-voice.mdare not copied at all; consumers declare ahan-communicationdependency and invokereadability-guidance, which resolves them through its own${CLAUDE_PLUGIN_ROOT}. That is a separate discussion,filed as Consolidate config loading; the inline half of the data-fetch prohibition is unevidenced #203. It does not compose for
config-rule.mdin any case, sincereadability-guidanceitselfpoints at
config-rule.mdby relative path intohan-communication's own vendored copy.parity and touches
.agents/plugins/marketplace.json, so it will likely reach the answer first.Before I start
@mxriverlynn happy to take this on, including the first open question, if you have no objections. Checking first since
it touches every plugin, and you may have ruled symlinks out here for a reason that is not written down.