CivicBoards is the CivicSuite module for board and commission roster support, term tracking, vacancy tracking, attendance review, and notice/records export checklists.
Current state: v0.1.1 board administration foundation plus roster persistence release. This repo ships a FastAPI package, health/root endpoints, documentation gates, deterministic sample board registry, term review plans, vacancy checklists, attendance summaries, optional database-backed board roster and attendance review records, notice/records export checklist, and accessible public sample UI at /civicboards, aligned to civiccore==0.3.0. It does not ship live agenda systems, appointment decisions, legal advice, live LLM calls, official notice publication, meeting system write-back, or board system-of-record integrations.
- Create sample board and commission registry stubs.
- Build term-end reminder plans.
- Assemble vacancy checklists for staff review.
- Summarize attendance without removing or replacing members.
- Persist board roster and attendance review records when
CIVICBOARDS_ROSTER_DB_URLis configured. - Produce notice and records export checklists.
- Demonstrate a public board-support UI at
/civicboards.
- It does not appoint, remove, or replace members.
- It does not publish official notices.
- It does not provide legal advice.
- It does not call live LLMs in v0.1.1.
- It does not replace a board system of record.
GET /returns the shipped/planned boundary.GET /healthreturns package and CivicCore versions.GET /civicboardsreturns the accessible public sample UI.POST /api/v1/civicboards/registryreturns a sample board registry stub.GET /api/v1/civicboards/registry/{board_id}retrieves a persisted board roster record whenCIVICBOARDS_ROSTER_DB_URLis configured.POST /api/v1/civicboards/termsreturns term-end reminders.POST /api/v1/civicboards/vacanciesreturns a vacancy checklist.POST /api/v1/civicboards/attendancereturns attendance review flags and anattendance_idwhen persistence is configured.GET /api/v1/civicboards/attendance/{attendance_id}retrieves a persisted attendance review whenCIVICBOARDS_ROSTER_DB_URLis configured.POST /api/v1/civicboards/exportreturns a notice and records export checklist.
Set CIVICBOARDS_ROSTER_DB_URL to enable local SQLAlchemy-backed board roster and attendance review records:
export CIVICBOARDS_ROSTER_DB_URL="sqlite+pysqlite:///./civicboards.db"Without that variable, CivicBoards remains deterministic and stateless. Retrieval endpoints return actionable 503 responses that name the required configuration.
python -m pip install -e ".[dev]"
python -m pytest -q
bash scripts/verify-release.shCode is Apache License 2.0. Documentation is CC BY 4.0.