From 76e97c792b2ca03372e1ab99030d76c709cecf0e Mon Sep 17 00:00:00 2001 From: Robert Sweet Date: Wed, 29 Jul 2026 19:16:50 -0400 Subject: [PATCH] docs(scripts): drop the stale .hermes-plugin note from sync-skills.mjs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .hermes-plugin/ no longer exists, so a comment explaining that it "carries no skill copy" now points at nothing and just makes a reader hunt for a directory that was removed. The surviving clause (.agents/plugins/marketplace.json sources ./codex, so syncing codex covers every other surface) is the part that still matters. Comment only — the script's behavior is unchanged and `sync-skills.mjs --check` still passes. scripts/ is not in package.json files[], so nothing ships and no version bump is owed; no CHANGELOG entry for a comment correction. The file stays byte-identical across all four repos (ci.yml verifies skill copies, and conformance-check.sh expects this file to match), so this same commit lands in each. --- scripts/sync-skills.mjs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/sync-skills.mjs b/scripts/sync-skills.mjs index 96ccff9..cb527fc 100644 --- a/scripts/sync-skills.mjs +++ b/scripts/sync-skills.mjs @@ -1,8 +1,7 @@ // Root skills/ is the canonical copy; the per-surface duplicates // (codex/skills/, .antigravity-plugin/skills/) are generated from it and must // never be edited directly. (.agents/plugins/marketplace.json sources ./codex, -// and .hermes-plugin carries no skill copy — syncing codex covers every other -// surface.) +// so syncing codex covers every other surface.) // // node scripts/sync-skills.mjs overwrite the copies from skills/ // node scripts/sync-skills.mjs --check exit 1 on any drift (CI gate)