원클릭으로
my-work
Show a prioritized dashboard of Jira tickets, GitHub PRs/reviews, and Google Tasks
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Show a prioritized dashboard of Jira tickets, GitHub PRs/reviews, and Google Tasks
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | my-work |
| description | Show a prioritized dashboard of Jira tickets, GitHub PRs/reviews, and Google Tasks |
Show a prioritized view of all my current work across Jira, GitHub, and Google Tasks. $ARGUMENTS
Follow these steps:
Fetch data from all three sources simultaneously.
Use the mcp__rh-jira__jira_search MCP tool to find all tickets assigned to the current user that are NOT in a "Done" or "Closed" status. Retrieve: ticket key, summary, status, priority, and issue type.
Use the mcp__github__get_me MCP tool to get the current user's GitHub username. Then use mcp__github__search_pull_requests to find open PRs awaiting review (query: is:open is:pr review-requested:<username>).
Use the Bash tool. Capture the access token in a shell variable and use it in the same Bash command as the curl calls. IMPORTANT: Never run gcloud auth application-default print-access-token as a standalone command — always combine it with curl to avoid logging the token in the output.
TOKEN=$(gcloud auth application-default print-access-token 2>/dev/null) && curl -s -H "Authorization: Bearer $TOKEN" ...
GET https://tasks.googleapis.com/tasks/v1/users/@me/listsGET https://tasks.googleapis.com/tasks/v1/lists/{listId}/tasks?showCompleted=falsePresent three tables:
| Priority | Key | Summary | Status | Type |
|---|
Sort by priority (Blocker > Critical > Major > Minor > Trivial), then by status (In Progress first, then To Do, then others).
| Repo | PR | Title | Draft |
|---|
Sort: non-draft PRs first, then draft PRs.
| Due Date | Task | List |
|---|
Sort by due date (soonest first, then tasks with no due date).
After showing the tables, provide a short prioritized recommendation of what to focus on next, considering:
Create a well-structured Jira ticket with acceptance criteria
Assess and improve a repository's readiness for AI-assisted development
Implement a feature based on a Jira ticket, with ticket quality and guideline validation
Launch all 9 review agents in parallel for a thorough code review