work-jira
Fetch Jira tickets updated on a given work day for the current user in the Guidde Atlassian workspace. Usable standalone or as a subagent from work-daily.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Fetch Jira tickets updated on a given work day for the current user in the Guidde Atlassian workspace. Usable standalone or as a subagent from work-daily.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Generate a personal daily work summary. Aggregates calendar meetings, Fathom recordings, GitHub commits and PRs, Jira tickets, Slack highlights, and key emails into one structured digest for any given day.
Fetch Google Calendar events for a given work day. Usable standalone or as a subagent from work-daily.
Fetch Fathom meeting recordings with AI summaries and action items for a given work day. Usable standalone or as a subagent from work-daily.
Fetch GitHub commits and PRs (authored + reviewed) for a given work day. Usable standalone or as a subagent from work-daily.
Fetch key Gmail emails (sent and received important) for a given work day. Usable standalone or as a subagent from work-daily.
Resolve the authenticated user's identity for all work integrations. Reads from info.md when available, resolves remaining fields dynamically, caches results back to info.md. Returns a structured IDENTITY_RESULT block. Usable standalone or called in parallel from work-daily.
| name | work-jira |
| description | Fetch Jira tickets updated on a given work day for the current user in the Guidde Atlassian workspace. Usable standalone or as a subagent from work-daily. |
| argument-hint | ['today' | 'yesterday' | 'YYYY-MM-DD' | empty → last working day] |
| user-invocable | false |
Fetch Jira tickets for: $ARGUMENTS
1A — Date: Use the Skill tool to invoke work-date-resolver with args $ARGUMENTS.
Parse DATE from the output.
1B — Jira Cloud ID: Call getAccessibleAtlassianResources.
Store the UUID as JIRA_CLOUD_ID. Use the UUID field — NOT the hostname (guidde.atlassian.net is not a valid cloudId and will 404).
Call searchJiraIssuesUsingJql:
cloudId: JIRA_CLOUD_IDjql: "assignee = currentUser() AND updated >= 'DATE' ORDER BY updated DESC"maxResults: 20fields: ["summary", "status", "priority", "updated"]Emit exactly in this format:
JIRA_RESULT
DATE: <DATE>
TICKETS (N):
| Key | Summary | Status |
|-----|---------|--------|
| [GD-XXXX](url) | Summary | Status |
If no tickets: emit the table header and TICKETS (0): (none).