Claude-skill-registry create-meeting-agenda
Create weekly software meeting agenda in the wiki repo.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/create-meeting-agenda" ~/.claude/skills/majiayu000-claude-skill-registry-create-meeting-agenda && rm -rf "$T"
manifest:
skills/data/create-meeting-agenda/SKILL.mdsource content
Create Meeting Agenda
Create a new weekly software meeting agenda by copying the previous week's agenda and updating the wiki index.
Wiki Repository Location
The wiki is located at:
/scratch/gpfs/MSALGANIK/niznik/GitHub/cruijff_kit_wiki/
Workflow
1. Pull Latest Wiki
cd /scratch/gpfs/MSALGANIK/niznik/GitHub/cruijff_kit_wiki git pull
2. Find Most Recent Agenda
Look for the most recent
YYYY-MM-DD-SM.md file in the wiki directory. Files use special unicode hyphens (‐ U+2010) not regular hyphens.
3. Determine New Meeting Date
- Ask the user for the meeting date if not provided
- Format:
(e.g.,YYYY-MM-DD
)2025-12-02 - Meetings are typically on Tuesdays
4. Create New Agenda
- Read the most recent agenda file
- Create a new file with the new date:
(using unicode hyphens ‐)YYYY‐MM‐DD‐SM.md - Copy contents exactly - do not modify
5. Update Software-Meetings.md
Add a new entry at the TOP of
Software-Meetings.md:
* [YYYY-MM-DD](https://github.com/niznik-dev/cruijff-kit/wiki/YYYY%E2%80%90MM%E2%80%90DD%E2%80%90SM)
Note: The URL uses
%E2%80%90 for each unicode hyphen (‐).
6. Commit and Push
cd /scratch/gpfs/MSALGANIK/niznik/GitHub/cruijff_kit_wiki git add "YYYY‐MM‐DD‐SM.md" Software-Meetings.md git commit -m "Add [DATE] meeting agenda 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>" git push
Important Notes
- Always
first to avoid conflictsgit pull - The agenda file uses unicode hyphens (‐ U+2010), not regular hyphens (-)
- Copy the previous agenda exactly without modifications - the user wants to see what was discussed last time
- The wiki repo is separate from the main cruijff_kit repo