Token导航 LogoToken导航TokenDH.com
待分类执行命令github未标认证来源可访问许可证需确认审计提醒

broll-catalog-builder布罗尔目录生成器

Agent Skill

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

总安装

533

周安装

22

GitHub Stars

公开资料未说明

下载量

174
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:broll-catalog-builder(布罗尔目录生成器)
来源仓库:https://github.com/postplusai/postplus-skills
仓库路径:skills/broll-catalog-builder
安装命令:
npx skills add https://github.com/postplusai/postplus-skills --skill broll-catalog-builder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/postplusai/postplus-skills --skill broll-catalog-builder

简介

broll-catalog-builder 用于整理 B-roll 素材并建立可复用的资产目录,适合在视频编辑前期规划阶段使用。

  • 它支持按语义标签分类素材、识别可用片段范围,并生成结构化清单以辅助剪辑决策。
  • 使用时需传入素材文件夹路径或元数据源,输出默认 broll-catalog.json 文件及其他可选格式。
  • 安装前请确认仓库权限与本地环境兼容性,注意其依赖网络访问与文件系统操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

B-roll Catalog Builder

Follow shared release-shell rules in:

  • postplus-shared release-shell rules

Use this skill when the user has B-roll assets and needs a reusable asset inventory before planning the edit.

This skill should create the asset mother file for the B-roll side of the workflow.

Default output:

  • broll-catalog.json

Optional supporting outputs:

  • contact sheets
  • frame manifests
  • markdown review summaries

Use For

  • organizing a B-roll folder into a reusable catalog
  • tagging B-roll by semantic meaning instead of filename only
  • identifying the best usable ranges within longer B-roll clips
  • separating strong proof clips from weak filler clips
  • preparing assets for later beat-to-B-roll matching

Trigger Signals

Use this skill when the user asks for things like:

  • 先整理一下这些 B-roll 素材
  • 给这些素材打标签
  • 哪些素材适合做 proof
  • 给我一个可复用的 B-roll 素材表
  • 先把素材库建起来

Do not use this skill when the user already has a good catalog and needs final beat matching.

Route that to:

  • skills/40-creative/b-roll-family/broll-match-engine

Read These References

  • family architecture: ../references/skill-architecture.md
  • shared contracts: ../references/contracts.md

Use these existing local skills when helpful:

  • skills/40-creative/frame-extraction
  • a dedicated visual analysis workflow

Core Principle

Do not catalog assets only by what is literally visible.

Also capture:

  • what the asset proves
  • what edit role it can play
  • how long it stays fresh on screen
  • whether it is strong enough for primary proof or only support

The same clip may be:

  • strong proof
  • weak proof but good transition cover
  • pure pace reset
  • UI demo

depending on how it is used.

Required Inputs

At least one of:

  • local folder of B-roll files
  • manifest of B-roll files
  • list of local file paths

Optional but valuable:

  • campaign context
  • transcript or script
  • target platform
  • known proof goals

Workflow

1. Recover the asset set

Build the working file list from:

  • folder scan
  • manifest
  • explicit file list

Preserve local paths.

2. Inspect the assets

For each asset, capture:

  • media type
  • duration if video
  • literal description
  • strongest usable ranges
  • semantic tags
  • support roles
  • visual risks

Use lightweight extraction or contact-sheet generation where helpful.

3. Judge edit usefulness

For each asset, decide:

  • is it primary proof, supporting proof, or filler
  • what claims it can support
  • whether it fits 9:16, 16:9, or both
  • whether text or UI is readable enough

4. Package the catalog

Build broll-catalog.json using the shared contract.

The catalog should be reusable across multiple edit runs.

Minimal Script

First implementation script:

  • scripts/run_build_broll_catalog.mjs

Current first-version behavior:

  • scans a local folder recursively
  • keeps video and image assets
  • uses ffprobe for duration and dimensions
  • reads same-basename .md sidecars when present
  • infers conservative semantic tags and support roles from filename and sidecar text
  • writes broll-catalog.json

Example:

node ${CLAUDE_SKILL_DIR}/scripts/run_build_broll_catalog.mjs \
  --input-dir /abs/path/to/b-roll-source \
  --output <work-folder>/broll-catalog.json

Release-Shell Execution Contract

  • keep folder scans, contact-sheet inputs, frame manifests, and intermediate catalog builds under <work-folder>/.postplus/broll-catalog-builder/
  • keep only final user-facing broll-catalog.json or review exports outside .postplus/
  • start with a bounded first pass on one folder or shortlist before broader cataloging
  • if ffprobe or ffmpeg is missing, the user's agent should proactively install the ffmpeg package with the host package manager already present on the machine before continuing
  • rerun direct checks such as ffprobe -version and ffmpeg -version after installation
  • if installation or verification fails, stop immediately instead of switching to ad hoc shell glue

Output Standard

The catalog is good if a downstream matcher can answer:

  • what assets exist
  • which claims they support
  • which ones are actually strong
  • where the useful cut ranges are

If the output is only a file list with vague tags, it is not enough.

First-Version Boundary

Prefer:

  • local file scanning
  • ffmpeg metadata
  • frame extraction when needed
  • markdown and JSON packaging

Do not require:

  • heavy CV pipelines
  • perfect object recognition
  • fully automatic clip scoring without review

Review Rule

When confidence is low, say so.

Do not pretend a weak or generic clip is strong proof footage.

It is better to mark an asset as:

  • generic filler

than to overstate its usefulness.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.35%
按下载量换算68

Claude

27.13%
按下载量换算47

Cursor

19.1%
按下载量换算33

Gemini CLI

9.86%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/postplusai/postplus-skills --skill broll-catalog-builder 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills