Skip to main content
Glama

get_handoff_toolchain

Retrieve the handoff assembly toolchain source code to compile timeline anchors and assemble a finished video with ffmpeg. Returns script text for local execution.

Instructions

拿到素材交接包的装配工具链源码(compile_timeline.py 时间轴编译器 / assemble.sh ffmpeg 装配脚本)。免费。本工具只返回源码文本,不会在你机器上写文件——请自行保存到工作目录再执行。 compile_timeline.py 负责把「镜相对」的字幕/对白/音效锚点展开成你自己时间轴上的绝对时间码,并处理重叠转场引起的整体位移;assemble.sh 是从裸片到成片的完整 ffmpeg 装配基线(裁剪→规范化→拼接/xfade→配乐侧链→字幕→两 pass 母带)。依赖 ffmpeg(烧字幕需带 libass)、ffprobe、jq、python3。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
scriptNo要哪个;缺省 all

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.57

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full disclosure burden. It clearly states the tool only returns source text, will not write files on the user's machine, and lists runtime dependencies. It also explains what each script does, giving the agent an accurate behavioral model.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but well-structured: first sentence gives the core purpose and safety behavior, second details the two scripts, third lists dependencies. Every sentence earns its place with no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-required-parameter retrieval tool with no output schema, the description is complete: it states what is returned, what is not done, how to use the result, what the scripts do, and what external dependencies are required. An agent has enough to call it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% for the single optional `script` parameter, so the baseline is 3. The description adds value by explaining the roles of compile_timeline.py and assemble.sh, which helps the agent choose meaningful enum values. It does not explain fetch_pack.py, but the main toolchain files are covered.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: getting the handoff pack's assembly toolchain source code, naming the exact files (compile_timeline.py, assemble.sh). It also clarifies what the tool is not (it returns text, not a file write), which distinguishes it from sibling tools like save_handoff_toolchain.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context: use this when you need the toolchain source to save and run locally, and it explicitly tells the agent to save the returned text to the working directory before executing. It does not explicitly name alternatives or exclusion conditions, so it stops short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools