mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 23:09:35 +00:00
- Replace repo-preflight with docs-governance workflow and check_docs_links.py - Class B bundle: require correlation_id for external_*; AuditMetadata trace fields - Root-safe TIER1 §2; optional .githooks pre-push for main - Add RELEASE_READINESS_MATRIX_AR, SOURCE_OF_TRUTH_INDEX, operational severity, external index - ExecWeeklyGovernanceContract; expand trust-fabric, execution-fabric, ADR-0001, ws5, Saudi overlays - Wire MASTER TOC, enterprise-readiness, completion-program, architecture_brief paths Made-with: Cursor
52 lines
1.3 KiB
YAML
52 lines
1.3 KiB
YAML
# Tier-1 P0: governance + docs integrity (fast, no salesflow-saas backend deps)
|
|
name: Docs governance
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- "docs/**"
|
|
- "scripts/architecture_brief.py"
|
|
- "scripts/check_docs_links.py"
|
|
- ".github/workflows/docs-governance.yml"
|
|
- "MASTER_OPERATING_PROMPT.md"
|
|
- "AGENTS.md"
|
|
- "CLAUDE.md"
|
|
- "Execution_Matrix.md"
|
|
- "Execution_Matrix_v2.md"
|
|
- "Architecture_Pack.md"
|
|
pull_request:
|
|
branches: [main]
|
|
paths:
|
|
- "docs/**"
|
|
- "scripts/architecture_brief.py"
|
|
- "scripts/check_docs_links.py"
|
|
- ".github/workflows/docs-governance.yml"
|
|
- "MASTER_OPERATING_PROMPT.md"
|
|
- "AGENTS.md"
|
|
- "CLAUDE.md"
|
|
- "Execution_Matrix.md"
|
|
- "Execution_Matrix_v2.md"
|
|
- "Architecture_Pack.md"
|
|
|
|
jobs:
|
|
architecture_brief:
|
|
name: Constitution path check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.12"
|
|
- run: python scripts/architecture_brief.py
|
|
|
|
docs_links:
|
|
name: Markdown internal links
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.12"
|
|
- run: python scripts/check_docs_links.py
|