This file is a human-friendly map of the docs/ directory for the 4th.GRC™ platform.
In the future, this index can be auto-generated by a script (for example, extending gen_api_pages.py or adding a render_docs_index.py), but this version is curated to match your current layout.
docs/
api/ # Generated / structured API reference pages
API.md # High-level API overview
ARCHITECTURE_OVERVIEW.md # Platform & component architecture
gen_api_pages.py # Script to generate API docs into docs/api/
GOVERNANCE_PLAYBOOK.md # Governance model, roles, RACI, and processes
MODEL_CARD_TEMPLATE.md # Template for AI/ML model cards
SCHEMA_POLICY_PROFILE.md # Schema / contract for Policy-as-Code profiles
SYSTEM_CARD.md # System card describing a specific AI system
| File | Description |
|---|---|
API.md |
High-level overview of the 4th.GRC API surface (how clients integrate). |
api/ |
Contains generated per-endpoint API reference pages. |
gen_api_pages.py |
Python script that generates docs under docs/api/ from the OpenAPI schema or live service. |
| File | Description |
|---|---|
ARCHITECTURE_OVERVIEW.md |
Describes the overall system architecture: PolicyEngine service, Scorecard app, agents, data stores, and Azure components. |
| File | Description |
|---|---|
GOVERNANCE_PLAYBOOK.md |
Governance operating model (roles, RACI, review cadence, escalation paths). |
SCHEMA_POLICY_PROFILE.md |
Defines the expected structure of a Policy Profile (fields, metadata, rules, mappings). |
MODEL_CARD_TEMPLATE.md |
Template for documenting AI/ML models used in governed systems (risks, mitigations, datasets, metrics). |
SYSTEM_CARD.md |
Describes a specific AI system under governance (purpose, context, risks, scores, and results from PolicyEngine). |
gen_api_pages.pyis responsible for materializing endpoint-level docs underdocs/api/, typically by:- Reading an OpenAPI schema (e.g.,
docs/api/openapi.jsonor the live FastAPI app) - Generating one Markdown page per endpoint or tag
- Reading an OpenAPI schema (e.g.,
- This allows you to:
- Keep API reference docs in sync with the code
- Link from
API.mdto the detailed pages underdocs/api/
You can later extend the same pattern to also:
- Regenerate this
AUTO_INDEX.md - Output a
docs_index.jsonfor use in a docs UI or portal
If you later use MkDocs or another static site generator, a minimal nav could look like:
nav:
- Overview: ARCHITECTURE_OVERVIEW.md
- API:
- API Overview: API.md
- Endpoints: api/
- Governance:
- Governance Playbook: GOVERNANCE_PLAYBOOK.md
- Policy Profile Schema: SCHEMA_POLICY_PROFILE.md
- Model Card Template: MODEL_CARD_TEMPLATE.md
- System Card: SYSTEM_CARD.md
- Docs Index: AUTO_INDEX.mdDr. Freeman A. Jackson
4th.GRC™ — Agentic AI Governance Platform
Fourth Industrial Systems (4th)