Give subtasks a "Convert to Issue" option.
Problem trying to solve
Write a script for converting an issue's subtasks to actual issues. Each new issue should be linked to the original issue (as a parent).
This way I can create subtasks on the web UI and quickly convert them to issues (which allows to give them story points, etc).
Possible solution(s)
Given an issue ID, for each subtask of this issue, convert to issue + link to original issue.
Alternatives
I could define said issues by code but that would be less nice and less friendly to my non-programming colleagues.
Seems like I can't do it right now:
>>> subtask.update({"subtask": False})
JIRAError: JiraError HTTP 400 url
response text = {"errorMessages":[],"errors":{"subtask":"Field 'subtask' cannot be set. It is not on the appropriate screen, or unknown."}}
Additional Context
On an issue's page, click on the ... icon, then "Convert to Issue" - this is the functionality I'm looking for.

Ugh, this was impossible back at mid-2021:
Who knows if they managed to solve this 18 months later??