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

grace-refactor恩典重构

Agent Skill

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

总安装

267

周安装

11

GitHub Stars

150

下载量

87
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/osovv/grace-marketplace --skill grace-refactor

简介

grace-refactor 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理时使用。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Refactor a GRACE project without letting architecture or verification drift.

When to Use

  • rename a module, file, symbol, or path
  • split one module into multiple modules
  • merge tightly coupled modules
  • extract helpers or adapters into a new module
  • move code across layers while preserving behavior
  • tighten an interface or dependency surface with explicit approval

Do not use this skill for greenfield implementation. Use $grace-plan, $grace-execute, or $grace-multiagent-execute for new work.

Prerequisites

  • docs/development-plan.xml must exist
  • docs/knowledge-graph.xml must exist
  • docs/verification-plan.xml should exist
  • if the refactor introduces new modules, removes modules, or changes contract behavior, stop and get explicit user approval before editing code
  • if docs/operational-packets.xml exists, use its canonical packet and delta shapes

Core Principle

A GRACE refactor is not just a code move.

It is an atomic migration across:

  • source files
  • test files
  • semantic markup
  • docs/development-plan.xml
  • docs/knowledge-graph.xml
  • docs/verification-plan.xml

The refactor is not done until all six agree again.

Process

Step 1: Classify the Refactor

Identify the exact refactor type:

  • rename
  • move
  • split
  • merge
  • extract
  • interface-tighten
  • path-only

For the requested change, capture:

  • source module IDs and file paths
  • target module IDs and file paths
  • behavior that must remain invariant
  • approved contract changes, if any
  • likely graph and verification fallout

If the change affects behavior, public contracts, or architecture boundaries, present the planned deltas and wait for approval.

Step 2: Build a Refactor Packet

Before editing, prepare a controller-owned packet containing:

  • refactor kind
  • source scope
  • target scope
  • approved write scope
  • invariants to preserve
  • contract delta summary
  • graph delta summary
  • verification delta summary
  • required local, integration, and follow-up checks

When docs/operational-packets.xml exists, align the packet, graph delta, verification delta, and failure handoff to those canonical templates.

Step 3: Apply the Smallest Safe Refactor

Work in the safest order for the refactor type.

Always:

  • preserve or intentionally update MODULE_CONTRACT, MODULE_MAP, CHANGE_SUMMARY, function contracts, and semantic blocks
  • keep imports aligned with approved dependencies
  • preserve or update stable [Module][function][BLOCK_NAME] markers when critical branches move
  • move module-local tests with the behavior they verify
  • prefer atomic renames over long-lived mixed states

For split and merge refactors:

  • keep ownership explicit for each resulting module
  • update write scopes and test scopes accordingly
  • do not leave half-migrated logic spread across modules silently

Shared-doc rule:

  • keep shared docs focused on public module contracts and public interfaces
  • let private helper reshaping stay local unless it changes the public boundary

Step 4: Synchronize Shared Artifacts

After the code refactor, update the shared artifacts in one coherent pass.

Update docs/development-plan.xml for:

  • module IDs and names
  • target source/test paths
  • implementation order or ownership changes
  • verification references

Update docs/knowledge-graph.xml for:

  • module tags
  • public annotations and public exports only
  • CrossLinks
  • verification refs

Update docs/verification-plan.xml for:

  • V-M-xxx entries
  • test file paths
  • module-local commands
  • required markers and trace assertions
  • wave-level or phase-level follow-up checks

If IDs changed, update every reference atomically. Do not leave temporary stale IDs unless the user explicitly requires compatibility handling.

Step 5: Verify by Blast Radius

Run verification at the smallest level that still protects correctness:

  • renamed or moved module-local checks first
  • affected integration surfaces second
  • broader phase checks when coupling changed materially

If the refactor causes failures, produce a structured failure handoff using the canonical FailurePacket shape when available.

Step 6: Review and Refresh

Before declaring success:

  • run a scoped $grace-reviewer pass on the changed files and shared-artifact deltas
  • run targeted $grace-refresh on the touched modules and dependency surfaces
  • escalate to a full refresh or broader review if the refactor reveals wider drift

Rules

  • Never silently invent new architecture during a refactor
  • Never leave code and shared artifacts in different realities
  • Prefer smaller, narratable migrations over giant rewrites
  • Keep compatibility shims only when there is a concrete requirement
  • If the refactor reveals weak tests or weak logs, strengthen verification before calling it complete

Deliverables

  1. refactor kind and affected scope
  2. files changed
  3. graph delta proposal
  4. verification delta proposal
  5. verification evidence
  6. remaining risks or follow-up checks

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.93%
按下载量换算33

Claude

29.28%
按下载量换算25

Cursor

18.33%
按下载量换算16

Gemini CLI

9.65%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills