Set General Name property based on template property

Hello,

We’re using templates for blocks that we use multiple times. When we define/use them in a process flow these blocks get the same description inside the block (General - name property)

Is there a way to get that property filled by eg template property name or another?
Now it is a manual task to set that name while information is already in the template?

[
  {
    "$schema": "https://unpkg.com/@camunda/element-templates-json-schema@0.5.0/resources/schema.json",
    "name": "Send my Command",
    "id": "SendMyCommandDelegate",
    "appliesTo": [
      "bpmn:SendTask"
    ],
    "properties": [
      {
        "label": "Implementation Type",
        "type": "String",
        "value": "${sendMyCommandDelegate}",
        "editable": false,
        "binding": {
          "type": "property",
          "name": "camunda:delegateExpression"
        }
      },
      {
        "label": "dummyId",
        "type": "String",
        "binding": {
          "type": "camunda:inputParameter",
          "name": "dummyId"
        }
      }
    ]
  }
]