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

bootstrap-review引导审查

Agent Skill

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

总安装

3,528

周安装

150

GitHub Stars

公开资料未说明

下载量

1,236
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install bootstrap-review

简介

检查工作区启动配置文件是否符合注册表规范要求。

  • 验证 AGENTS.md、USER.md 等核心文档的存在与完整性。
  • 辅助新代理快速初始化标准工作环境模板。bootstrap-review 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 输出报告指出缺失项与格式偏差便于及时修正。
  • 支持可选心跳文件配置以增强状态监控能力。

SKILL.md

name
bootstrap_review
description
Review an agent workspace's boot files (AGENTS.md, USER.md, SOUL.md, MEMORY.md, IDENTITY.md, TOOLS.md, and optional HEARTBEAT.md) against registry-backed context notes and produce a concise audit, refactor recommendations, and optional staged rewrites. Use when the user asks to review boot files, audit bootstrap files, refactor agent context files, check USER/SOUL/AGENTS redundancy, validate boot-file references, or compare current boot files against shared user context.
category
utilities
tags

Bootstrap Review

Run a chat-first review wizard for agent boot files. This skill audits the current boot files for one agent, reads only the registered supporting context for that agent, and then produces:

  • a structure review
  • redundancy findings
  • reference-validation findings
  • recommendations for shortening or clarifying the files
  • optional staged replacement drafts

Keep this skill review-first. Do not silently rewrite live boot files. Default to audit + recommendations. Only produce staged replacement drafts if the user asks. Do not write in place unless the user explicitly requests it.

What counts as boot files

Treat these as the main boot files:

  • IDENTITY.md
  • SOUL.md
  • USER.md
  • MEMORY.md
  • AGENTS.md
  • TOOLS.md
  • optional: HEARTBEAT.md

Purpose of the skill

This skill exists to keep boot files:

  • short
  • durable
  • non-redundant
  • internally consistent
  • aligned with the current role of the agent
  • aligned with the current user context
  • aligned with real referenced paths or real registry-backed context

This skill is not a general note summarizer. This skill is not a giant memory compiler. This skill should read the registered context once, use it to judge the boot files, and then recommend the leanest stable boot layer that still does the job.

Core principles

  • Boot files should stay small and high-signal.
  • Heavy, evolving, or domain-rich notes should live outside the boot files.
  • IDENTITY.md should answer who this agent is.
  • SOUL.md should answer how this agent should feel and behave.
  • USER.md should answer what stable facts and preferences about Greg matter to this agent.
  • MEMORY.md should define what belongs in durable memory for this agent.
  • AGENTS.md should define the agent's job, scope, boundaries, and decision posture.
  • TOOLS.md should define tool posture, not repeat the entire mission.
  • Repeated statements should be collapsed to the best single home.
  • References should be real and testable.
  • Placeholder references like _Core are not good enough unless they resolve to an actual mounted or registry-backed path pattern that the agent can use reliably.

Registry model

Preferred registry file:

  • ~/.openclaw/registries/boot_context_registry.json

This registry defines which context files should be consulted for each agent during review. The registry is for this skill only. It is not meant to be loaded on every normal agent turn.

If the registry file does not exist:

  • say so plainly
  • offer to create it
  • initialize it as an empty JSON object: {}

Preferred registry shape

Use one object keyed by agent id. Each agent entry may contain:

  • workspace
  • boot_files
  • shared_context
  • agent_context
  • review_goals
  • staging_dir

Preferred example:

{
  "assistant": {
    "workspace": "~/.openclaw/workspaces/assistant",
    "boot_files": [
      "IDENTITY.md",
      "SOUL.md",
      "USER.md",
      "MEMORY.md",
      "AGENTS.md",
      "TOOLS.md",
      "HEARTBEAT.md"
    ],
    "shared_context": [
      {
        "type": "path_registry_key",
        "key": "USER_CONTEXT"
      }
    ],
    "agent_context": [
      {
        "type": "workspace_relative",
        "path": "notes/assistant-role-notes.md",
        "required": false
      }
    ],
    "review_goals": [
      "shorten boot files",
      "remove redundancy",
      "validate references",
      "keep assistant as front door and secretary"
    ],
    "staging_dir": ".boot-review"
  }
}

Supported context entry types

1. path_registry_key

Resolve the key from ~/.openclaw/registries/path_registry.json. Use the resolved wsl path for reading. If the key is missing or incomplete, report it. Do not guess.

2. workspace_relative

Resolve relative to the agent workspace.

3. absolute_wsl

Read the explicit WSL path. Use sparingly.

4. mount_relative

Resolve relative to the agent workspace, intended for mounted folders such as:

  • context/greg/profile.md
  • context/greg/how-i-work.md

What to audit

For each selected agent, audit the boot files for:

Structure fit

  • does each file do the job it should do
  • is the file too long or too thin
  • does the file contain content that belongs in another boot file

Redundancy

  • repeated role statements across IDENTITY.md, AGENTS.md, and TOOLS.md
  • repeated user preferences across USER.md, AGENTS.md, and SOUL.md
  • repeated scope/boundary rules across multiple files

Reference integrity

  • references to shared notes that are only conceptual
  • references to path-registry keys that are not explained
  • relative paths that do not exist
  • stale terminology
  • renamed agents or folders not reflected consistently

Context alignment

  • does the current boot layer reflect the registered context
  • does the current role of the agent match the surrounding user context
  • are there durable facts missing that clearly belong
  • is too much unstable detail being pushed into the boot layer

Length discipline

  • can the file be shortened without losing function
  • should details be moved out to external context notes
  • is the language too abstract or too repetitive

Output model

Default output should be compact and decision-ready. For each file, produce:

  • status: good / revise / major cleanup
  • 1–3 concrete findings
  • specific recommendations

Then produce a cross-file section:

  • top redundancies to remove
  • top missing items to add
  • top references to fix
  • recommended overall simplification plan

Optional staged rewrites

If the user asks for draft replacements, create them in the agent's staging_dir. Do not overwrite live files by default.

Preferred staging directory:

  • <workspace>/.boot-review/

Write staged replacements with the same filenames, for example:

  • .boot-review/AGENTS.md
  • .boot-review/USER.md

Also write a summary note:

  • .boot-review/review-summary.md

Trigger phrases

Treat requests like these as a request to run this skill:

  • boot file review
  • review boot files
  • audit boot files
  • review AGENTS USER SOUL
  • bootstrap file review
  • agent file review
  • refactor boot files
  • check agent files for redundancy
  • review assistant boot files
  • review daily coach boot files
  • review system engineer boot files

Wizard start

When triggered, open this menu:

**Bootstrap Review**
**Registry file:** ~/.openclaw/registries/boot_context_registry.json

1. Review assistant
2. Review daily-coach
3. Review system_engineer
4. View registry
5. Edit registry guidance
6. Create draft replacements
7. Quit

Reply with 1, 2, 3, 4, 5, 6, or 7.

If the registry file does not exist yet, say:

**Bootstrap Review**
**Registry file:** ~/.openclaw/registries/boot_context_registry.json
Status: not created yet

1. Create registry
2. Quit

Reply with 1 or 2.

Review behavior

When reviewing one agent:

  1. read the registry fresh
  2. resolve the selected agent entry
  3. read the listed boot files from the workspace
  4. resolve and read the registered context files
  5. compare current boot files to current context
  6. produce a concise audit
  7. ask whether to:

- keep as-is - recommend edits only - create staged replacements

If any required registry-backed context is missing:

  • report it under missing context
  • continue the review using what is available
  • do not invent missing context

Draft replacement behavior

When creating draft replacements:

  • preserve the current agent role unless the user explicitly asks to redefine it
  • prefer shortening and de-duplication over expansion
  • keep file tone aligned to the specific agent
  • write only staged copies unless the user explicitly asks for in-place updates
  • write a review-summary.md explaining the main changes

Registry editing guidance

The skill may help the user create or adjust the registry, but keep the interaction simple. Use:

  • agent selection
  • add or remove context entries
  • edit review_goals
  • edit staging_dir

Do not turn this into a giant general registry editor. Keep it boot-review-specific.

Recommended defaults for this environment

Use these default review goals if none are set:

assistant

  • keep assistant as front door and secretary
  • reduce duplication across IDENTITY / AGENTS / TOOLS
  • keep raw-capture and graduation language clear
  • replace vague shared-note references with real workspace-relative or registry-backed references

daily-coach

  • keep daily coach centered on planning, review, and alignment
  • avoid admin-system sprawl
  • ensure stable life constraints are present but concise
  • replace vague shared-note references with real workspace-relative or registry-backed references

system_engineer

  • keep system engineer technical and architecture-focused
  • avoid personal-coaching bleed
  • preserve durable technical decisions in the right file
  • replace vague shared-note references with real workspace-relative or registry-backed references

Safety rules

  • Do not overwrite live boot files without explicit user instruction.
  • Do not treat the registry as proof that a file is good; always inspect the actual file contents.
  • Do not recommend longer files unless there is a real gap.
  • Prefer moving unstable detail out of boot files rather than expanding them.
  • Keep this skill useful for future agents; do not hardcode only today's three agents into the logic.

Good review language

Prefer direct review language like:

  • good as-is
  • shorten
  • move to context note
  • remove duplicate with USER.md
  • reference is too vague
  • replace placeholder with real path or mounted folder
  • belongs in MEMORY.md instead
  • belongs in AGENTS.md instead

Avoid vague language like:

  • maybe improve
  • feels okay
  • might be better

Be specific.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

86.4%
按下载量换算1,068

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills