一键导入
public-api-guardian
Evaluate changes to public API surfaces using CodeGraph to avoid breaking consumers.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Evaluate changes to public API surfaces using CodeGraph to avoid breaking consumers.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
创建或更新 Codex meta-scheduler watcher automation。用于为一个项目、milestone、parent issue、issue set、pull request、PR set、release、repo carrier 或手工目标维护 coordination unit graph、scheduler pool、candidate graph/pool、shared lane lock table、scheduler waiting queue 和调度线程生命周期;在安全并行时创建多个 scheduler thread,并在 shared lane 争用时执行 lane grant / wait / release / recovery。默认中文说明和回报,可适配用户语言;协议字段、状态枚举、工具名和结构化模板字段保持机器可读。
Codex 线程编排的 scheduler 与 worker 协作协议。用于 Codex 作为 scheduler 拆分全局目标、创建或恢复 worker、管理 branch/worktree、发送跨线程指令、运行 gate、完成 closeout;也用于 Codex 作为 worker 确认分配现场、创建并自检 scoped goal、只执行指定 scope、回报 scheduler-readable 关键节点,并等待 scheduler-owned gate。默认使用中文说明和回报,可根据用户语言适配;协议字段、状态枚举、工具名和结构化模板字段保持机器可读。
起草、优化或设置符合 OpenAI《Follow a goal》指南的 Codex goal。起草前先根据最新用户请求确定输出语言。为用户起草可复制的单行 /goal 命令;用户明确要求时,通过 goal 工具/API 创建自包含的 active goal objective。用户使用中文、混合语言或语言不明确时,输出中文。保留命令、路径、代码标识符、URL、issue ID、精确引用,以及 /goal、API、objective、copyable_goal_command、active_goal_api 等标识原文。
Map the architecture of a repository using CodeGraph.
Narrow down likely code locations from bug descriptions using CodeGraph.
Generate a graph-backed implementation plan before modifying repository code.
| name | public-api-guardian |
| description | Evaluate changes to public API surfaces using CodeGraph to avoid breaking consumers. |
Use this skill when the user proposes renaming, removing or altering functions, classes, routes or modules that are exported publicly or consumed by other packages or services.
Goal: Determine whether the change will break downstream consumers and advise on safe migration strategies.
Required reference:
reference/public-api-rules.md before deciding whether a change is safe, breaking or migration-only.Shared tool policy:
../../reference/codegraph-tool-policy.md for common CodeGraph tool selection, fallback and unavailable handling.Task-specific tools:
codegraph_context, codegraph_explore, codegraph_search, codegraph_node, codegraph_callers and codegraph_impact.Workflow:
codegraph_status.reference/public-api-rules.md and use it to classify public API signals and external consumer risk.codegraph_search. Confirm it is exported or reachable via an HTTP path.codegraph_context for surrounding API context. Use codegraph_explore only if the API surface belongs to an unfamiliar subsystem.codegraph_node to understand its file path, export declaration and any documentation or annotations.codegraph_callers to find direct consumers of the symbol. Distinguish internal callers (within the same codebase) from external callers (other packages, microservices, public entry points).codegraph_impact to identify indirect consumers and test files that reference the symbol.Rules:
reference/public-api-rules.md.