Checkpoint raw-preservation pipeline and Type B refactor

This commit is contained in:
2026-04-07 08:54:10 +09:00
parent 4a71d7db88
commit 0cc2a997b6
109 changed files with 4721 additions and 2993 deletions

View File

@@ -11,16 +11,47 @@
- 최종 품질 판정: 재작업 필요
## Render Gates
- slide overflow: True
- body: overflowed=None excess_px=None block_count=None
- sidebar: overflowed=None excess_px=None block_count=None
- footer: overflowed=None excess_px=None block_count=None
- slide overflow: False
- body: overflowed=True excess_px=12 block_count=0
- sidebar: overflowed=False excess_px=0 block_count=0
- footer: overflowed=False excess_px=0 block_count=0
## Measurement
```json
{
"slide": {},
"zones": {}
"containers": {},
"slide": {
"clientHeight": 720,
"excess_px": 0,
"overflowed": false,
"scrollHeight": 720
},
"zones": {
"body": {
"block_count": 0,
"blocks": [],
"clientHeight": 495,
"excess_px": 12,
"overflowed": true,
"scrollHeight": 507
},
"footer": {
"block_count": 0,
"blocks": [],
"clientHeight": 40,
"excess_px": 0,
"overflowed": false,
"scrollHeight": 40
},
"sidebar": {
"block_count": 0,
"blocks": [],
"clientHeight": 495,
"excess_px": 0,
"overflowed": false,
"scrollHeight": 495
}
}
}
```
@@ -28,7 +59,7 @@
- 판정: `revise`
## Failure Classification
- Verify-Measurement
- Verify-RenderZone
## Next Action
1. ?? ??? ?? ???? stage 3/4 ?? ? ?? ??? ?? ???? ?? ??? ?? ????.
1. overflow가 발생한 zone(body)의 content budget, block 수, typography를 재조정한다.