add_skills
Assign skills or abilities to a character within MemoryMesh, using a structured input schema to define relationships between the skill and its owner.
Instructions
Defines list of skills or abilities a character can possess.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
skills | Yes |
Input Schema (JSON Schema)
{
"properties": {
"skills": {
"additionalProperties": {
"description": "Additional property value",
"type": "string"
},
"properties": {
"name": {
"description": "[Entity]_abilities",
"type": "string"
},
"owner": {
"description": "The relationship between the skill and its owner.",
"items": {
"description": "Item in owner array",
"type": "string"
},
"type": "array"
}
},
"required": [
"name",
"owner"
],
"type": "object"
}
},
"required": [
"skills"
],
"type": "object"
}