Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

shot-list拍摄清单

Agent Skill

shot-list 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

588

周安装

25

GitHub Stars

1

下载量

206
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:shot-list(拍摄清单)
来源仓库:https://github.com/jakerains/agentskills
仓库路径:skills/shot-list
安装命令:
npx skills add https://github.com/jakerains/agentskills --skill shot-list
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jakerains/agentskills --skill shot-list

简介

shot-list 用于管理视频拍摄前的准备工作清单。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中规划场地、道具与人员分工。
  • 确保拍摄流程顺畅,减少遗漏与返工。
  • 安装命令:npx skills add https://github.com/jakerains/agentskills --skill shot-list。
  • 清单应根据实际拍摄计划动态调整,保持灵活性。

SKILL.md

Shot List Generator

Parse screenplays, collaboratively determine shots, and generate production-ready PDF shot lists.

Workflow Overview

  1. Parse Script → Extract scenes, locations, characters, action
  2. Collaborate → Discuss shot choices scene-by-scene with user
  3. Generate PDF → Create professional, printable shot list

Step 1: Parse the Script

Support formats: .fountain, .fdx, .txt, .pdf, .docx

Scene Extraction Pattern

Extract from script:

  • Scene number (auto-generate if missing)
  • Scene heading (INT./EXT., location, time)
  • Characters in scene
  • Key action beats (story moments needing coverage)
  • Page/timing estimate

Fountain/Text Parsing

import re

def parse_screenplay(text):
    """Extract scenes from screenplay text."""
    scenes = []
    scene_pattern = r'^((?:INT\.|EXT\.|INT\./EXT\.|I/E\.)\s+.+)$'

    lines = text.split('\n')
    current_scene = None
    scene_num = 0

    for i, line in enumerate(lines):
        line = line.strip()
        if re.match(scene_pattern, line, re.IGNORECASE):
            if current_scene:
                scenes.append(current_scene)
            scene_num += 1
            current_scene = {
                'number': scene_num,
                'heading': line,
                'characters': set(),
                'action_beats': [],
                'content': []
            }
        elif current_scene:
            current_scene['content'].append(line)
            if line.isupper() and len(line) > 1 and len(line) < 40:
                if not any(t in line for t in ['CUT TO', 'FADE', 'DISSOLVE']):
                    current_scene['characters'].add(line.split('(')[0].strip())

    if current_scene:
        scenes.append(current_scene)

    for s in scenes:
        s['characters'] = list(s['characters'])

    return scenes

Step 2: Collaborative Shot Planning

After parsing, present scenes and discuss coverage. For each scene ask:

  1. What's the emotional arc? (Drives framing choices)
  2. Who has focus? (Determines coverage priority)
  3. Key moments? (Beats requiring specific shots)
  4. Practical constraints? (Location, equipment, time)
  5. Visual style reference? (Film/show inspiration)

Shot Type Reference

TypeCodeUse For
Wide/EstablishingWSLocation, groups
Full ShotFSFull body, action
Medium ShotMSDialogue, interaction
Medium Close-UpMCUEmotional dialogue
Close-UpCUReaction, emotion
Extreme Close-UpECUCritical detail
Over-the-ShoulderOTSDialogue coverage
Two-Shot2SPaired characters
InsertINSProps, details
POVPOVCharacter perspective

Camera Movement Reference

MovementCodeEffect
StaticSTATICStability
PanPANFollow horizontally
TiltTILTReveal height
DollyDOLLYApproach/retreat
TrackingTRACKFollow movement
CraneCRANEEpic scale
HandheldHHTension, energy
SteadicamSTEDIFluid following

Angle Reference

AngleEffect
Eye LevelNeutral
Low AnglePower
High AngleVulnerability
DutchUnease

Step 3: Building Shot Entries

shot_entry = {
    'scene': 1,
    'shot': 'A',
    'setup': 1,
    'shot_type': 'MS',
    'framing': 'Medium on Sarah',
    'angle': 'Eye Level',
    'movement': 'STATIC',
    'lens': '50mm',
    'description': 'Sarah enters, sees the letter',
    'characters': ['SARAH'],
    'notes': 'Practical window light'
}

Coverage Pattern

Master → Medium → Close-ups → Inserts

Step 4: Generate PDF

Use scripts/generate_shot_list_pdf.py for professional output.

PDF Columns

ColumnContent
Shot #Scene.Shot ID
SetupCamera setup
TypeShot type code
FramingDescription
MoveCamera movement
ActionWhat happens
NotesTechnical notes

Output to /mnt/user-data/outputs/shot_list_{project}.pdf

References

  • references/shot_terminology.md - Complete glossary
  • references/coverage_patterns.md - Common coverage strategies

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.1%
按下载量换算72

Claude

31.96%
按下载量换算66

Cursor

20.87%
按下载量换算43

Gemini CLI

9.13%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills