For the complete documentation index, see llms.txt. This page is also available as Markdown.

Step 7 - Add Jira custom fields to config

Using the field IDs you found in Step 6, add them to your config.yml under the jira: block so the agent knows which custom fields map to each required Hivel type.

jira:
  required_hivel_types:
    - STORY_POINTS
    - SPRINT
    - PRODUCT
    - ALLOCATION
    - EPIC
 
  extra_fields:
    - customfield_10016 - STORY_POINTS   # replace with your actual field IDs
    - customfield_10020 - SPRINT
    - customfield_10042 - PRODUCT
    - customfield_10044 - ALLOCATION
    - customfield_10014 - EPIC

Validate the config:

./hivel-agent --config config.yml --env-file .env config check

Last updated