Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Canonical CODEOWNERS for Maui team repositories.
#
# This is the source of truth. Consuming repos do NOT edit their own
# .github/CODEOWNERS by hand — the `sync-codeowners` reusable workflow copies
# this file into <repo>/.github/CODEOWNERS and opens a PR when it drifts.
#
# GitHub only reads CODEOWNERS from a repo's root, .github/, or docs/ on the
# default branch, so the file must physically exist in each repo; it cannot be
# read from the .maui submodule directly.
#
# See https://docs.github.com/articles/about-code-owners

# CI workflows, deployment config, and the CODEOWNERS file itself.
/.github/ @beyondessential/maui

# Any Python file, anywhere in the repo.
*.py @beyondessential/maui
16 changes: 16 additions & 0 deletions .github/workflows/sync-codeowners.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Sync CODEOWNERS

# Keeps .github/CODEOWNERS in sync with the canonical templates/CODEOWNERS in
# the maui-team repo. See beyondessential/maui-team .github/workflows/README.md.

on:
schedule:
- cron: '0 6 * * 1' # weekly, Monday 06:00 UTC
workflow_dispatch:

jobs:
sync:
uses: beyondessential/maui-team/.github/workflows/sync-codeowners.yml@main
permissions:
contents: write
pull-requests: write
2 changes: 1 addition & 1 deletion .maui
Submodule .maui updated 63 files
+21 −0 .editorconfig
+21 −0 .github/markdown-link-check-config.json
+27 −0 .github/pull_request_template.md
+181 −24 .github/workflows/README.md
+37 −1 .github/workflows/claude-code-review.yml
+99 −0 .github/workflows/dbt-tests.yml
+30 −0 .github/workflows/imports-check.yml
+27 −0 .github/workflows/link-check.yml
+200 −0 .github/workflows/publish-artifacts.yml
+70 −0 .github/workflows/python-ci.yml
+76 −0 .github/workflows/spec-check.yml
+1 −0 .gitignore
+31 −0 .markdownlint.jsonc
+58 −9 AGENT.md
+104 −29 README.md
+42 −0 REVIEW.md
+77 −17 knowledge/AGENT.base.md
+67 −0 knowledge/README.md
+100 −0 knowledge/architecture/data-architecture.md
+35 −0 knowledge/architecture/data-architecture/consequences.md
+473 −0 knowledge/architecture/data-architecture/decisions.md
+18 −0 knowledge/architecture/data-architecture/open-questions.md
+57 −0 knowledge/architecture/data-architecture/phase-0.md
+186 −0 knowledge/architecture/data-architecture/production-promotion.md
+40 −0 knowledge/architecture/data-architecture/quick-reference.md
+84 −0 knowledge/architecture/ncd-metric-migration-lineage.svg
+111 −0 knowledge/architecture/north-star.svg
+102 −0 knowledge/glossary.md
+92 −0 knowledge/runbooks/macro-change-impact.md
+139 −0 knowledge/runbooks/new-derived-element.md
+218 −0 knowledge/runbooks/new-report.md
+376 −0 knowledge/runbooks/refactoring-guide.md
+209 −0 knowledge/runbooks/tamanu-dbt-setup.md
+206 −61 knowledge/standards/dbt-conventions.md
+73 −0 knowledge/standards/dbt-metadata.md
+287 −0 knowledge/standards/derived-elements-conventions.md
+11 −11 knowledge/standards/git-conventions.md
+49 −0 knowledge/standards/linear-conventions.md
+78 −0 knowledge/standards/parallel-agents.md
+1 −0 knowledge/standards/python-conventions.md
+82 −0 knowledge/standards/release-conventions.md
+130 −0 knowledge/standards/sdd-conventions.md
+9 −0 knowledge/standards/sql-conventions.md
+0 −71 knowledge/standards/tamanu-conventions.md
+221 −0 knowledge/standards/tamanu-dbt-conventions.md
+119 −8 knowledge/standards/testing-conventions.md
+2 −1 ruff.toml
+77 −0 scripts/check_agent_imports.py
+132 −0 scripts/check_bl_length.py
+172 −0 scripts/check_spec_anchors.py
+162 −0 skills/maui-spec-driven-development/SKILL.md
+126 −0 skills/maui-spec-driven-development/assets/SPEC_GUIDE.md
+109 −0 skills/maui-spec-driven-development/assets/templates/dagster-pipeline.md
+87 −0 skills/maui-spec-driven-development/assets/templates/data-extract.md
+114 −0 skills/maui-spec-driven-development/assets/templates/data-migration.md
+107 −0 skills/maui-spec-driven-development/assets/templates/dbt-model.md
+95 −0 skills/maui-spec-driven-development/assets/templates/tupaia-dashboard.md
+42 −0 skills/maui-spec-driven-development/references/sdd-principles.md
+160 −0 skills/tupaia-visualisation-builder/SKILL.md
+184 −0 skills/tupaia-visualisation-builder/references/dashboard-items.md
+127 −0 skills/tupaia-visualisation-builder/references/data-sources.md
+83 −0 skills/tupaia-visualisation-builder/references/map-overlays.md
+163 −0 skills/tupaia-visualisation-builder/references/pipeline.md