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

document-public-apis记录公共 API

Agent Skill

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

总安装

2,081

周安装

85

GitHub Stars

99,535

下载量

666
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pytorch/pytorch --skill document-public-apis

简介

为 PyTorch 项目补充未记录公共 API 文档。

  • 通过 Sphinx autodoc 指令扩展文档覆盖率。
  • 仅修改文档源文件,不触碰 Python 源码。
  • 添加前必须验证函数是否在 doctree 白名单中。
  • document-public-apis 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Document Public APIs

This skill documents undocumented public APIs in PyTorch by removing entries from the coverage ignore lists in docs/source/conf.py and adding Sphinx autodoc directives (e.g., autosummary, currentmodule, autoclass, automodule) to the corresponding .md or .rst doc source files in docs/source/.

"Documenting" means adding autodoc directives to doc source files — NEVER modifying Python source code. Do not add or edit docstrings in .py files. Your only job is to add the correct directive to the correct doc file.

IMPORTANT: Before adding any function to the sphinx doctree, verify it has a real docstring. Use a quick Python check (e.g., python -c "from torch.module import func; print(bool(func.__doc__))") to confirm the function has actual documentation content — not just an empty docstring or a bare .. warning:: This API is experimental stub. Functions without meaningful docstrings should be left in the coverage_ignore_functions/coverage_ignore_classes lists. Adding undocumented functions to the doctree creates empty or near-empty pages that degrade documentation quality.

Overview

docs/source/conf.py contains two lists that suppress Sphinx coverage warnings for undocumented APIs:

  • coverage_ignore_functions: undocumented functions
  • coverage_ignore_classes: undocumented classes

Entries are organized by module comment groups. Each group has a module label comment followed by the function/class names that belong to that module:

coverage_ignore_functions = [
    # torch.ao.quantization.fx.convert              <-- module label comment
    "convert",                                       # <-- entries belonging to this module
    "convert_custom_module",
    "convert_standalone_module",
    "convert_weighted_module",
    # torch.ao.quantization.fx.fuse                 <-- next module group
    "fuse",
    # torch.nn.functional
    "assert_int_or_pair",  # looks unintentionally public   <-- entry with inline comment
    "constant",  # deprecated                                <-- entry with inline comment
]

There are two kinds of comments:

  • Module label comments (# torch.ao.quantization.fx.convert): these label which module the entries below belong to. They appear on their own line before a group of entries.
  • Inline comments (# deprecated, # documented as adaptive_max_pool1d): these appear after a string entry on the same line and explain *why* the entry is in the ignore list.

The module label comment directly tells you:

  1. Which module the functions belong to
  2. Where to add them in the docs (e.g., # torch.ao.quantization.fx.convert → the functions go under torch.ao.quantization.fx.convert in the doc file)

Instructions

Each invocation of this skill processes one batch of module groups. Pick one or more complete module groups from the ignore lists, document their functions, and verify.

Step 1: Select module groups to document

Read docs/source/conf.py and select one or more complete module groups to document. A module group is a module label comment and all entries beneath it up to the next module label comment. Process entire groups — never split a group across batches.

For example, selecting the torch.ao.quantization.fx.convert group means taking all of:

# torch.ao.quantization.fx.convert
"convert",
"convert_custom_module",
"convert_standalone_module",
"convert_weighted_module",

Work through the lists top-to-bottom. Choose enough groups to make meaningful progress (aim for 5–15 functions total, but always include complete groups even if that means going slightly over).

Check inline comments before including an entry. Some entries have inline comments that indicate they should not be documented:

  • # deprecated — The function is deprecated. Leave it in the ignore list.
  • # documented as <other_name> — Already documented under a different name. Leave it.
  • # looks unintentionally public — Probably not meant to be public API. Leave it.
  • # legacy helper for... — Same as deprecated. Leave it.
  • # utility function - Leave it.

If a module group has a mix of regular entries and entries with inline comments, still process the group — but only comment out the regular entries. Leave entries with inline comments untouched in the ignore list.

Step 1b: Verify functions have actual docstrings

For each function selected in Step 1, check that it has a meaningful docstring by running:

python -c "from torch.module.path import func_name; doc = func_name.__doc__; print('HAS DOC' if doc and len(doc.strip()) > 80 else 'NO DOC'); print(repr(doc[:120]) if doc else 'None')"

A function has a meaningful docstring if it has real descriptive content — not just:

  • None or empty string
  • Only a .. warning:: This API is experimental stub with no description
  • Only a one-line auto-generated signature

Functions without meaningful docstrings must stay in the ignore list. Remove them from your batch. If an entire module group has no functions with docstrings, skip the whole group.

Step 2: Present the batch to the user

Before making any edits, present the selected module groups and their functions to the user. Indicate which functions passed the docstring check and which were excluded. Show them organized by module:

Module: torch.ao.quantization.fx.convert
  - convert
  - convert_custom_module
  - convert_standalone_module
  - convert_weighted_module

Module: torch.ao.quantization.fx.fuse
  - fuse

Then use the AskUserQuestion tool to let the user confirm, with options like:

  • "Proceed with this batch"
  • "Skip some entries" (user can specify which to remove)
  • "Pick a different batch"

Step 3: Comment out entries in conf.py

After the user confirms, edit docs/source/conf.py and comment out (do not delete) the selected entries. Use a # prefix on each string entry line:

# torch.ao.quantization.fx.convert
# "convert",
# "convert_custom_module",
# "convert_standalone_module",
# "convert_weighted_module",

This preserves the original entries so they can be restored if verification fails.

Step 4: Run Sphinx coverage

cd docs && make coverage

Ignore the terminal output of make coverage. It often contains unrelated tracebacks and errors from Sphinx extensions (e.g., onnx_ir, katex, sphinxcontrib) that have nothing to do with coverage. The only thing that matters is whether docs/build/coverage/python.txt was generated. Read that file to see the specific undocumented APIs.

The format of python.txt lists each undocumented API as:

torch.ao.quantization.fx.convert
   * convert
   * convert_custom_module
   * convert_standalone_module
   * convert_weighted_module

Not all commented-out functions will appear in python.txt. Some may already be documented elsewhere. This is fine — only add directives for functions that actually appear in python.txt.

If make coverage fails due to missing dependencies, first run:

cd docs && pip install -r requirements.txt

Step 5: Add documentation directives

For each function listed in python.txt, use the module label comment from conf.py to determine where it should be added. The module comment gives you the full module path, which maps to a doc source file and a section within that file.

Finding the correct doc file

The module comment maps to a doc source file in docs/source/. When unsure, search for other functions from the same module:

grep -rn "torch.module_name" docs/source/*.md docs/source/*.rst

Or list candidate files:

ls docs/source/*module_name*

If no doc file exists for a submodule, check whether a parent module's doc file has a section for it (e.g., backends.md has sections for torch.backends.cuda, torch.backends.cudnn, etc.). If not, add a new section to the parent file following existing patterns.

Adding the directives

Read the target doc file first and match the exact patterns already used there. Do not invent new patterns or use bare autofunction with fully qualified names — always use the proper hierarchical structure with automodule, currentmodule, and short names. Do not use . py:module:: since that just suppresses errors and doesn't actually document the function. Look at other files that match the target file's format (e.g., .md vs. .rst) under docs/source/ to see examples.

There are two file formats. Match the one used in the target file.

Pattern A — MyST Markdown files (.md): Used in files like accelerator.md, backends.md, cuda.md.

The hierarchical structure uses automodule to register the module, currentmodule to set context, then short names:

## torch.ao.quantization.fx.convert

.. automodule:: torch.ao.quantization.fx.convert

.. currentmodule:: torch.ao.quantization.fx.convert

.. autofunction:: convert

.. autofunction:: convert_custom_module

For autosummary blocks (used in some files instead of individual directives):

.. autosummary:: :toctree: generated :nosignatures:

existing_function your_new_function `


For classes:
.. autoclass:: YourClass
    :members:
`` `

Pattern B — reStructuredText files (.rst): Used in files like torch.rst, nn.rst.

Same hierarchical structure without the markdown fences:

torch.ao.quantization.fx.convert
---------------------------------

.. automodule:: torch.ao.quantization.fx.convert

.. currentmodule:: torch.ao.quantization.fx.convert

.. autosummary::
    :toctree: generated
    :nosignatures:

    convert
    convert_custom_module
    convert_standalone_module
    convert_weighted_module

For individual directives:

.. automodule:: torch.submodule

.. currentmodule:: torch.submodule

.. autofunction:: function_name

.. autoclass:: ClassName
    :members:

Key rules:

  • The module label comment from conf.py (e.g., # torch.ao.quantization.fx.convert) tells you exactly which automodule and currentmodule to use.
  • Always set .. automodule:: and .. currentmodule:: before documenting functions from a module.
  • Use short names (e.g., convert, not torch.ao.quantization.fx.convert.convert) after currentmodule is set.
  • If the module already has an automodule/currentmodule in the file, don't add another — just add your function under the existing one.
  • Match whichever style the file already uses (autosummary blocks vs. individual autofunction directives).

Placing in the right section

Read the target doc file and find the appropriate section. If the module already has a section (e.g., ## torch.backends.cuda in backends.md), add the functions there. If no section exists yet, create one following the existing section patterns in the file. Group all functions from the same module group together.

Step 6: Verify with coverage

Run coverage again:

cd docs && make coverage

Ignore the terminal output — only read docs/build/coverage/python.txt. Verification passes when python.txt contains zero undocumented functions across ALL modules. It should only have the statistics table with 100% coverage and 0 undocumented for every module. For example:

Undocumented Python objects
===========================

Statistics
----------

+---------------------------+----------+--------------+
| Module                    | Coverage | Undocumented |
+===========================+==========+==============+
| torch                     | 100.00%  | 0            |
+---------------------------+----------+--------------+
| torch.accelerator         | 100.00%  | 0            |
+---------------------------+----------+--------------+

If any module shows undocumented functions (coverage below 100% or undocumented count > 0), verification has failed.

If verification succeeds (zero undocumented across all modules): Go to Step 7.

If verification fails (any undocumented functions remain): Read docs/build/coverage/python.txt to see which functions are still listed as undocumented. Common issues include:

  • Wrong doc file: the function was added to the wrong .md/.rst file. Move the directive to the correct file.
  • Wrong directive type: e.g., used autofunction for a class, or autoclass for a function. Fix the directive.
  • Wrong module path in the directive: e.g., torch.foo.bar should be torch.foo.baz.bar. Correct the qualified name.
  • Function added to an autosummary block with the wrong currentmodule: make sure the .. currentmodule:: directive above the block matches.
  • Missing automodule for a submodule that hasn't been registered yet. Add a .. automodule:: torch.submodule directive before documenting functions from that submodule.

Fix the doc directive based on the error, then re-run make coverage. Repeat until verification passes.

If a function still fails after multiple attempts, stop and show the error to the user. Present the function name and the error, then use the AskUserQuestion tool with options like:

  • "Uncomment it to restore to ignore list (skip for now)"
  • "Try a different approach"
  • "Investigate further"

Step 7: Report progress

Present a progress summary to the user showing:

  • Which module groups were processed and how many functions were documented
  • Which functions were skipped or restored to the ignore list (and why)
  • How many entries remain in coverage_ignore_functions and coverage_ignore_classes

Step 8: Clean up commented-out entries in conf.py

Now that verification has passed, delete the commented-out string entries from Step 3. These are lines that start with # " inside coverage_ignore_functions and coverage_ignore_classes. Commented-out string entries always contain quotes — that's how you distinguish them from module label comments:

# "disable_global_flags",       <-- commented-out string entry (has quotes) → DELETE
# torch.backends                <-- module label comment (no quotes) → KEEP if it has active entries

Also delete any module label comments that no longer have active entries beneath them (i.e., all their entries were either commented out and now deleted, or had inline comments and were left in place but the module label is otherwise empty).

Important notes

  • Follow the steps exactly as written. The make coverage step is the primary verification for correct Sphinx directives, and Step 1b's docstring check ensures you only document functions that have real content.
  • Never modify Python source files (.py). This skill only edits docs/source/conf.py and doc source files (.md/.rst) in docs/source/. Do not add or edit docstrings. The only reason to inspect Python modules is in Step 1b to check whether a docstring exists — never to modify source code.
  • Entries are commented out in Step 3, verified in Step 6, and cleaned up in Step 8 after verification passes. Never delete uncommented entries directly.
  • Read inline comments on entries before deciding to document them. Entries marked # deprecated, # documented as..., # looks unintentionally public, or # legacy helper should stay in the ignore list.
  • The coverage_ignore_functions list uses bare function names (not fully qualified), so the same name can appear multiple times for different modules. Use the module label comment above each entry to identify which module it belongs to. Be careful during Step 8 cleanup to only delete the correct commented-out lines — commented-out string entries have quotes (# "func_name",), module label comments do not.
  • Always match the existing style of the target doc file — don't mix .md style directives into .rst files or vice versa.
  • Use the module label comment (e.g., # torch.ao.quantization.fx.convert) as the primary guide for both the automodule/currentmodule directives and for finding the right section in the doc file.
  • Always process complete module groups — never split a group across invocations.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.41%
按下载量换算229

Claude

32.84%
按下载量换算219

Cursor

17.75%
按下载量换算118

Gemini CLI

10.52%
按下载量换算70

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/pytorch/pytorch --skill document-public-apis 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills