仓库 Guidance 同步
- 作者仓库星标 0
- 作者仓库 skills-registry
Repo Guidance Sync
Overview
Use this skill to decide what documentation must change after a code, design, or product update, then make those edits in the right files with verifiable links back to source behavior.
Workflow
Identify the change surface.
- Inspect the diff, touched packages, new commands, config flags, UI behavior, API shapes, CRDs, generated schemas, deployment manifests, and tests.
- If the change affects setup, CLI workflows, operator reconciliation, ingress/gateway behavior, auth/policy, registry/image handling, observability, or cache-mode assumptions, identify the matching E2E scenario in
test/e2e/kind.shor adjacent integration tests before editing docs. - Search for existing docs before adding new files:
rg -n "<command|field|feature|concept>" README.md AGENTS.md docs website config api internal services. - Prefer updating the nearest existing guide, reference, or runbook over creating a new document.
Classify required doc updates.
- User-facing product change: update README, docs guides, CLI examples, API/reference pages, screenshots or UI copy references if present.
- Developer workflow change: update AGENTS.md, build/test instructions, local setup notes, failure modes, environment variables, or repo map entries.
- Codebase architecture or contributor-flow change: review
docs/internals/and decide whether the overview, package tours, or Mermaid diagrams need updates. Add or revise diagrams only when they clarify package boundaries, request flow, reconciliation flow, service interactions, or contributor decision points. - Design change: update design-system rules, component guidance, UX behavior notes, or docs that describe screens/workflows.
- Operational change: update install, deployment, TLS, registry, Kubernetes, observability, and rollback/debug instructions.
- Schema/contract change: update CRD/API docs, examples, generated docs if the repo owns them, and any golden snapshots tied to CLI help.
- E2E-visible behavior change: update or add the relevant E2E assertion in
test/e2e/kind.shwhen the behavior is exercised through Kind, real MCP traffic, policy/session state, OAuth, observability, registry/image paths, orcluster doctor. If narrower unit/integration coverage is sufficient, note why in the final validation summary.
Verify source truth before writing.
- Treat code, tests, CRD types, OpenAPI specs, CLI definitions, workflow files, and manifests as source of truth.
- For commands and examples, confirm exact flags, defaults, resource names, paths, and environment variables from implementation.
- Avoid inventing roadmap promises or behavior not present in code unless the user explicitly asks for planned-product wording.
Edit with the right scope.
- Keep docs concise and task-oriented; remove stale claims instead of layering caveats.
- Preserve the repo's voice, terminology, command style, and existing document structure.
- For
docs/internals/, prefer updating the nearest existing walkthrough, mental model, or diagram over adding a new page. Use diagrams for relationships and flows, not for listing files that a table can express more clearly. - Update AGENTS.md only for durable contributor or agent guidance, not one-off implementation details.
- Keep examples copy-pasteable: include required tags, namespaces, paths, auth headers, and prerequisite environment variables.
- Update links and table-of-contents entries when adding or renaming pages.
Validate.
- Run the narrowest relevant checks: markdown/docs build if available, golden tests for CLI help changes, generated-doc drift checks when docs are generated, E2E scenario checks for behavior covered by
test/e2e/kind.sh, and targeted code tests if examples exercise behavior. - At minimum, run searches for old field names, commands, or stale wording that the change replaces.
- If validation cannot be run, state the blocker and what was manually checked.
- Run the narrowest relevant checks: markdown/docs build if available, golden tests for CLI help changes, generated-doc drift checks when docs are generated, E2E scenario checks for behavior covered by
AGENTS.md Rules
Update AGENTS.md when a change affects how future agents or contributors should work in the repo. Good reasons include new required checks, changed setup commands, new failure modes, changed repository layout, new service ownership, changed CLI workflows, or new operational safety rules.
Do not put product marketing, exhaustive API reference, release notes, or transient PR context in AGENTS.md. Link or summarize stable docs instead.
Output Standard
When finished, summarize:
- docs and AGENTS.md files changed
- source behavior each update reflects
- validation run, including searches for stale terms
- known doc gaps left intentionally open
<!-- tomevault:4.0:skill_md:2026-05-23 -->Source: Agent-Hellboy/mcp-runtime — distributed by TomeVault.
- 流狐分类
- 设计与多媒体
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @tomevault-io · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 即装即用
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- 未声明
- 底层运行要求
- 未声明
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- 读取环境变量
- 检测到的网络行为
- 仅限本地
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 Use this skill to decide what documentation must change after a code, design, or product update, then make those edits in the right files with verifiable links back to source behavior.
Identify the change surface. Inspect the diff, touched packages, new commands, config flags, UI behavior, API shapes, CRDs, generated schemas, deployment manifests, and tests. If the change affects setup, CLI workflows, operator reconciliation, ingress/gateway…
Update AGENTS.md when a change affects how future agents or contributors should work in the repo. Good reasons include new required checks, changed setup commands, new failure modes, changed repository layout, new service ownership, changed CLI workflows, or…
When finished, summarize: docs and AGENTS.md files changed source behavior each update reflects
# Repo Guidance Sync
## Overview
Use this skill to decide what documentation must change after a code, design, or product update, then make those edits in the right files with verifiable links back to source behavior.
## Workflow
1. Identify the change surface.
- Inspect the diff, touched packages, new commands, config flags, UI behavior, API shapes, CRDs, generated schemas, deployment manifests, and tests.
- If the change affects setup, CLI workflows, operator reconciliation, ingress/gateway behavior, auth/policy, registry/image handling, observability, or cache-mode assumptions, identify the matching E2E scenario in `test/e2e/kind.sh` or adjacent integration tests before editing docs.
- Search for existing docs before adding new files: `rg -n "<command|field|feature|concept>" README.md AGENTS.md docs website config api internal services`.
- Prefer updating the nearest existing guide, reference, or runbook over creating a new document.
2. Classify required doc updates.
- User-facing product change: update README, docs guides, CLI examples, API/reference pages, screenshots or UI copy references if present.
- Developer workflow change: update AGENTS.md, build/test instructions, local setup notes, failure modes, environment variables, or repo map entries.
- Codebase architecture or contributor-flow change: review `docs/internals/` and decide whether the overview, package tours, or Mermaid diagrams need updates. Add or revise diagrams only when they clarify package boundaries, request flow, reconciliation flow, service interactions, or contributor decision points.
- Design change: update design-system rules, component guidance, UX behavior notes, or docs that describe screens/workflows.
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Overview → Workflow → AGENTS.md Rules → Output Standard
要点 -> 1. Identify the change surface. · 2. Classify required doc updates. · 3. Verify source truth before writing. · 4. Edit with the right scope. · 5. Validate. · Update AGENTS.md when a change affects how future agents or contributors should work in the repo. · Do not put product marketing, exhaustive API reference, release notes, or transient PR context in AGENTS.md. · --- > Source: [Agent-Hellboy/mcp-runtime](https://github.com/Agent-Hellboy/mcp-runtime) — distributed by [TomeVault](https://tomevault.io).
文件/命令 -> test/e2e/kind.sh · docs/internals/ · cluster doctor · ingress/gateway · auth/policy · registry/image · README.md · AGENTS.md
内容 SHA-256 -> 192569897c08
方法与流程
适用与边界
原文中的明确线索
test/e2e/kind.sh、docs/internals/、cluster doctor、ingress/gateway、auth/policy、registry/image、README.md、AGENTS.md