10b87a644c
Contract examples updated to new shape:
- DX Slide 3 contract example: id/name/environment/infrastructure (no uses:, no module:)
- Version pins bumped from @v1.6/@v1.8 to @v1.10
- .acdl/contract.yaml → .acdl/contract.yml in all deck examples
Story beat prefix stripped:
- All 'Story beat: ' prefixes removed from narrative lines (DX source + both Marp decks)
- PW source-of-truth: added narrative lines to fix P51 drift (PW Marp had them, PW source didn't)
DX Slide 2 reconciliation:
- Title: 'Where ACDL Sits' → 'Where Agentic Cloud Delivery (ACDL) Sits' (spelled out)
- Source-of-truth inline mermaid reconciled to match .mmd/PNG (subgraphed LR version)
- Prose: added ACDL definition line
S&P mermaid theme (all 10 diagrams):
- assets/mmd/sp-theme.json: canonical S&P Red/Black/White theme
- Each .mmd file: %%{init:...}%% block with inline theme (self-contained)
- Two-tone classDef: accent (dark fill, white text, red border) for key nodes,
supporting (white fill, black text, red border) for the rest
- All 10 PNGs re-rendered with --configFile sp-theme.json
- README build command updated with --configFile flag
GRILL G-005 (Verification Coverage):
- PW Slide 9: added block listing 6 deploy-unverified capabilities (CAP-017..022)
- DX A6: same block included in the new appendix slide
GRILL G-008 (Operating Model & Cost):
- Both decks: new A6 appendix slide (local emulators primary tier, zero cloud cost,
live-AWS one-off spike per milestone, no BAU spend)
Cross-deck consistency:
- DX glossary: added missing IR row (PW had it, DX didn't)
- Both decks: 7-appendix convention (TOC updated, A1-A6)
HTML re-rendered:
- Both decks re-rendered from updated Marp source
---ci---
project: acdl
phase: 57
milestone: v1.10.2
status: execute
---/ci---
32 lines
1.2 KiB
Plaintext
32 lines
1.2 KiB
Plaintext
%%{init: {"theme": "base", "themeVariables": {"primaryColor": "#1B1B1B", "primaryBorderColor": "#D6002A", "primaryTextColor": "#fff", "secondaryColor": "#fff", "secondaryBorderColor": "#D6002A", "secondaryTextColor": "#1B1B1B", "tertiaryColor": "#F0F0F0", "clusterBkg": "#F0F0F0", "lineColor": "#1B1B1B", "fontFamily": "\"Akkurat Pro\", \"Helvetica Neue\", \"Arial\", sans-serif"}}}%%
|
|
|
|
flowchart LR
|
|
subgraph UP ["Upstream — anything"]
|
|
direction TB
|
|
A["IDE / IDE + AI\n(dev writes contract)"]
|
|
B["Agentic SDLC\n(agent writes contract)"]
|
|
C["Citizen dev\n(vibe codes → AI agent\n→ contract)"]
|
|
end
|
|
subgraph ACDL ["ACDL — infrastructure only"]
|
|
D["Contract\nvalidated"]
|
|
E["Resolve → Plan\nSecurity + Policy checks\nConfidence signal"]
|
|
F["Provision\nAWS resources"]
|
|
G["Evidence\nhash-chained"]
|
|
end
|
|
subgraph DOWN ["Downstream"]
|
|
H["AWS resources\nrunning"]
|
|
I["Consumer pipeline\ndeploys image"]
|
|
end
|
|
A --> D
|
|
B --> D
|
|
C --> D
|
|
D --> E
|
|
E --> F
|
|
E --> G
|
|
F --> H
|
|
H --> I
|
|
classDef accent fill:#1B1B1B,color:#fff,stroke:#D6002A,stroke-width:2px
|
|
classDef supporting fill:#fff,color:#1B1B1B,stroke:#D6002A,stroke-width:1px
|
|
class D,E,F,G accent
|
|
|