rhdh-jira
RHDH Jira
Foundational skill for interacting with RHDH's Jira instance via the Atlassian CLI (acli). Covers all four active projects, issue types, workflows, custom fields, and JQL patterns.
Commands
| Command | Description | Reference |
|---|---|---|
assign [issue key(s) or JQL] |
Recommend and assign team members using expertise, capacity, and context proximity analysis | references/assign.md |
refine [issue key(s), JQL, or 'sprint'] |
Check issues against exit criteria, identify duplicates, missing fields, unaddressed comments, and readiness | references/refine.md |
plan [team] |
Sprint planning prep: carryover, velocity, capacity, ready queue, sprint fill suggestions | references/plan.md |
sprint-report [team] |
Sprint review summary: committed vs completed, per-member breakdown, demo checklist | references/sprint-report.md |
release [version] |
Release readiness: feature matrix, PI funnel, dependency map, blocker bugs, risk assessment | references/release.md |
Single source of truth for command descriptions: scripts/command-metadata.json
Routing rules
- No argument: Show the command menu. Ask what to do.
- First word matches a command: Load its reference file and follow it.
- First word doesn't match: General Jira invocation using the full argument as context — use the reference files table below to decide what to load.
Prerequisites
Run scripts/setup.py to verify everything is configured:
python scripts/setup.py
The script checks:
aclibinary on PATH- Jira API token auth configured (
~/.config/acli/jira_config.yaml) .jira-tokenfile next toacliexecutable (for REST API fallback)- Smoke test against
redhat.atlassian.net
If acli is not installed, download from Atlassian CLI and follow the Getting Started guide for installation and authentication setup. Use API token authentication, not OAuth — OAuth sessions expire and acli auth status gives false negatives with token auth (see Gotchas).
API preference order
All operations follow this priority: acli → GraphQL → REST API.
- acli — default for simple, single-issue operations (view, edit, assign, transition).
- GraphQL — for bulk reads where acli would be too slow (expertise profiles, capacity, refinement checks). Skip acli entirely for bulk.
- REST API — for writes when already in an authenticated API context (avoids shelling out to acli mid-workflow), or as fallback when acli fails for custom field updates.
Sub-commands (assign, refine) document which API they use. When a sub-command's workflow already has AUTH set from GraphQL reads, prefer REST for writes.
REST/GraphQL capability gate
Before attempting any REST API or GraphQL call:
- Run
python scripts/setup.py --jsonand checktoken_file_found - If missing, state: "REST API/GraphQL fallback unavailable —
.jira-tokennot configured. Runsetup.pyfor instructions." Continue with acli-only workflow. - If the user needs REST/GraphQL, load
references/auth.mdfor setup instructions
Scripts
| Script | Purpose |
|---|---|
scripts/setup.py |
Verify acli install + auth. Run with --json for structured output. |
scripts/parse_issues.py |
Flatten, enrich, and filter acli JSON output. Solves the core problem: acli search --json can't return custom fields (team, story points, sprint). Pipe search results in, get clean data out. Use --enrich to fetch full fields, -f team="X" to filter by team. |
scripts/command-metadata.json |
Single source of truth for sub-command descriptions and argument hints. |
Projects
| Key | Purpose | Issue Types |
|---|---|---|
| RHIDP | Engineering work | Epic, Story, Task, Sub-task, Vulnerability |
| RHDHPLAN | Program planning | Feature, Outcome, Feature Request, Sub-task |
| RHDHBUGS | Product defects | Bug, Sub-task |
| RHDHSUPP | Support-engineering interactions | Bug |
RHDHPAI (Plugins and AI) is archived — JQL queries against it will fail.
Issue type selection
- Story — end-user facing work (API, UI changes)
- Task — not end-user facing (tests, CI/CD, refactoring, code organization)
- Epic — collection of Stories/Tasks toward a deliverable
- Feature — program-level planning item in RHDHPLAN
- Bug — product defect (RHDHBUGS) or support case tracking (RHDHSUPP)
- Sub-task — child of any issue type above
- Vulnerability — CVE tracking in RHIDP (Product Security)
Reference Files
Load only what the current task requires.
| File | Load when... |
|---|---|
references/acli-commands.md |
Running an acli command you haven't used before, or hitting unexpected flag behavior. Quick reference for syntax, flag differences, and output formats. |
references/fields.md |
Need to know a field name, custom field ID, accepted values, or label conventions. Custom fields, labels, link types, components, priorities. |
references/workflows.md |
Transitioning issues, checking exit criteria, or verifying readiness for the next status. |
references/templates.md |
Creating new issues. Also load references/workflows.md for required fields at entry status. |
references/support.md |
Handling support cases, filing bugs from customer cases, or creating feature requests from support. |
references/jql-patterns.md |
Building a JQL query, finding a board ID, or looking up sprint information. JQL cookbook with 23+ tested queries. |
references/auth.md |
Setting up authentication for REST API or GraphQL calls. Token file format, path discovery, security, instance config, common auth errors. |
references/rest-api-fallback.md |
acli failed to update a custom field (Team, Size, Story Points, Release Note Type). Curl examples, response handling, OpenAPI spec discovery. |
references/graphql-queries.md |
Complex read queries needing multiple fields, relationships, or custom field data in one call. Schema introspection, JQL search via GraphQL, field type fragments. Also for bulk operations where acli would be too slow. |
references/assign.md |
Recommending assignees for unassigned issues. Team roster lookup, expertise profiling, sprint capacity analysis, context proximity scoring. Also for applying assignments after user confirmation. |
references/refine.md |
Checking issues against exit criteria per status, identifying duplicates, missing fields, unaddressed comments, and readiness for the next workflow status. |
references/plan.md |
Sprint planning prep: carryover report, velocity trend, per-member capacity, ready-for-planning queue, sprint fill suggestions. |
references/sprint-report.md |
Sprint review summary: committed vs completed, per-member breakdown, epic progress, demo checklist with naming conventions, velocity trend. |
references/release.md |
Release readiness report: feature matrix, PI funnel states, epic roll-up, cross-team dependency map, blocker bugs, RN readiness, risk assessment. |
Common Gotchas
acli auth statuslies. It checks OAuth, not API token auth. Always returns "unauthorized" with token auth even when Jira works fine. Useacli jira project list --recent 1as a smoke test instead.viewuses positional arg, everything else uses--key.acli jira workitem view RHIDP-123butacli jira workitem edit --key RHIDP-123 ....--yesis mandatory for mutations. Alledit,transition,assign, andlink createcommands prompt interactively without it. Always pass--yes.--fieldsis restrictive on search. Only acceptskey,summary,status,assignee,issuetype,priority,description,labels. For components, sprint, fixVersions, and all custom fields — use--jsonorscripts/parse_issues.py --enrich.- Team field has two JQL syntaxes.
customfield_10001cannot be used in JQL WHERE clauses. However,"Team[Team]" = {teamId}(using the team UUID, not display name) works. Use the UUID syntax for JQL filtering; usecustomfield_10001.namein post-processing only when you need the display name from JSON output. - ADF vs plain text. Reading descriptions via
--jsonreturns Atlassian Document Format (nested JSON). Creating/editing with--descriptionaccepts plain text. Don't try to round-trip ADF through--description. - Acceptance Criteria field is almost always null. Scan the description for "Requirements", "Acceptance Criteria", or bullet-style criteria instead of checking
customfield_10718. --enrichis MANDATORY for custom fields. Bothacli search --jsonandacli view KEY --json(without--fields "*all") return only basic fields (assignee, issuetype, priority, status, summary). Story points, team, sprint, and size will appear as empty/null — looking like the data isn't set when it actually is. Always usescripts/parse_issues.py --enrichto get custom field data. Skipping--enrichis the #1 cause of false "missing data" reports.- Custom fields may fail to update via
acli.acli jira workitem editcan silently fail or error when setting custom fields (Team, Size, Story Points). When anacli editfor a custom field fails, fall back to the Jira REST API. Find the token file at.jira-tokennext to theacliexecutable (discover the path withreadlink -f "$(which acli)"orwhere acli). Readreferences/rest-api-fallback.mdfor curl examples and payload formats. Never read the token file into context. acli sprint list-workitems --jsonwraps results in{"issues": [...]}. The output is NOT a flat array — it's an object with anissueskey. Extract the array before piping toparse_issues.py. Seereferences/acli-commands.mdfor the workaround command.- GraphQL search is beta.
issueSearchStablerequiresX-ExperimentalApi: JiraIssueSearchheader. Loadreferences/graphql-queries.mdbefore attempting GraphQL queries. .jira-tokenformat isemail:token, not bare token. A file containing only the API token without the email prefix will cause 401 errors on REST/GraphQL calls. Thesetup.pyscript validates the format.
Error Handling
| Error | Action |
|---|---|
acli not on PATH |
Run scripts/setup.py. Install from Atlassian if missing. See Getting Started. |
"unauthorized" from auth status |
Ignore. Check jira_config.yaml exists. Run smoke test. |
| "required flag(s) not set" | Command syntax wrong. Run acli jira <subcommand> --help. |
| "field X is not allowed" | Use --json instead of --fields for that field. |
| "the value X does not exist for the field 'project'" | Project key is wrong or project is archived (e.g., RHDHPAI). |
| Rate limiting (429) | Wait 5 seconds, retry once. |
| Interactive prompt hangs | Missing --yes flag on a mutating command. |
Custom field update fails via acli |
Fall back to Jira REST API using .jira-token file. See Gotcha #9. |
issueSearchStable returns errors |
Fall back to REST API search (/rest/api/3/search) with the same JQL. Warn that the beta API failed. |
Team Conventions
These apply across all sub-commands:
- Release Pending counts as completed. Release Pending items remain in the sprint and count toward velocity and capacity. They represent done work awaiting release.
- Confirmation flow. Sub-commands that modify Jira issues (assign, refine, release) use a standard prompt:
"Apply changes? [y/N/edit]"— y applies all, N cancels, edit steps through each change individually.
Common Workflows
Sub-commands share data.
planreuses roster/capacity/expertise fromassign.sprint-reportuses the same velocity query pattern asplan.releasereferences exit criteria fromworkflows.mdand can invokeassignfor unassigned Features.
Creating an issue
- Load
references/templates.mdfor the body template - Load
references/workflows.mdfor required fields at New status - Run
acli jira workitem create(seereferences/acli-commands.mdif unsure of syntax)
Searching with custom fields (team, story points, sprint)
- Build JQL using patterns from
references/jql-patterns.md - Pipe results through
scripts/parse_issues.py --enrichfor full field data - Use
-f team="X"to filter by team (not possible in JQL)
Transitioning an issue
- Load
references/workflows.mdfor exit criteria at the target status - Verify required fields are set before transitioning
- Run
acli jira workitem transition --key KEY --status "X" --yes
Complex queries (many fields, relationships)
- Load
references/graphql-queries.md - Use
issueByKeyfor single issues orissueSearchStable(beta) for JQL search - Fall back to
acli+parse_issues.py --enrichif GraphQL returns errors
Recommending and assigning issues
- Load
references/assign.md - Identify unassigned issues (single key, JQL query, or passed-in list)
- Determine the team (from issue field, parent epic, or user input)
- Run deep or quick analysis per the reference
- Present recommendations, get user confirmation, then assign
Refining issues
- Load
references/refine.md - Identify issues to refine (specific keys, JQL,
sprint, orbacklog) - Run all 6 checks: missing fields, duplicates, hierarchy, comments, staleness, sprint readiness
- Present refinement report with actionable recommendations
- Optionally apply auto-fixable changes and prompt for manual decisions
Sprint planning prep
- Load
references/plan.md - Resolve team, board, and sprint context
- Generate carryover report, velocity trend, capacity snapshot, and ready-for-planning queue
- Auto-generate sprint fill suggestions with expertise matching
- Surface critical customer bugs (exempt from capacity) and retro action items
Sprint review summary
- Load
references/sprint-report.md - Resolve sprint (active or previous)
- Partition completed vs carried over, compute completion rate
- Per-member breakdown, epic progress, demo checklist with naming conventions
- Optionally save as markdown file
Release readiness
- Load
references/release.md - Fetch Features for the target version/label
- Quick mode: PI funnel, feature matrix, readiness score
- Deep mode: adds epic roll-up, dependency map, coherence analysis, RN readiness, risk assessment
- Optionally remediate (assign owners, create Epics, transition statuses)
Discovering unknown fields or endpoints
- For REST: load
references/rest-api-fallback.md— use the OpenAPI spec or/rest/api/3/fieldendpoint - For GraphQL: load
references/graphql-queries.md— use__typeintrospection queries - Do not guess field IDs or types — always verify against the live schema
When NOT to Use
- Non-RHDH Jira projects — this skill's field mappings, workflows, and JQL patterns are specific to RHIDP/RHDHPLAN/RHDHBUGS/RHDHSUPP
- Jira REST API directly — use
aclifirst, then GraphQL for bulk reads. REST API is the last resort for writes when acli fails and for schema discovery via OpenAPI spec (see Gotcha #9) - GraphQL for simple lookups — use
aclifor single-issue views and simple searches. GraphQL is for bulk operations, complex queries needing relationships or many custom fields in one call, team roster lookups, and schema introspection
More from redhat-developer/rhdh-skill
skill-maker
Create new agent skills or consolidate existing skills following the Agent Skills open standard (agentskills.io). Interviews the user relentlessly about intent, scope, and edge cases before drafting. Covers SKILL.md structure, frontmatter, progressive disclosure, description optimization, script bundling, sub-command architecture, setup gates, context systems, and review. Use when the user wants to create a skill, write a skill, build a new skill, make a skill, draft a SKILL.md, or mentions "skill-maker". Also use when asked to package expertise, workflows, or domain knowledge into a reusable skill. Also use when asked to consolidate skills, merge skills, combine skills, reduce skill count, or refactor multiple skills into one.
7create-skill
Create new agent skills following the Agent Skills open standard (agentskills.io). Interviews the user relentlessly about intent, scope, and edge cases before drafting. Covers SKILL.md structure, frontmatter, progressive disclosure, description optimization, script bundling, and review. Use when the user wants to create a skill, write a skill, build a new skill, make a skill, draft a SKILL.md, or mentions "create-skill". Also use when asked to package expertise, workflows, or domain knowledge into a reusable skill.
5rhdh
Handles all RHDH-related work — "RHDH", "Red Hat Developer Hub", or "Developer Hub". Primary entry point for plugin development, overlay management, environment setup, repo navigation, version compatibility, CI/CD, configuration, debugging, and general RHDH ecosystem knowledge. Routes to specialized sub-skills as needed.
3overlay
Manages the rhdh-plugin-export-overlays repository — onboards plugins to the Extensions Catalog, updates plugin versions, fixes overlay build failures, triages and analyzes PRs, triggers publishes, and manages plugin workspaces. Use when working with overlays, importing plugins, debugging CI, checking PRs, or bumping versions.
3rhdh-local
Skill for testing RHDH plugins locally using the rhdh-local-setup customization system. Covers enabling/disabling plugins, switching modes, running end-to-end plugin tests, starting/stopping RHDH (up/down), health checks, troubleshooting errors (504, startup failures), and backup/restore of configurations.
3create-plugin
>
2