Install
openclaw skills install @haoh51918-lgtm/skills-pagerBuild or reuse a compact navigation index for large, multi-file, or layered skills so you can load only the sections you need instead of rereading the full source. Saves context, speeds up partial access, and gives future sessions a fast re-entry point.
openclaw skills install @haoh51918-lgtm/skills-pagerAny skill over about 100 lines costs real context whether you need the whole thing or just one section. Skills Pager builds a compact index.md after your first deep read of a large skill, so the next time — or even two turns later in the same session — you can jump straight to the section you need without burning context on the parts you don't.
If .skill-index/skills/<skill-id>/index.md already exists for a skill you are about to read, start there. It is shorter than the source and tells you exactly which sections to load for the current task.
Create or reuse a single working file at .skill-index/skills/<skill-id>/index.md for one target skill at a time.
This is an efficiency tool, not filing work. The source stays authoritative. The index exists so you can jump back to the right section faster, load less source, and spend more of your context on actual reasoning instead of rediscovering structure you already understood once.
When a skill you need is roughly 100 lines or more:
.skill-index/skills/<skill-id>/index.md already exist?Paging works on one target skill at a time.
Pick the current target as the skill that owns the section, protocol, or phase you need to answer next. If several skills appear in the same request, do not widen the index to cover all of them at once. Handle the first target you actually need, then repeat for the next target only if the task still needs it.
When .skill-index/skills/<skill-id>/index.md is missing for the current target, that absence is not only a status check — the missing index is the next piece of work for that target once the user's question is answered.
Use this skill when:
SKILL.md, references/, or pre-split section filesThese skill shapes often benefit from paging:
references/You usually do not need paging when:
A narrow request can still be the right trigger for building the index when the underlying skill is substantial.
A skill is treated as mapped in this workspace when .skill-index/skills/<skill-id>/index.md exists with useful content.
That single working file should cover:
Later growth can add changes.md, but the first useful pass should leave one complete working file rather than several partial placeholders.
Write pager files in the workspace root, not inside the skill source and not inside memory files:
.skill-index/
registry.json
skills/
<skill-id>/
index.md
changes.md # optional later
If .skill-index/skills/<skill-id>/index.md does not exist yet, treat the skill as unmapped in this workspace.
This skill includes a companion scaffold script at scripts/create-skills-pager-map.js.
Resolve that path relative to the installed skills-pager directory. If this skill is installed under skills/skills-pager/, a workspace-root command typically looks like:
node skills/skills-pager/scripts/create-skills-pager-map.js \
--skill-id <target-skill-id> \
--source <target-skill-path> \
--source <reference-or-section-path-if-used> \
--page <major-route-or-topic> \
--page <another-major-route-or-topic>
Use the script to draft the single-file index quickly. It is mechanical help only. Decide the route set from source first, then replace the placeholders with real content before treating the index as usable.
.skill-index/skills/<skill-id>/index.md.changes.md.references/initial-mapping.md for the mapping workflow.references/map-layout.md for the index file structure.scripts/create-skills-pager-map.js using the installed skill-local path.index.md so the file covers the target skill's main route set.A reliable mental model:
If the task names several large skills:
.skill-index/skills/<skill-id>/ directory.index.md.changes.md.The index lowers re-entry cost. It does not replace source verification for consequential detail, but it often replaces blind source-first re-entry as the default starting point.
.skill-index/ is navigation, not memoryKeep .skill-index/ separate from:
MEMORY.mdSESSION-STATE.mdmemory/YYYY-MM-DD.mdmemory_store / memory_recallA pager index stores navigation knowledge about skill sources. It should not store task outcomes, user preferences, or conversation history.
.skill-index/ does not exist yet.index.md.