返回 Skill 列表
extension
分类: 开发与工程无需 API Key

refreshing-docs

刷新README.md文档表格,包括包表格和核心命名空间索引。从package.json文件和核心模块JSDoc中读取信息。

person作者: jakexiaohubgithub

Refreshing Docs

Update auto-generated documentation tables in README.md.

Steps

  1. Run the script at .claude/skills/refreshing-docs/scripts/docs-refresh.ts

Reference

The script updates two sections in README.md:

  1. Packages table - Lists all packages from packages/*/package.json
  2. Core namespace index - Lists modules from core/src/*/_.ts with JSDoc descriptions

Sections are marked with HTML comments:

<!-- PACKAGES_TABLE_START -->
| Package | Description |
| ------- | ----------- |
| [`@kitz/core`](./packages/core) | Core utilities |
...
<!-- PACKAGES_TABLE_END -->

<!-- CORE_NAMESPACE_INDEX_START -->
| Module | Description |
| ------ | ----------- |
| `Arr` | Array utilities |
...
<!-- CORE_NAMESPACE_INDEX_END -->

Notes

  • Run after adding/removing packages or modifying package descriptions
  • Run after adding/modifying core modules or their JSDoc
  • The markers must exist in README.md for the script to work