Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
pydoc
// Add RST docstrings to public Python methods/classes. Use when asked to document Python code.
$ git log --oneline --stat
stars:17
forks:9
updated:2026년 3월 24일 13:21
SKILL.md
// Add RST docstrings to public Python methods/classes. Use when asked to document Python code.
Builds the GenVM project. Use after making code changes to compile Rust binaries.
Runs tests for the GenVM project. Use after making code changes to verify correctness.
Sets up the development environment for GenVM repository. Use when setting up the repo for the first time or when dependencies need to be refreshed.
| name | pydoc |
| description | Add RST docstrings to public Python methods/classes. Use when asked to document Python code. |
Add RST-format docstrings to public entities in the specified Python files.
_. Skip private/internal entities entirely.:param:, :returns:, :raises:, :type:, etc.).clear, append), the summary can be very brief.:raises ExceptionType: for every exception the method can raise (including those from called helpers like _map_index). Check the implementation, not just the signature.__init__ that just raises TypeError (already has a docstring by convention), or dunder methods whose behavior is obvious from the protocol they implement (e.g., __len__, __iter__, __repr__, __contains__) — unless they have non-obvious behavior or raise specific exceptions worth noting.:raises:). Do not rewrite correct docstrings.:type: or :rtype: fields.The opening """ goes on its own line, followed by the summary on the next line:
def method(self, param: Type) -> ReturnType:
"""
Short summary of what this does.
:param param: what this parameter means
:returns: what is returned
:raises ValueError: when param is invalid
"""
For multi-line descriptions (rare — prefer single line):
def method(self) -> ReturnType:
"""
Short summary.
Additional context only if the summary is insufficient.
:returns: description
:raises KeyError: when key is not found
"""
_), internal descriptor classes, or non-public helpers.ARGUMENTS: $ARGUMENTS