بنقرة واحدة
jira-lookup
Look up a Jira issue by key. Shows summary, status, assignee, priority, and link.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Look up a Jira issue by key. Shows summary, status, assignee, priority, and link.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Review a pull request diff for bugs, security issues, and code quality. Use when reviewing PRs or diffs.
Guide adding a new config field across types, defaults, config.yaml, and optional state/env wiring.
System prompt for automated PR description generation. Used by the runtime module.
Trace a specific PR through the review pipeline to diagnose failures.
Read state.json and diagnose PR statuses, errors, stuck entries, and anomalies.
Generate a structured PR description from the diff. Fetches the diff, analyzes changes, and optionally applies the description.
| name | jira-lookup |
| description | Look up a Jira issue by key. Shows summary, status, assignee, priority, and link. |
| user-invocable | true |
| arguments | <JIRA-KEY> (e.g. PROJ-123) |
Look up a Jira issue using the REST API and display its details.
config.yaml to get features.jira.baseUrl. If not set, ask the user.$JIRA_EMAIL and $JIRA_TOKEN environment variables for authentication.curl -s -u "$JIRA_EMAIL:$JIRA_TOKEN" \
-H "Accept: application/json" \
"${BASE_URL}/rest/api/3/issue/${JIRA_KEY}?fields=summary,status,assignee,priority"