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.
npx claudepluginhub uceap/claude --plugin uceapThis skill uses the workspace's default tool permissions.
This skill helps you systematically work through developer meeting notes from the UCEAP/.github-private wiki to identify and resolve unresolved followup items.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
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