fca618916c
Add two leadership-facing presentation decks for senior leadership (CTO, Head of Cloud, Head of Infrastructure, Head of DevOps): 1. How the Platform Works — 14 slides covering the contract-driven model, zero-trust, computed safety, policy enforcement, secure-by-default, immutable audit, HITL, observability, platform-managed environments, portability, and an honest shipped-vs-planned roadmap. 2. The Developer Experience — 14 slides covering two consumer surfaces, the 5-line contract, no platform code, versioned releases, instant feedback, deploy outputs, local reproducibility, friendly onboarding, safe promotion (one contract + per-env CI jobs), safe decommission, self-service module catalog, and the leadership outcome. Each deck has two forms: - Full markdown (source of truth) with speaker notes + mermaid code blocks - Marp deck (lean, no speaker notes, embedded PNG diagrams) for presentation Includes a README documenting the 3-step slide creation process: (full markdown → Marp synthesis → PPTX export) with conventions, build commands, and maturity framing rules. ---ci--- phase: 44 milestone: v1.9 status: complete requirements: covered: [] partial: [] ---/ci---
7 lines
380 B
Plaintext
7 lines
380 B
Plaintext
flowchart LR
|
|
A["Technical developer"] --> C["Contract YAML"]
|
|
B["Citizen developer<br/>(non-technical)"] --> D["Declares intent<br/>in natural language"]
|
|
D --> E["Agent produces<br/>the contract"]
|
|
C --> F["Same platform:<br/>resolve → check → plan →<br/>policy → confidence → apply"]
|
|
E --> F
|
|
F --> G["Same safety guarantees,<br/>same audit trail"] |