templates/ directory, plus one shared template used for all GitHub issues.
Naming convention
Template filenames follow the pattern<type>_<shortname>, where <shortname> is an abbreviated identifier for the group. For example, the TSC group uses tsc as its shortname:
Template types
Invited
Defines which GitHub team gets @mentioned in the meeting issue as the list of invited attendees.
Observers
Lists regular observers who attend meetings consistently but are not voting members.
Meeting Base
A dotenv-format configuration file with calendar, repository, and group settings.
Minutes Base
A Markdown template for the HackMD meeting minutes document, pre-structured with standard sections.
The shared meeting issue template
The filemeeting_issue.md is not group-specific. It provides the structure for every GitHub issue the CLI creates, regardless of which group the meeting is for. It contains all of the time, agenda, invited, and joining-instructions sections and uses template variables that are substituted at generation time.
How templates are loaded
When you run the CLI,readMeetingConfig() in src/meeting.mjs reads the three group-specific non-minutes files for your meeting group:
meeting_base file is then parsed by the dotenv library’s parse() function to extract the configuration properties. The minutes_base file is read separately by generateMeetingMinutes() when the CLI creates the HackMD document.
Template variables
All template files support variable substitution using the$VARIABLE_NAME$ syntax. See the Template Variables reference for the full list of available substitutions.