Agent Skills
› BytePioneer-AI/codex-host
› dep-refs
dep-refs
GitHub在重构或删除代码前,追踪 TypeScript 导出、导入和重新导出的依赖关系。通过语言服务和 rg 命令识别实际调用者,确保变更安全。
触发场景
重构接口定义
删除不再使用的代码或导出
检查模块依赖边界
安装
npx skills add BytePioneer-AI/codex-host --skill dep-refs -g -y
SKILL.md
Frontmatter
{
"name": "dep-refs",
"description": "Trace TypeScript exports, imports, and re-exports in codexhost before refactoring interfaces or deleting code. Use available symbol tooling and repository searches to identify actual callers."
}
Export and reference tracing
Work from the repository root. The ZCode-specific pnpm dep:refs and pnpm knip commands are not installed here; use current tools and package exports rather than adding dependencies for a lookup.
- Read the target declaration and owning package's
package.jsonexports. Follow its public entrypoint and any re-export chain. - Prefer a TypeScript language-service references query when the session provides one. Ensure it covers workspace callers, including
packages/adapters/*, scripts and tests. - Use
rgto find candidate references, then inspect aliases, namespace imports, re-exports and relevant consumers. For example:
rg -n --glob '*.{ts,tsx,mts,cts,mjs,js,json}' '\bHarnessAdapter\b' packages tests tools scripts
rg -n --glob '*.{ts,tsx,mts,cts,mjs,js,json}' '@codexhost/harness-adapter' packages tests tools scripts
- For a deletion, search the whole repository, including hidden configuration when relevant. Check public exports, dynamic loading, plugin manifests, string-based dispatch and generated consumers. Read the current boundary checker before changing dependency directions.
- Report concrete callers with paths and lines, re-exported public surfaces, and the limits of the search. Zero text matches or zero static references is not proof that an externally consumed export can be removed.
After changing an interface, validate its actual consumers with the applicable typecheck/build and focused tests from package scripts. This skill is read-only unless the user has also requested an implementation change.
版本历史
- 3df9bd2 当前 2026-09-22 01:09


