GitHunt
LE

leszko/scope-plugin-ui

scope-plugin-ui

Scope plugin providing a passthrough pipeline for UI development and testing. The pipeline returns the input video unchanged—no models, no generation.

Structure mirrors scope-ltx-2: same entry point pattern, register_pipelines hook, and minimal dependencies.

Pipeline

  • ID: plugin-ui
  • Behavior: Passthrough (input video → output video, no processing)
  • Mode: Video only
  • Models: None

Install

From the Scope app directory:

DAYDREAM_SCOPE_PREVIEW=1 uv run daydream-scope install /home/user/scope-plugin-ui

Or with a local path that works from your Scope checkout:

DAYDREAM_SCOPE_PREVIEW=1 uv run daydream-scope install ../scope-plugin-ui

Check that the plugin is loaded:

DAYDREAM_SCOPE_PREVIEW=1 uv run daydream-scope plugins
DAYDREAM_SCOPE_PREVIEW=1 uv run daydream-scope pipelines

The plugin-ui pipeline should appear in the pipeline list and in the Settings panel.

Development

Install in editable mode from the Scope directory:

cd /path/to/scope
uv run pip install -e /home/user/scope-plugin-ui

To use a local Scope checkout instead of the git dependency, override in pyproject.toml:

[tool.uv.sources]
daydream-scope = { path = "/path/to/scope" }

The plugin imports scope.core and scope.core.pipelines for the interface, process helpers, and base schema.

License

Same terms as Scope.

Languages

Python100.0%

Contributors

Created January 27, 2026
Updated January 27, 2026
leszko/scope-plugin-ui | GitHunt