Create a new work item on issue tracker
Creates a new work item on your configured issue tracker platform.
/plugin marketplace add flexion/claude-domestique/plugin install onus@claude-domestiquetitleCreate a new issue/work item on your configured platform (GitHub, JIRA, or Azure DevOps).
IMPORTANT: Gather information before creating.
Before creating the work item, ask the user for:
A concise summary of the issue/feature/task.
Detailed description of the work item. Ask if they want to include:
Tags to categorize the work item.
gh issue create --title "Title here" --body "Description here" --label "bug,priority:high"
To create interactively:
gh issue create
Use WebFetch with the JIRA REST API:
https://{host}/rest/api/3/issueAuthorization: Basic {JIRA_TOKEN}, Content-Type: application/json{
"fields": {
"project": { "key": "PROJ" },
"summary": "Title here",
"description": { "type": "doc", "version": 1, "content": [...] },
"issuetype": { "name": "Task" }
}
}
Use WebFetch with the Azure DevOps API:
https://dev.azure.com/{org}/{project}/_apis/wit/workitems/$Task?api-version=7.0Authorization: Basic {AZURE_DEVOPS_TOKEN}, Content-Type: application/json-patch+jsongit checkout -b issue/feature-{N}/{slug}/onus:fetch {N}User: /onus:create
Claude: I'll help you create a new work item. What's the title?
User: Add dark mode support
Claude: Got it. What type of work item is this?
- feature (new functionality)
- bug (something broken)
- task (general work)
User: feature
Claude: Would you like to add a description or acceptance criteria?
User: Yes - should support system preference detection
Claude: Creating the issue now...
[Creates issue via gh issue create]
Created issue #87: Add dark mode support
Suggested branch: git checkout -b issue/feature-87/add-dark-mode-support
Permission denied?
GITHUB_TOKEN has repo scopeWrong project?
.claude/config.json for platform configuration/onus:init to reconfigure