Meta
Module generation, listing, testing, and documentation.
2 modules
| Module | Description |
|---|---|
| List Available Modules | List all available modules in the registry |
| Update Module Documentation | Generate or update MODULES.md documentation from registry |
Modules
List Available Modules
meta.modules.list
List all available modules in the registry
Parameters:
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
category | string | No | - | Filter modules by category (e.g., browser, data, ai) |
tags | array | No | - | Filter modules by category (e.g., browser, data, ai) |
include_params | boolean | No | True | Filter modules by tags |
include_output | boolean | No | True | Include parameter schema in output |
format | select (json, markdown, compact) | No | json | Include output schema in response |
Output:
| Field | Type | Description |
|---|---|---|
modules | array | List of registered modules |
count | number | The params schema |
formatted | string | The output schema |
Example: List all modules
yaml
Example: List browser modules only
yaml
category: browser
include_params: trueExample: List AI modules as markdown
yaml
tags: ["ai", "llm"]
format: markdownExample: Compact list for AI prompts
yaml
format: compactUpdate Module Documentation
meta.modules.update_docs
Generate or update MODULES.md documentation from registry
Parameters:
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
output_path | string | No | docs/MODULES.md | Path to write MODULES.md file |
include_examples | boolean | No | True | Include usage examples in documentation |
Output:
| Field | Type | Description |
|---|---|---|
file_path | string | Include usage examples in documentation |
modules_count | number | The file path |
categories | array | The file path |
Example: Update module documentation
yaml
output_path: docs/MODULES.md