Skill instructions load only when you use a skill, so startup and listing cost nothing.
What's wrong with this entry?
Skill instructions are no longer held in memory at startup. Listing skills now costs nothing, and the full text is fetched only when you actually invoke one.
- Only the short skill description and its menu entry stay in the main bundle; the body and any bundled files are pulled from a separate chunk on first use.
- The PR-review command, for example, loads its instruction text and its file set through a dynamic import rather than holding them in scope.
- There are 1060 of these on-demand chunk loads in this build; the previous build had none.
- Unconditional, with no setting to opt out.
files: () => Ur().then((e) => e.SKILL_FILES),
Strings lifted out of the shipped bundle, so the claim above can be checked against them.