feat(skill): summarize jira issues & PR reviews#26
feat(skill): summarize jira issues & PR reviews#26andrew-ronaldson wants to merge 3 commits intopatternfly:mainfrom
Conversation
…ributions. Enhanced description and workflow steps to prioritize active sprint tasks, fetch contributor issues, and provide a sprint-focused summary output.
| @@ -0,0 +1,243 @@ | |||
| --- | |||
There was a problem hiding this comment.
Skills need to live under plugins/<plugin-name>/skills/ to be discovered — .cursor/skills/ isn't the right location. These are workflow/project management skills, so plugins/pf-workflow/skills/summarize-issues/ would be the right home.
| @@ -0,0 +1,289 @@ | |||
| --- | |||
There was a problem hiding this comment.
Same as above — needs to move to plugins/pf-workflow/skills/summarize-pr-reviews/.
|
|
||
| First, get the user's Atlassian account info and accessible resources. | ||
|
|
||
| ``` |
There was a problem hiding this comment.
The exact MCP tool calls with full parameter lists are over-prescribing implementation — the AI already knows how to use these tools. Describing the intent in plain language (e.g. "query active sprint issues assigned to the current user, ordered by priority") and letting the AI figure out the tool calls would keep this shorter and more maintainable.
| First, get the authenticated GitHub user's information. | ||
|
|
||
| ``` | ||
| get_me() |
There was a problem hiding this comment.
Same pattern here — the exact search_issues() and get_pull_request() calls with parameters could be replaced with plain language intent like "find open PRs requesting my review, sorted by most recently updated."
summarize-issues
This Skill pulls information from the Atlassian MCP and provides a summary of tasks for a user.
The output outlines tasks by priority and makes recommendations on how to approach the workload.
Further exploration will be done in a follow up to refine the skill outputs
summarize-pr-reviews
This skill takes all PRs that are awaiting your review and gives a quick summary of the changes, time to review and recommended order.