mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 23:09:35 +00:00
Complete Tier-1 closure follow-through by wiring docs governance gates, RC release readiness checks, source-of-truth enforcement, executive weekly contract surface, and go-live severity notes. Add full go-live revenue execution documentation set (production activation, real production playbook, trust expansion, first 3 clients, live deployment, and automated revenue engine) and register all canonical paths. Made-with: Cursor
104 lines
3.0 KiB
YAML
104 lines
3.0 KiB
YAML
# Tier-1 P0: governance + docs integrity (fast, no salesflow-saas backend deps)
|
|
name: Docs governance
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- "docs/**"
|
|
- "salesflow-saas/docs/**"
|
|
- "scripts/architecture_brief.py"
|
|
- "scripts/check_docs_links.py"
|
|
- "scripts/check_no_overclaim.py"
|
|
- "scripts/check_release_readiness_matrix.py"
|
|
- "scripts/check_source_of_truth_index.py"
|
|
- "scripts/check_glossary_consistency.py"
|
|
- ".github/workflows/docs-governance.yml"
|
|
- ".github/workflows/release-readiness-rc-gate.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/**"
|
|
- "salesflow-saas/docs/**"
|
|
- "scripts/architecture_brief.py"
|
|
- "scripts/check_docs_links.py"
|
|
- "scripts/check_no_overclaim.py"
|
|
- "scripts/check_release_readiness_matrix.py"
|
|
- "scripts/check_source_of_truth_index.py"
|
|
- "scripts/check_glossary_consistency.py"
|
|
- ".github/workflows/docs-governance.yml"
|
|
- ".github/workflows/release-readiness-rc-gate.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
|
|
|
|
no_overclaim:
|
|
name: Docs no-overclaim scan
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.12"
|
|
- run: python scripts/check_no_overclaim.py
|
|
|
|
release_readiness_matrix:
|
|
name: Release readiness matrix structure
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.12"
|
|
- run: python scripts/check_release_readiness_matrix.py
|
|
|
|
glossary_consistency:
|
|
name: Glossary contract names (minimal)
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.12"
|
|
- run: python scripts/check_glossary_consistency.py
|
|
|
|
source_of_truth_index:
|
|
name: Source of truth index (minimal)
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.12"
|
|
- run: python scripts/check_source_of_truth_index.py
|