generate_project_context
Generate comprehensive documentation for RPG Maker MZ projects including structure, maps, events, and plugin information to understand project organization and dependencies.
Instructions
Generate comprehensive context documentation for an RPG Maker MZ project including structure, maps, events, and plugin information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_events | No | Include event data (default: true) | |
include_maps | No | Include detailed map information (default: true) | |
include_plugins | No | Include plugin information (default: true) | |
project_path | Yes | Path to the RPG Maker MZ project directory |
Input Schema (JSON Schema)
{
"properties": {
"include_events": {
"description": "Include event data (default: true)",
"type": "boolean"
},
"include_maps": {
"description": "Include detailed map information (default: true)",
"type": "boolean"
},
"include_plugins": {
"description": "Include plugin information (default: true)",
"type": "boolean"
},
"project_path": {
"description": "Path to the RPG Maker MZ project directory",
"type": "string"
}
},
"required": [
"project_path"
],
"type": "object"
}