Step 3 Content Blueprint Skill
Complete all Step 3 canon JSON files for one project.
Required files in projects/<project-id>/bible/:
- •
shot_list.json(script) - •
youtube_script.json - •
transcript.json - •
asset_manifest.json - •
characters.json - •
locations.json - •
visual_style.json - •
cinematography.json
Execute
- •Resolve project id (default
default). - •Fill each JSON file with production-ready content (not TODO placeholders).
- •Keep identifiers consistent across files (character/location IDs used by shots must exist in canon files).
- •Ensure JSON parses cleanly.
Completeness check
bash
project=default
for f in shot_list.json youtube_script.json transcript.json asset_manifest.json characters.json locations.json visual_style.json cinematography.json; do
node -e "JSON.parse(require('fs').readFileSync('projects/$project/bible/$f','utf8')); console.log('ok $f')"
done
Step 3 is complete only when every file exists, parses, and cross-file IDs are coherent.