Delete a Jira issue using jirac.
Steps:
- Check that
jiracis available by runningjirac --version. If it is missing, tell the user to install it withcargo install jira-commands. - Extract the issue key from the user's request.
- Warn the user: deletion is permanent and also deletes all subtasks.
- Run
jirac issue delete <KEY>— jirac will prompt for confirmation unless--forceis passed. - Confirm deletion result clearly.
Examples:
- "delete PROJ-123" →
jirac issue delete PROJ-123 - "delete PROJ-123 without asking" →
jirac issue delete PROJ-123 --force - "hapus issue PROJ-456" →
jirac issue delete PROJ-456