describe_asset
Analyze RPG Maker MZ assets to generate detailed descriptions using AI, helping developers understand and document existing game resources for better project management.
Instructions
Analyze and describe an existing RPG Maker MZ asset using Gemini 2.5 Flash
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | Gemini API key (optional) | |
asset_type | Yes | Type of asset | |
filename | Yes | Filename of the asset to analyze | |
project_path | Yes | Path to the RPG Maker MZ project directory |
Input Schema (JSON Schema)
{
"properties": {
"api_key": {
"description": "Gemini API key (optional)",
"type": "string"
},
"asset_type": {
"description": "Type of asset",
"type": "string"
},
"filename": {
"description": "Filename of the asset to analyze",
"type": "string"
},
"project_path": {
"description": "Path to the RPG Maker MZ project directory",
"type": "string"
}
},
"required": [
"project_path",
"asset_type",
"filename"
],
"type": "object"
}