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

grace-explainer恩典解释者

Agent Skill

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

总安装

1,129

周安装

48

GitHub Stars

150

下载量

396
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

grace-explainer 用于查找和筛选相关信息,支持关键词驱动的任务检索。

  • 适合在需要快速定位资料或验证技术概念时使用。
  • 通过 GitHub 安装后,可在 Codex、Claude 等宿主环境中调用。
  • 使用前需确认是否允许联网及数据访问权限。
  • 建议结合具体任务查看 README 了解搜索范围与策略。

SKILL.md

GRACE — Graph-RAG Anchored Code Engineering

GRACE is a methodology for AI-driven code generation that makes codebases navigable by LLMs. It solves the core problem of AI coding assistants: they generate code but can't reliably navigate, maintain, or evolve it across sessions.

The Problem GRACE Solves

LLMs lose context between sessions. Without structure:

  • They don't know what modules exist or how they connect
  • They generate code that duplicates or contradicts existing code
  • They can't trace bugs through the codebase
  • They drift from the original architecture over time

GRACE provides four interlocking systems that fix this:

Knowledge Graph (docs/knowledge-graph.xml)
    maps modules, dependencies, and public module interfaces
Module Contracts (MODULE_CONTRACT in each file)
    defines WHAT each module does
Semantic Markup (START_BLOCK / END_BLOCK in code)
    makes code navigable at ~500 token granularity
Verification Plan (docs/verification-plan.xml)
    defines HOW correctness, traces, and logs are proven
Operational Packets (docs/operational-packets.xml)
    standardizes execution packets, deltas, and failure handoff

GRACE is process-first, not prompt-first. The point is to make good execution boring: define the contract, name the surfaces, plan verification, and give the worker a bounded packet before asking it to run.

Six Core Principles

1. Never Write Code Without a Contract

Before generating any module, create its MODULE_CONTRACT with PURPOSE, SCOPE, INPUTS, OUTPUTS. The contract is the source of truth — code implements the contract, not the other way around.

2. Semantic Markup Is Not Comments

Markers like // START_BLOCK_NAME and // END_BLOCK_NAME are navigation anchors, not documentation. They serve as attention anchors for LLM context management and retrieval points for RAG systems.

3. Knowledge Graph Is Always Current

docs/knowledge-graph.xml is the single map of the entire project. When you add a module — add it to the graph. When you add a dependency — add a CrossLink. The graph never drifts from reality. Shared docs should describe the module's public contract, not every private helper or implementation detail.

4. Top-Down Synthesis

Code generation follows a strict pipeline:

Requirements -> Technology -> Development Plan -> Verification Plan -> Module Contracts -> Code + Tests

Never jump to code. If requirements are unclear — stop and clarify.

5. Verification Is Architecture

Testing, traces, and log markers are not cleanup work. They are part of the architectural blueprint. If another agent cannot verify or debug a module from the evidence left behind, the module is not fully done.

6. Governed Autonomy (PCAM)

  • Purpose: defined by the contract (WHAT to build)
  • Constraints: defined by the development plan (BOUNDARIES)
  • Autonomy: you choose HOW to implement
  • Metrics: the contract plus verification evidence tell you if you're done

You have freedom in HOW, not in WHAT. If a contract seems wrong — propose a change, don't silently deviate.

Semantic Anchoring

GRACE assumes that agents work better when the code and artifacts carry domain meaning directly.

  • prefer CustomerProfile, ArchiveDatabase, ValidateInput, and BLOCK_ASSIGN_TITLE over abstract placeholders or opaque IDs
  • keep PURPOSE, SCOPE, and scenario text concrete enough that they describe the transformation, not just the file boundary
  • if a rule is subtle, place a compact example in verification or notes rather than hoping an agent will infer the edge case from vague prose

This does not replace contracts. It makes contracts easier for agents to execute accurately.

How the Elements Connect

docs/requirements.xml          — WHAT the user needs (use cases, AAG notation)
        |
docs/technology.xml            — WHAT tools we use (runtime, language, versions)
        |
docs/development-plan.xml      — HOW we structure it (modules, phases, public contracts)
        |
docs/verification-plan.xml     — HOW we prove it works (tests, traces, log markers)
docs/operational-packets.xml   — HOW agents hand work across execution, review, and fixes
        |
docs/knowledge-graph.xml       — MAP of module boundaries, dependencies, public interfaces, and verification refs
        |
src/**/* + tests/**/*          — CODE and TESTS with GRACE markup and evidence hooks

Each layer feeds the next. The knowledge graph and verification plan are both outputs of planning and inputs for execution.

Important boundary rule:

  • shared GRACE docs describe only public module contracts and public module interfaces
  • private helpers, local-only types, and internal orchestration details stay in the module file header, function contracts, and semantic blocks

Optional CLI Support

GRACE also has an optional CLI package, @osovv/grace-cli, which installs the grace binary.

Current public commands:

  • grace lint --path /path/to/project
  • grace lint --profile autonomous --path /path/to/project
  • grace lint --explain docs.missing-required-artifact
  • grace status --path /path/to/project
  • grace status --with modules --path /path/to/project
  • grace module find auth --path /path/to/project
  • grace module show M-AUTH --path /path/to/project --with verification,health
  • grace module health M-AUTH --path /path/to/project
  • grace verification find auth --path /path/to/project
  • grace verification show V-M-AUTH --path /path/to/project
  • grace file show src/auth/index.ts --path /path/to/project --contracts --blocks

Use the CLI for:

  • GRACE semantic markup pairing and completeness
  • unique-tag convention anti-patterns in XML
  • graph/plan/verification reference mismatches
  • autonomy-readiness gaps in packet quality, verification depth, and observable evidence
  • module-scoped readiness, blockers, and remediation hints
  • MODULE_MAP vs export drift in supported source files
  • resolving module IDs from names, paths, dependencies, and verification refs
  • reading shared/public module context from the XML artifacts
  • reading file-local/private implementation context from governed source files

Public/private split:

  • grace module show is the shared/public view of a module from plan, graph, steps, and verification
  • grace file show is the file-local/private view from MODULE_CONTRACT, MODULE_MAP, CHANGE_SUMMARY, scoped contracts, and semantic blocks
  • grace module find searches both planes, including LINKS from file-local markup

The CLI does not replace $grace-reviewer, $grace-refresh, or $grace-verification. It is a cheap automated guardrail before or alongside those higher-context workflows.

Typical preflight:

  • grace status for the current health snapshot and next action
  • grace status --with modules when you also need per-module health summaries
  • grace lint for structural drift
  • grace lint --profile autonomous before long autonomous execution
  • grace lint --explain <code> when one issue needs built-in remediation guidance

Development Workflow

  1. $grace-init — create docs/ structure and AGENTS.md
  2. Fill in requirements.xml with use cases
  3. Fill in technology.xml with stack decisions
  4. $grace-plan — architect modules, data flows, and verification refs
  5. $grace-verification — design and maintain tests, traces, and log-driven evidence
  6. $grace-execute — generate all modules sequentially with review and commits
  7. $grace-multiagent-execute — generate parallel-safe modules in controller-managed waves
  8. $grace-refactor — rename, move, split, merge, or extract modules without drift
  9. $grace-refresh — sync graph and verification refs after manual changes
  10. $grace-fix error-description — debug via semantic navigation
  11. $grace-status — health report
  12. $grace-ask — grounded Q&A over the project artifacts

Detailed References

For in-depth documentation on each GRACE component, see the reference files in this skill's references/ directory:

  • references/semantic-markup.md — Block conventions, granularity rules, logging
  • references/knowledge-graph.md — Graph structure, module types, CrossLinks, maintenance
  • references/contract-driven-dev.md — MODULE_CONTRACT, function contracts, PCAM
  • references/verification-driven-dev.md — Verification plans, test design, traces, and log-driven development
  • references/unique-tag-convention.md — Unique ID-based XML tags, why they work, full naming table

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.68%
按下载量换算129

Claude

30.42%
按下载量换算120

Cursor

18.7%
按下载量换算74

Gemini CLI

9.84%
按下载量换算39

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills