List available Jira fields 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 from the user's request:
- project key
- optional issue type
- whether they want only required fields
- Run one of these:
jirac issue fields -p <PROJECT>jirac issue fields -p <PROJECT> --issue-type '<TYPE>'- add
--required-onlywhen requested
- Highlight the field IDs and likely value shapes that matter for the next step.
Examples:
- "show required fields for Story in PROJ" →
jirac issue fields -p PROJ --issue-type 'Story' --required-only - "what custom fields are available in PROJ" →
jirac issue fields -p PROJ