poc: tangent projects - #2660
Draft
maxy-shpfy wants to merge 2 commits into
Draft
Conversation
🎩 PreviewA preview build has been created at: |
Collaborator
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite. This stack of pull requests is managed by Graphite. Learn more about stacking. |
maxy-shpfy
force-pushed
the
08-19-poc_tangent_projects
branch
8 times, most recently
from
August 25, 2026 00:14
f3f8164 to
31e0536
Compare
maxy-shpfy
force-pushed
the
08-19-poc_tangent_projects
branch
from
August 25, 2026 04:28
31e0536 to
1669edd
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Description
Introduces the Tangent Shell workspace — a beta-flagged area where users collaborate with Tangent agents to build, improve, and debug ML pipelines. The feature is gated behind a new
tangent-shellfeature flag and adds a full project management experience including:/tangent) with a prompt composer to create new projects and a grid of existing ones./tangent/$projectId) with a docked sidebar (Sessions, Agents, Assets, Project Resources), a tabbed chat pane, and a resizable Dynamic Workarea that hosts embedded pipeline editors and artifact viewers side-by-side.EmbeddedPipelineEditor) that each host their own remote-env agent, allowing Tangent to drive multiple open pipelines simultaneously.TangentProjectAgentProvider) that registers workarea RPC tools (open_pipeline,list_workarea_tabs,close_workarea_tab) and a routing bridge that forwards editor commands to whichever pipeline tab is active.tangentStorage) storing projects, sessions, resources, and a backlog.useTangentSettingshook that moves the Tangent base URL from a build-time env var (VITE_TANGENT_BASE_URL) into localStorage, letting users point tangle-ui at any Tangent origin without rebuilding. A corresponding settings UI is added to Agent Settings.TangentEmbedProviderthat replaces the upstreamTangentProvider, applying socket config synchronously so Socket.IO reads the correct origin before chat elements subscribe. It also handles mounted-prefix base URLs (e.g./tangent) by splitting them intosocketUrl+socketPath.src/routes/v2/shared/tangent/:CloseableTabTrigger,TangentChatPane,useTangentSessionTabs,socketConfig, andconstants.@tangent/embed-react,@tangent/remote-subagent, and@tangent/shareddependencies switched from localfile:paths to pinned GitHub tarball references.Related Issue and Pull requests
Type of Change
Checklist
Screenshots (if applicable)
Test Instructions
tangent-shellbeta flag in Settings → Feature Flags./tangentand create a project using the prompt composer.http://localhost:5173.tangent-embed-chatis enabled) still works and is unaffected by the new workspace.Additional Comments
The
VITE_TANGENT_BASE_URLbuild-time constant has been removed. Any deployment that previously set this env var must instead configure the URL via the new Agent Settings UI or localStorage keytangle.tangent.config.