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

bootstrapBootstrap 初始化

Agent Skill

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

总安装

470

周安装

20

GitHub Stars

35

下载量

165
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/petekp/claude-code-setup --skill bootstrap

简介

用于查找、检索和筛选相关信息。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。
  • bootstrap 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Bootstrap Prompt Generator

Generate a detailed context prompt that enables seamless continuation of work in a fresh Claude Code session.

Purpose

Sessions accumulate valuable context: task understanding, decisions made, patterns discovered, gotchas encountered, and progress achieved. When starting fresh, this knowledge is lost. A bootstrap prompt preserves the essential context needed to continue effectively.

Core Principle: Intelligent Context Selection

Do NOT mechanically dump everything. Analyze what actually matters for continuation:

  • What would confuse a fresh Claude? Include it.
  • What decisions took deliberation? Document the reasoning.
  • What gotchas caused wasted time? Warn about them.
  • What's the critical path forward? Clarify it.

Omit: routine operations, obvious context, resolved dead-ends, standard patterns.

Analysis Process

1. Assess Session Significance

Determine what kind of work occurred:

  • Exploration: Learning codebase, investigating options
  • Implementation: Building features, fixing bugs
  • Debugging: Tracking down issues, testing hypotheses
  • Planning: Designing architecture, making decisions

Each type has different handoff needs.

2. Identify Essential Context

Project State

  • Working directory and project identity
  • Tech stack if non-obvious
  • Branch and git state (use scripts/gather-git-state.sh)

Task Context

  • Original objective (what the user asked for)
  • Current interpretation (what we understood it to mean)
  • Scope decisions (what's in/out)

Progress Assessment

  • What's completed and working
  • What's in progress and current state
  • What's remaining (check todo list)
  • What's blocked and why

Critical Knowledge

  • Architectural decisions and their rationale
  • Patterns established in this session
  • Gotchas and workarounds discovered
  • Files that are central to the work

Next Actions

  • Immediate next step
  • Remaining work outline
  • Known unknowns to investigate

3. Determine Depth

Scale detail to session complexity:

Light session (quick task, simple fix): Brief summary, next step Medium session (feature work, debugging): Key decisions, progress, gotchas Deep session (architecture, complex debug): Full context with reasoning

Output Format

Generate a markdown document structured as a prompt for a fresh session:

# Bootstrap: [Brief Task Description]

> Generated: [timestamp]
> Project: [project path]
> Branch: [branch name]

## Context

[2-4 sentences on what this project/task is about]

## Session Summary

[What happened in the session - decisions, progress, discoveries]

## Current State

[Where things stand right now - what works, what's in progress]

## Key Files

[List of files central to the work with brief descriptions]

## Decisions Made

[Important choices with brief rationale - only if non-obvious]

## Gotchas & Warnings

[Things that caused problems or need careful handling]

## Next Steps

[Prioritized list of what to do next]

## Resume Instructions

[Specific guidance on how to continue - commands to run, files to open, etc.]

Omit sections that aren't relevant. A simple task might only need Context, Current State, and Next Steps.

Execution Steps

  1. Analyze the session - Review conversation, understand what happened
  2. Run git state script - Execute scripts/gather-git-state.sh to capture repository state
  3. Check todo list - Review current todos for progress context
  4. Identify key files - Determine which files are central to the work
  5. Draft bootstrap prompt - Write the document following the format above
  6. Determine output path - Use .claude/handoffs/{project-name}-{YYYYMMDD-HHMMSS}.md
  7. Save the file - Write the bootstrap prompt to the handoffs directory
  8. Copy to clipboard - Execute scripts/copy-to-clipboard.sh {filepath} to copy contents

File Locations

  • Output directory: .claude/handoffs/ (create if doesn't exist)
  • Filename pattern: {project-name}-{YYYYMMDD-HHMMSS}.md
  • Project name: Derive from git remote, directory name, or package.json

Scripts

scripts/gather-git-state.sh

Collects repository state: branch, recent commits, uncommitted changes, modified files. Run this first to include accurate git context in the bootstrap prompt.

scripts/copy-to-clipboard.sh

Copies file contents to system clipboard (macOS pbcopy). Run after saving the bootstrap prompt file.

Quality Checklist

Before finalizing, verify:

  • Fresh Claude could understand the task without prior context
  • Decisions include enough rationale to avoid re-litigating
  • Gotchas are specific enough to be actionable
  • Next steps are concrete and prioritized
  • No unnecessary detail that obscures the important parts

Example Bootstrap Prompts

Light Session Example

# Bootstrap: Fix API rate limiting bug

> Generated: 2025-01-15 14:30
> Project: /Users/dev/acme-api
> Branch: fix/rate-limiter

## Context

Fixing a bug where rate limiting wasn't being applied to the `/search` endpoint.

## Current State

Found the issue - the rate limiter middleware was added after the route registration.
Fix is ready but untested.

## Next Steps

1. Run test suite: `npm test`
2. If passing, commit with message "Fix rate limiter middleware order for /search"

Deep Session Example

See references/deep-session-example.md for a complex multi-day project handoff.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.33%
按下载量换算53

Claude

32.21%
按下载量换算53

Cursor

19.94%
按下载量换算33

Gemini CLI

9.77%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills