batch_screenshot
Generate screenshots for multiple code files simultaneously to create documentation quickly. Apply consistent color themes across all screenshots for professional presentation.
Instructions
Generate screenshots for multiple files at once. Useful for documenting multiple code files quickly.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePaths | Yes | Array of file paths to screenshot | |
theme | No | Color theme to apply to all screenshots (dracula, nord, monokai, github-light, github-dark) |
Input Schema (JSON Schema)
{
"properties": {
"filePaths": {
"description": "Array of file paths to screenshot",
"items": {
"type": "string"
},
"type": "array"
},
"theme": {
"description": "Color theme to apply to all screenshots (dracula, nord, monokai, github-light, github-dark)",
"enum": [
"dracula",
"nord",
"monokai",
"github-light",
"github-dark"
],
"type": "string"
}
},
"required": [
"filePaths"
],
"type": "object"
}