Cohort Progress Board

Instructor-facing table showing all enrolled learners with per-module completion ticks and average quiz scores. On GAS reads live from the course progress Sheet via a2uiCohortRead. On web renders from static items[] array. Shows enrolled and active learner counts at top.

Surfaces
google-apps-script-webwebgoogle-meet-stagemcp-apps
Live preview
Cohort Progress
Student
alice@example.com
bob@example.com
Fields
FieldType
course_idstring (required). Matches the progress_store course_id.required
titlestring. Board heading. Default "Cohort Progress".optional
modulesarray. Array of {id, label} for column headers. Drives per-module completion dots.optional
itemsarray (optional, web/static). Array of {email, progress{}, updated_at} learner objects.optional
Example payload
{
  "type": "cohort_progress_board",
  "course_id": "course-101"
}
ARD catalog entry
{
  "identifier": "urn:air:a2uicatalog.ai:atom:cohort_progress_board",
  "displayName": "Cohort Progress Board",
  "type": "application/vnd.a2ui.atom+json",
  "url": "https://a2uicatalog.ai/atoms/cohort_progress_board",
  "capabilities": [
    "google-apps-script-web",
    "web",
    "google-meet-stage",
    "mcp-apps"
  ],
  "description": "Instructor-facing table showing all enrolled learners with per-module completion ticks and average quiz scores. On GAS reads live from the course progress Sheet via a2uiCohortRead. On web renders from static items[] array. Shows enrolled and active learner counts at top.",
  "representativeQueries": [
    "show a instructor cohort table \u2014 per-learner module completion + scores; live on GAS",
    "instructor-facing table showing all enrolled learners with per-module completion ticks and average q",
    "render a cohort progress board"
  ]
}
← Full ARD catalog
Deploy your own Google Apps Script renderer

The renderer is an open-source Google Apps Script web app. Deploy your own instance in 4 commands — you own the URL, no dependency on the demo endpoint.

git clone https://github.com/a2uicatalog/a2ui
cd a2ui/apps-script-surface/gas-wired-renderer
clasp push && clasp deploy
Full deploy guide →