Files
OpenMontage/schemas/artifacts/brief.schema.json
T
calesthio a3e735cc7a Initial release — OpenMontage: the first open-source agentic video production system
11 production pipelines, 47 tools, 124 agent skills.
Supports cloud APIs (fal.ai, OpenAI, ElevenLabs, Suno, HeyGen, Runway) and
free local providers (diffusers, Piper TTS, WAN 2.1, Hunyuan, CogVideo).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-29 08:25:17 -07:00

49 lines
1.7 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "openmontage/artifacts/brief",
"title": "Video Brief",
"description": "Creative brief produced by the Idea Explorer agent.",
"type": "object",
"required": ["version", "title", "hook", "key_points", "tone", "style", "target_platform", "target_duration_seconds"],
"properties": {
"version": { "type": "string", "const": "1.0" },
"title": { "type": "string", "minLength": 1 },
"hook": { "type": "string", "description": "Opening hook / attention grabber" },
"key_points": {
"type": "array",
"items": { "type": "string" },
"minItems": 1
},
"core_message": { "type": "string" },
"cta": { "type": "string", "description": "Call to action" },
"tone": { "type": "string" },
"style": { "type": "string", "description": "Style playbook name or custom description" },
"target_audience": { "type": "string" },
"target_platform": {
"type": "string",
"enum": ["youtube", "instagram", "tiktok", "linkedin", "generic"]
},
"target_duration_seconds": { "type": "number", "minimum": 1 },
"reference_material": {
"type": "array",
"items": { "type": "string" },
"description": "Paths or URLs to source material"
},
"angle_options": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"description": { "type": "string" }
},
"required": ["name", "description"]
},
"description": "2-3 angle options for user to choose from"
},
"selected_angle": { "type": "string" },
"metadata": { "type": "object" }
},
"additionalProperties": false
}