Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计通过

checkpoint-read检查点读取

Agent Skill

checkpoint-read 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

629

周安装

27

GitHub Stars

4

下载量

220
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/desek/governance --skill checkpoint-read

简介

checkpoint-read 用于读取最近由 /checkpoint-commit 创建的检查点提交历史,恢复项目上下文以便继续开发,适合在 Codex、Claude、Cursor、Gemini CLI 中重启会话后快速定位进度时使用。

  • 适用于跨日工作或中断后重新进入开发状态场景。
  • 核心能力是自动查询 Git 历史并总结已实现内容与待完成事项。
  • 安装命令为 npx skills add https://github.com/desek/governance --skill checkpoint-read。
  • 使用前应确保本地有 checkpoint-commit 生成的历史记录。

SKILL.md

/checkpoint-read

Reads checkpoint commit history to recover project context when starting a new session. Queries Git history for checkpoint commits created by /checkpoint-commit, displays the most recent relevant checkpoint details, and summarizes what was implemented, what remains, and any decisions captured — enabling seamless session continuity.

Usage: /checkpoint-read

No arguments required. The command automatically reads the most recent checkpoint commits from local Git history.

Workflow

Follow these steps in order.

Step 1: List Recent Checkpoints

Query Git history for checkpoint commits:

git log --oneline --decorate --grep '^checkpoint.*:' -n 25
  • If no results: Report "No checkpoint commits found in this repository." and STOP. Proceed with the session without checkpoint context.
  • If results exist: Display the list of recent checkpoint commits to provide an overview of checkpoint history.

Step 2: Read Most Recent Checkpoint

Extract the SHA from the most recent (first) checkpoint in the list, then read its full details:

# Show commit stats (files changed)
git show --stat {SHA}

# Show full commit message and diff
git show {SHA}

Parse the commit message subject line and body for context recovery.

Step 3: Summarize Context

Analyze the checkpoint commit message and produce a structured summary with three sections:

  1. What was implemented: Extract completed work from the commit body bullet points and diff content.
  2. What remains: Identify pending items, TODOs, or incomplete work mentioned in the commit message.
  3. Decisions captured: Note any architectural or design decisions recorded in the commit message.

Step 4: Report

Present the structured summary to the user, including:

  • The checkpoint commit SHA and date for reference
  • The CR identifier from the commit subject (e.g., CR-XXXX)
  • The three-section context summary (implemented, remaining, decisions)

Safety Rules

  • MUST NOT perform destructive Git operations: git reset, git rebase, git commit --amend, git push --force
  • MUST NOT create commits, modify files, or alter Git state in any way
  • MUST be entirely read-only — only Git query commands are permitted
  • MUST rely only on local Git operations (no network calls)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.57%
按下载量换算80

Claude

30.31%
按下载量换算67

Cursor

16.29%
按下载量换算36

Gemini CLI

8.33%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills