Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

bootstrapBootstrap 初始化

Agent Skill

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

总安装

635

周安装

27

GitHub Stars

318

下载量

222
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:bootstrap(Bootstrap 初始化)
来源仓库:https://github.com/boshu2/agentops
仓库路径:skills/bootstrap
安装命令:
npx skills add https://github.com/boshu2/agentops --skill bootstrap
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/boshu2/agentops --skill bootstrap

简介

bootstrap 一键初始化 AgentOps 全栈产品层,自动部署 hooks、配置与依赖项。

  • 兼容新项目与存量仓库,仅补充缺失组件,避免覆盖已有文件。
  • 可选安装 ao 与 beads CLI,支持外部工具探测与优雅降级处理。
  • 执行后需验证各模块状态,确保后续 /design、/plan 等命令正常运行。
  • bootstrap 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

/bootstrap

Quick Ref: One command to set up the full AgentOps product layer. Progressive — bare repos get everything, existing repos fill gaps only.

YOU MUST EXECUTE THIS WORKFLOW. Do not just describe it.

Quick Start

/bootstrap

That is it. One command. Every step below is idempotent — existing artifacts are never overwritten.

External Tools

  • ao (optional) — AgentOps CLI. Required only for hook activation (Step 5). Bootstrap skips hooks gracefully when missing.
  • bd (optional, recommended) — beads CLI. Bootstrap probes for bd in Step 0.5 and, when missing, points the user at scripts/install-bd.sh with a copy-paste command. Bootstrap never installs bd on the user's behalf.

Flags

FlagEffect
--dry-runReport what would be created without doing anything
--forceRecreate artifacts even if they already exist

Execution Steps

Step 0: Detect Repo State

git rev-parse --is-inside-work-tree >/dev/null 2>&1 || { echo "NOT_A_GIT_REPO"; exit 1; }
HAS_GOALS=$([[ -f GOALS.md ]] && echo true || echo false)
HAS_PRODUCT=$([[ -f PRODUCT.md ]] && echo true || echo false)
HAS_README=$([[ -f README.md ]] && echo true || echo false)
HAS_AGENTS=$([[ -d .agents ]] && echo true || echo false)
HAS_HOOKS=$(grep -q "agentops" .claude/settings.json 2>/dev/null && echo true || echo false)
HAS_AO=$(command -v ao >/dev/null && echo true || echo false)
HAS_BD=$(command -v bd >/dev/null && echo true || echo false)

Classify the repo:

StateCondition
bareNo GOALS.md, no PRODUCT.md, no.agents/
partialSome artifacts present, some missing
completeAll artifacts present

If --dry-run is set: report the state and what would be created, including whether bd would be recommended (when HAS_BD is false), then stop. Do not proceed to Steps 1-6.

If the repo is complete and --force is not set: report "Repo is fully bootstrapped. Nothing to do." and stop.

Step 0.5: Recommend bd

If HAS_BD is true: skip. Report "bd: present."

If HAS_BD is false: report "bd: not installed (recommended). Install with: bash scripts/install-bd.sh" and continue. Bootstrap does NOT run the installer — bd is optional, the user decides.

If scripts/install-bd.sh is absent at the repo root, drop the install hint and just report "bd: not installed (recommended). See https://github.com/steveyegge/beads".

Step 1: GOALS.md

If HAS_GOALS is false (or --force is set):

Run the goals skill to initialize GOALS.md interactively:

Skill(skill="goals", args="init")

If HAS_GOALS is true and --force is not set: skip. Report "GOALS.md exists -- skipped."

Step 2: PRODUCT.md

If HAS_PRODUCT is false (or --force is set):

Run the product skill to generate PRODUCT.md interactively:

Skill(skill="product")

If HAS_PRODUCT is true and --force is not set: skip. Report "PRODUCT.md exists -- skipped."

Step 3: README.md

If HAS_README is false (or --force is set) AND PRODUCT.md now exists:

Run the readme skill to generate README.md:

Skill(skill="readme")

If HAS_README is true and --force is not set: skip. Report "README.md exists -- skipped."

If PRODUCT.md does not exist (Step 2 was skipped or failed): skip. Report "README.md skipped -- PRODUCT.md required first."

Step 4:.agents/ Structure

If HAS_AGENTS is false (or --force is set):

Create the directory structure:

mkdir -p .agents/learnings .agents/council .agents/research .agents/plans .agents/rpi

Create .agents/AGENTS.md if it does not exist:

# Agent Knowledge Store

This directory contains accumulated knowledge from agent sessions.

## Structure

| Directory | Purpose |
|-----------|---------|
| `learnings/` | Extracted lessons and patterns |
| `council/` | Council validation artifacts |
| `research/` | Research phase outputs |
| `plans/` | Implementation plans |
| `rpi/` | RPI execution packets and phase logs |

## Usage

Knowledge is automatically managed by the AgentOps flywheel:
- `/inject` surfaces relevant prior knowledge at session start
- `/post-mortem` extracts and processes new learnings
- `/compile` runs maintenance (mine, grow, defrag)

If HAS_AGENTS is true and --force is not set: skip. Report ".agents/ exists -- skipped."

Step 5: Hook Activation

If HAS_AO is true AND HAS_HOOKS is false (or --force is set):

ao init --hooks

If HAS_AO is false: skip. Report "Hooks skipped -- ao CLI not installed. Run: brew tap boshu2/agentops https://github.com/boshu2/homebrew-agentops && brew install agentops"

If HAS_HOOKS is true and --force is not set: skip. Report "Hooks already configured -- skipped."

Step 6: Report

Output a summary table:

Bootstrap complete.

| Artifact      | Status  |
|---------------|---------|
| GOALS.md      | created / skipped / failed |
| PRODUCT.md    | created / skipped / failed |
| README.md     | created / skipped / failed |
| .agents/      | created / skipped / failed |
| Hooks         | activated / skipped / failed |
| bd            | present / recommended (not installed) |

Repo is now AgentOps-ready. Next: /rpi "your first goal"

Examples

Bare Repo

User says: /bootstrap

What happens: Agent detects no AgentOps artifacts. Runs /goals init, /product, /readme, creates.agents/ structure, activates hooks. Reports all five artifacts created.

Partial Repo (has GOALS.md and.agents/)

User says: /bootstrap

What happens: Agent detects existing artifacts. Skips GOALS.md and.agents/. Runs /product, /readme. Activates hooks if needed. Reports two created, three skipped.

Dry Run

User says: /bootstrap --dry-run

What happens: Agent detects repo state and reports what would be created. No files are written.

Troubleshooting

ProblemCauseSolution
"Not a git repo"No.git directoryRun git init first
Goals skill failsNo project contextProvide a one-line project description when prompted
Product skill failsNo goals definedRun /goals init manually first, then re-run /bootstrap
Hooks not activatingao CLI not installedInstall: brew tap boshu2/agentops https://github.com/boshu2/homebrew-agentops && brew install agentops
bd not installedRecommended but optionalInstall with bash scripts/install-bd.sh if you want issue tracking; otherwise ignore
Want to start overExisting artifacts blockingUse --force to recreate all artifacts

See Also

  • goals -- Fitness specification and directive management
  • product -- Product definition generation
  • readme -- README generation
  • quickstart -- New user onboarding (lighter than bootstrap)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.68%
按下载量换算75

Claude

28.67%
按下载量换算64

Cursor

19.29%
按下载量换算43

Gemini CLI

8.38%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills