All your data in one place. You can see it in real time, collaborate with your team and AI agents, and extend every part of it — from pipeline steps to viewers to published packages.
Pipelines are something you can actually see — an entity tree, a node graph, and a real-time 3D viewer — instead of hidden scripts you have to run blind and hope worked.
Bring your team into the same workspace — teammates build pipelines together while AI agents propose steps, inspect results, and explain the data. You approve what ships.
Every part of LSD is open to extend. With the Python SDK, custom nodes, an embedded editor, and the Tool Store, you can build new pipeline steps, viewers, panels, and packages — then ship them to the community.
from lsdtools import shape, types
@shape(label="Smooth Cloud")
def smooth(inputs, radius: float = 0.5):
cloud = inputs.main
return cloud.smooth(radius=radius) # save → re-runs live, no restart
Visualize, extend and collaborate.