06
Nov
Today, I'm going to show you how to navigate a code workspace with lsproxy, an open-source dev container for code exploration workflows like AI coding agents. Installation and setup Download the python sdk. pip install lsproxy-sdk Enter fullscreen mode Exit fullscreen mode Pull and run the docker container. WORKSPACE_PATH is the absolute path to your code workspace (likely the repository root). docker pull agenticlabs/lsproxy Enter fullscreen mode Exit fullscreen mode docker run -p 4444:4444 -v $WORKSPACE_PATH:/mnt/workspace agenticlabs/lsproxy Enter fullscreen mode Exit fullscreen mode Set up the client in python. # First create the API client from lsproxy import ( Lsproxy,…