Files
video/schemas/artifacts/render_report.schema.json
T
calesthio 2cd36fa8e0 Implementation spec: governance, decision intelligence, theme system, and E2E bug fixes
Implements the 2026-04-02 transformation spec (Phases 1-8) and fixes all
critical bugs found during 5-pipeline E2E testing.

Governance & Decision Intelligence:
- Pipeline-specific stage order in checkpoint (replaces global STAGES list)
- Provider scoring engine (lib/scoring.py) with 7-dimension weighted ranking
- Decision log artifact enforced at proposal/idea stage across all 10 pipelines
- Delivery promise classifier prevents silent motion-to-still downgrades
- Structured shot language in scene_plan schema (camera, lens, lighting, DOF)
- Variation checker and slideshow risk scorer block samey output before render
- Creative intake, capability extension, and creative-intake meta skills
- Final self-review artifact with 5 mandatory checks before presenting output
- Source media review contract for user-supplied footage

Render & Theme System:
- Remotion AnimatedBackground now derives colors from playbook (no more hardcoded
  dark blue fintech gradient on every video)
- video_compose builds custom ThemeConfig from playbook YAML colors/fonts —
  custom playbooks flow through to Remotion automatically
- Explainer component wires theme to all child components (charts, cards, etc.)
- resolveAsset() handles absolute paths on Windows/Unix via file:// URIs
- RENDERER_FAMILY_MAP synced with actual Remotion compositions

Critical Bug Fixes:
- Windows npx subprocess: run_command() resolves .cmd wrappers via shutil.which()
- Silent renderer downgrade: Remotion failure now returns explicit error with
  options instead of silently falling back to FFmpeg
- .env inline comment parsing strips trailing # comments from API keys
- concat_path UnboundLocalError in video_compose finally block
- audio_mixer and showcase_card capture=True kwarg bug
- Selector estimate_cost() calls fixed (_select_tool -> _select_best_tool)
- asset_manifest schema expanded with provider, license, subtype fields
- screen-demo subtitle_gen moved from required to optional tools
- Duration drift detection in post-render final review (>25% warns)
2026-04-03 09:35:09 -07:00

64 lines
2.2 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "openmontage/artifacts/render_report",
"title": "Render Report",
"description": "Output report produced by the Composer agent after rendering.",
"type": "object",
"required": ["version", "outputs"],
"properties": {
"version": { "type": "string", "const": "1.0" },
"outputs": {
"type": "array",
"items": {
"type": "object",
"required": ["path", "format", "resolution", "duration_seconds"],
"properties": {
"path": { "type": "string" },
"format": { "type": "string" },
"codec": { "type": "string" },
"audio_codec": { "type": "string" },
"resolution": { "type": "string" },
"fps": { "type": "number" },
"duration_seconds": { "type": "number", "minimum": 0 },
"file_size_bytes": { "type": "integer" },
"platform_target": { "type": "string" }
},
"additionalProperties": false
},
"minItems": 1
},
"render_time_seconds": { "type": "number", "minimum": 0 },
"warnings": {
"type": "array",
"items": { "type": "string" }
},
"verification_notes": {
"type": "array",
"items": { "type": "string" }
},
"render_grammar": {
"type": "string",
"description": "Which renderer family was used for this render",
"enum": ["explainer-data", "explainer-teacher", "cinematic-trailer", "product-reveal", "screen-demo", "presenter", "animation-first"]
},
"slideshow_risk_score": {
"type": "object",
"description": "Final slideshow risk assessment",
"properties": {
"average": { "type": "number" },
"verdict": { "type": "string" }
}
},
"decision_log_ref": {
"type": "string",
"description": "Path to the project's cumulative decision log"
},
"final_review_ref": {
"type": "string",
"description": "Path or inline reference to the final_review artifact produced by post-render self-review. Provides durable audit linkage between the render output and its quality inspection."
},
"metadata": { "type": "object" }
},
"additionalProperties": false
}