Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.vibrai.com/llms.txt

Use this file to discover all available pages before exploring further.

Get and set follow actions for clips.

Command line

follow-action get

Get follow actions for a clip
vibrai follow-action get <track> <scene>
track
required
Track number (1-based: 1, 2, … or first, second, …)
scene
required
Scene number (1-based: 1, 2, … or first, second, …)

follow-action set

Set follow actions for a clip
vibrai follow-action set <track> <scene> --json-data <JSON> --file <PATH>
track
required
Track number (1-based: 1, 2, … or first, second, …)
scene
required
Scene number (1-based: 1, 2, … or first, second, …)
--json-data
FollowActionConfig as JSON
--file
Path to JSON file containing FollowActionConfig

MCP tools

get_follow_actions

Get the follow-action configuration for a clip.
{
  "tool": "get_follow_actions",
  "arguments": {
    "track_id": "<String>",
    "scene_index": "<String>"
  }
}
track_id
String
required
Track number (1-based: 1, 2, … or ‘first’, ‘second’, …)
scene_index
String
required
Scene number (1-based: 1, 2, … or ‘first’, ‘second’, …)

set_follow_actions

Set the follow-action configuration for a clip.
{
  "tool": "set_follow_actions",
  "arguments": {
    "track_id": "<String>",
    "scene_index": "<String>",
    "config": "<FollowActionConfig>"
  }
}
track_id
String
required
Track number (1-based: 1, 2, … or ‘first’, ‘second’, …)
scene_index
String
required
Scene number (1-based: 1, 2, … or ‘first’, ‘second’, …)
config
FollowActionConfig
required
Follow-action configuration.