Install
openclaw skills install rupert-code-documentorAutomatically generate detailed and convention-compliant documentation for codebases in multiple languages, including README, API docs, and function comments.
openclaw skills install rupert-code-documentorAutomatically generate comprehensive documentation for codebases.
document this codegenerate README for [project]document function [name]create API docs for [endpoint]add comments to [file]# Project Name
## Description
[Brief description]
## Installation
```bash
[Installation commands]
[Code examples]
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/... | ... |
[Guidelines]
[License info]
### Function Doc Template
```python
def function_name(param1: type, param2: type) -> return_type:
"""
Short description.
Longer explanation of what the function does.
Args:
param1: Description of param1
param2: Description of param2
Returns:
Description of return value
Raises:
ExceptionType: When this happens
Example:
>>> function_name(...)
...
"""