register_prompt_template
Create reusable prompt templates with variable placeholders and resource references for RPG Maker MZ game development, enabling consistent AI-generated content creation across projects.
Instructions
Register a reusable prompt template with variable placeholders and resource references
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | Prompt description | |
| name | Yes | Prompt name | |
| project_path | Yes | Project path | |
| prompt_id | Yes | Unique prompt ID | |
| resource_refs | No | Referenced resource IDs | |
| template | Yes | Prompt template with {{variable}} placeholders | |
| variables | Yes | List of variable names |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Prompt description",
"type": "string"
},
"name": {
"description": "Prompt name",
"type": "string"
},
"project_path": {
"description": "Project path",
"type": "string"
},
"prompt_id": {
"description": "Unique prompt ID",
"type": "string"
},
"resource_refs": {
"description": "Referenced resource IDs",
"items": {
"type": "string"
},
"type": "array"
},
"template": {
"description": "Prompt template with {{variable}} placeholders",
"type": "string"
},
"variables": {
"description": "List of variable names",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"project_path",
"prompt_id",
"name",
"template",
"variables"
],
"type": "object"
}