Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

skills-pager技能寻呼机

Agent Skill

skills-pager 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,450

周安装

180

GitHub Stars

公开资料未说明

下载量

1,397
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:skills-pager(技能寻呼机)
来源仓库:https://github.com/haoh51918-lgtm/skills-pager
安装命令:
openclaw skills install skills-pager
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install skills-pager

简介

为大型或多文件技能提供紧凑导航索引,便于快速定位内容。

  • 适合在 OpenClaw 中处理复杂技能文档时减少信息过载。
  • 支持按需加载部分内容,提高阅读效率。
  • 安装前需确认目标技能的文档结构。skills-pager 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 建议配合分层目录使用以获得更好效果。

SKILL.md

name
skills-pager
description
>-

Skills Pager

Any 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.

One Job

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.

Quick Check

When a skill you need is roughly 100 lines or more:

  1. Does .skill-index/skills/<skill-id>/index.md already exist?
  2. Yes → read the index first, load only the source sections it points to, then answer.
  3. No → read the source and answer the task first. After answering, build the index so the next encounter can skip the full reread.

Current Target Skill

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.

When It Helps

Use this skill when:

  • you are about to read a SKILL.md that is 100+ lines but only need one section of it
  • you just deeply read a big skill and will probably need parts of it again later
  • a request names specific parts across multiple large skills
  • you notice yourself rereading the same source regions across turns
  • important detail is split across SKILL.md, references/, or pre-split section files
  • a fresh session or handoff would likely need the same entry points again

These skill shapes often benefit from paging:

  • workflow skills with distinct phases
  • policy-heavy skills with buried rules
  • multi-file skills where the real detail lives in references/
  • skills whose useful content is split across many files

You usually do not need paging when:

  • the skill is short or flat enough to scan directly
  • the source is small enough that an index would add ceremony without improving re-entry

A narrow request can still be the right trigger for building the index when the underlying skill is substantial.

What Mapped Means Here

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:

  • what the skill is for
  • when a session should start there
  • the main routes or topics worth re-entering
  • the important sources that shaped the index
  • the precise return points that later sessions should not have to rediscover

Later growth can add changes.md, but the first useful pass should leave one complete working file rather than several partial placeholders.

Where It Lives

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.

Quick Start

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.

Workflow

If the Index Already Exists (Reuse Path)

  1. Read .skill-index/skills/<skill-id>/index.md.
  2. Pick the route note that matches the current task.
  3. Load only the source sections it points to.
  4. Verify from source as needed.
  5. If the index proves weak or stale, update it and optionally add changes.md.

If No Index Exists Yet (Creation Path)

  1. Read the target skill's source and answer the user's question first.
  2. After answering, check whether the skill was substantial enough to justify an index.
  3. If yes, read references/initial-mapping.md for the mapping workflow.
  4. Read references/map-layout.md for the index file structure.
  5. Read enough source to understand the skill's main routes beyond today's narrow request.
  6. If the workspace already has section files, appendices, or notes that expose useful source regions, use them as inputs.
  7. Run the companion script scripts/create-skills-pager-map.js using the installed skill-local path.
  8. Replace the scaffold placeholders in index.md so the file covers the target skill's main route set.
  9. The next session or turn that needs this skill will start from the index.

A reliable mental model:

  • answer the user's question using the source directly
  • then ask: was that skill big enough that a future session would benefit from a shortcut?
  • if yes, build the index while the understanding is fresh
  • the durable output is the working file on disk, not only a chat summary

Multi-Skill Requests

If the task names several large skills:

  1. Pick the first target you need to answer now.
  2. Check its index state and follow the matching path above.
  3. Answer the part of the task that depends on it.
  4. Move to the next target only if the request still needs it.
  5. Keep each index under its own .skill-index/skills/<skill-id>/ directory.

Reuse

  1. Read index.md.
  2. Use that file to recover scope, route choices, and likely source jumps.
  3. Decide whether the current task needs only a quick source check, a focused source read, or a wider reread.
  4. Re-read the amount of source needed for the current detail level before relying on consequential instructions.
  5. If the index proves weak or stale, update it and optionally record why in 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.

Keep It Simple

  • source is the authority
  • .skill-index/ is navigation, not memory
  • first encounter: answer first, build the index after
  • later encounters: check the index first, load only what you need
  • later reuse starts by reading the index file
  • one target skill at a time
  • depth can grow later if repeated reuse proves it helpful

Boundaries

Keep .skill-index/ separate from:

  • MEMORY.md
  • SESSION-STATE.md
  • memory/YYYY-MM-DD.md
  • vector memory such as memory_store / memory_recall

A pager index stores navigation knowledge about skill sources. It should not store task outcomes, user preferences, or conversation history.

Read These References When

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

73.19%
按下载量换算1,022

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills