execute_prompt
Execute prompt templates with custom variables to generate RPG Maker MZ game content, enabling automated creation of maps, events, characters, and database elements from provided parameters.
Instructions
Execute a prompt template with provided variables and resource references
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_path | Yes | Project path | |
prompt_id | Yes | Prompt template ID | |
variables | Yes | Variables to fill in the template |
Input Schema (JSON Schema)
{
"properties": {
"project_path": {
"description": "Project path",
"type": "string"
},
"prompt_id": {
"description": "Prompt template ID",
"type": "string"
},
"variables": {
"description": "Variables to fill in the template",
"type": "object"
}
},
"required": [
"project_path",
"prompt_id",
"variables"
],
"type": "object"
}