Search Jira with jira-cmd (palashkulsh/jira-cmd) and re-structure the result into Alfred app Script Filter JSON
jira jql --json true "(summary ~ '$1' OR description ~ '$1') AND project IN (${projects})" | \
jq '.[] | {
uid: .key,
title: "\(.key): \(.fields.summary)",
subtitle: "Component: \(.fields.components[0].name)",
arg: .key
}' | \
jq -s '{items: . }'
```bash