From uceap
Review developer meeting notes from the UCEAP IT Software Engineering wiki to process any outstanding action items. Creates Jira tickets, updates meeting notes, and manages the wiki Home page. Use when processing UCEAP meeting followups or planning a dev meeting.
How this skill is triggered — by the user, by Claude, or both
Slash command
/uceap:dev-meeting-followupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill helps you systematically work through developer meeting notes from the UCEAP/.github-private wiki to identify and resolve unresolved followup items.
This skill helps you systematically work through developer meeting notes from the UCEAP/.github-private wiki to identify and resolve unresolved followup items.
Work through meeting notes listed on the wiki Home page in chronological order (oldest to newest), checking for unresolved action items and helping resolve them.
Only consider unchecked checkboxes as followup items. Do not treat general discussion topics or questions without explicit checkbox action items as followup items.
Clone the wiki repository if not already available:
git clone https://github.com/UCEAP/.github-private.wiki.git /tmp/github-private-wiki
If the repository is already cloned, ensure it is up to date:
cd /tmp/github-private-wiki
git pull
Ensure you have access to:
For each meeting listed on the wiki Home page (starting with the oldest):
Read the meeting agenda file to identify any unchecked checkboxes (- [ ]).
For each unchecked checkbox:
When creating Jira tickets:
Example API call:
curl -s -X POST "${JIRA_BASE_URL}/rest/api/3/issue" \
-H "Content-Type: application/json" \
-u "${JIRA_EMAIL}:${JIRA_API_TOKEN}" \
-d '{
"fields": {
"project": {"key": "WEBP4"},
"summary": "Task summary",
"description": {
"type": "doc",
"version": 1,
"content": [{"type": "paragraph", "content": [{"type": "text", "text": "Description here"}]}]
},
"issuetype": {"name": "Task"}
}
}'
After resolving an item:
- [x]([WEBP4-123](https://uceapit.atlassian.net/browse/WEBP4-123))Once all unchecked items in a meeting are resolved:
Make separate commits for:
Then push all commits to GitHub:
cd /tmp/github-private-wiki
git add <files>
git commit -m "message"
git push
Repeat the process for the next oldest meeting on the Home page.
When there are no meetings remaining with open action items:
Developer-Meeting-Agenda-Template.md (lines between the ``` markers)Developer-Meeting-Agenda-YYYY-MM-DD.md with the template contentcd /tmp/github-private-wiki
git add Developer-Meeting-Agenda-YYYY-MM-DD.md Home.md
git commit -m "Create new Developer Meeting Agenda for YYYY-MM-DD"
git push
npx claudepluginhub uceap/claude --plugin uceapSyncs session work into GitHub issues and queries track status across repos. Two modes: write (end-of-session sync with issue updates, epics, labels, Project placement) and read (status lookup).
Fetches a JIRA issue and distills it into a structured task with acceptance criteria, sprint context, and codebase analysis. Surfaces missing criteria, scope, and risks, and can enrich the JIRA issue with analysis or spawn sub-tickets.
Extracts action items and assignees from meeting notes or Confluence pages, looks up Jira account IDs, and creates tasks.