Parliamentary tracker for the CLIF Consortium Steering Committee.
🌐 Live site: common-longitudinal-icu-data-format.github.io/clif-governance
- 📋 Agenda Management — Set weekly meeting agendas via PR
- ✅ Quorum Tracking — Automatic quorum calculation based on attendance
- 🗳️ Motion Registry — Track all motions with vote records
- 📜 Historical Archive — Full searchable meeting history
- 🔗 GitHub Integration — Passed motions auto-create issues in CLIF repo
- Create a new file:
_meetings/YYYY-MM-DD.md - Add agenda items, set the date
- Submit a PR
- Record attendance (who's on Zoom)
- Add any motions that come up
- Record votes
- Add meeting minutes
- Merge the PR
- Site rebuilds automatically
- Passed motions create GitHub issues
clif-governance/
├── _data/
│ ├── committee.yml # Steering committee roster
│ └── motions.yml # Motion registry
├── _meetings/ # Meeting records (YYYY-MM-DD.md)
├── _layouts/ # Page templates
├── assets/css/ # Styling
├── committee.md # Committee page
├── meetings/index.md # Meetings archive
├── motions/index.md # Motion registry
└── index.md # Dashboard
Create _meetings/2026-03-13.md:
---
title: "Steering Committee - March 13, 2026"
date: 2026-03-13
attendance:
present:
- "Will Parker"
- "Nick Ingraham"
- "Catherine Gao"
absent:
- "Pat Lyons"
agenda:
- title: "Review action items"
presenter: "Will Parker"
duration: "5 min"
- title: "CLIF 3.0 discussion"
presenter: "Kaveri Chhikara"
duration: "20 min"
motions: []
---
## Minutes
Meeting notes here...Add to the meeting file's motions array:
motions:
- id: "2026-002"
title: "Add position_details column to position table"
type: "schema_change"
proposed_by: "Catherine Gao"
seconded_by: "Nick Ingraham"
description: "Add optional column for detailed positioning information"
status: "passed"
votes:
yes: ["Will Parker", "Nick Ingraham", "Catherine Gao", "Kaveri Chhikara"]
no: []
abstain: ["Vaishvik Chaudhari"]| Type | Threshold | Use For |
|---|---|---|
standard |
>50% | General decisions |
mcide_update |
>50% | Vocabulary changes |
schema_change |
≥67% | Breaking table changes |
new_table |
≥67% | Adding new tables |
policy |
>50% | Policy decisions |
# Install dependencies
bundle install
# Run locally
bundle exec jekyll serve
# View at http://localhost:4000/clif-governance/- Fork the repo
- Create a branch (
git checkout -b meeting/2026-03-13) - Add your meeting file
- Submit a PR
Built with ❤️ for the CLIF Consortium