paperclip/ui/src/pages
Devin Foley e4995bbb1c
Add SSH environment support (#4358)
## Thinking Path

> - Paperclip orchestrates AI agents for zero-human companies
> - The environments subsystem already models execution environments,
but before this branch there was no end-to-end SSH-backed runtime path
for agents to actually run work against a remote box
> - That meant agents could be configured around environment concepts
without a reliable way to execute adapter sessions remotely, sync
workspace state, and preserve run context across supported adapters
> - We also need environment selection to participate in normal
Paperclip control-plane behavior: agent defaults, project/issue
selection, route validation, and environment probing
> - Because this capability is still experimental, the UI surface should
be easy to hide and easy to remove later without undoing the underlying
implementation
> - This pull request adds SSH environment execution support across the
runtime, adapters, routes, schema, and tests, then puts the visible
environment-management UI behind an experimental flag
> - The benefit is that we can validate real SSH-backed agent execution
now while keeping the user-facing controls safely gated until the
feature is ready to come out of experimentation

## What Changed

- Added SSH-backed execution target support in the shared adapter
runtime, including remote workspace preparation, skill/runtime asset
sync, remote session handling, and workspace restore behavior after
runs.
- Added SSH execution coverage for supported local adapters, plus remote
execution tests across Claude, Codex, Cursor, Gemini, OpenCode, and Pi.
- Added environment selection and environment-management backend support
needed for SSH execution, including route/service work, validation,
probing, and agent default environment persistence.
- Added CLI support for SSH environment lab verification and updated
related docs/tests.
- Added the `enableEnvironments` experimental flag and gated the
environment UI behind it on company settings, agent configuration, and
project configuration surfaces.

## Verification

- `pnpm exec vitest run
packages/adapters/claude-local/src/server/execute.remote.test.ts
packages/adapters/cursor-local/src/server/execute.remote.test.ts
packages/adapters/gemini-local/src/server/execute.remote.test.ts
packages/adapters/opencode-local/src/server/execute.remote.test.ts
packages/adapters/pi-local/src/server/execute.remote.test.ts`
- `pnpm exec vitest run server/src/__tests__/environment-routes.test.ts`
- `pnpm exec vitest run
server/src/__tests__/instance-settings-routes.test.ts`
- `pnpm exec vitest run ui/src/lib/new-agent-hire-payload.test.ts
ui/src/lib/new-agent-runtime-config.test.ts`
- `pnpm -r typecheck`
- `pnpm build`
- Manual verification on a branch-local dev server:
  - enabled the experimental flag
  - created an SSH environment
  - created a Linux Claude agent using that environment
- confirmed a run executed on the Linux box and synced workspace changes
back

## Risks

- Medium: this touches runtime execution flow across multiple adapters,
so regressions would likely show up in remote session setup, workspace
sync, or environment selection precedence.
- The UI flag reduces exposure, but the underlying runtime and route
changes are still substantial and rely on migration correctness.
- The change set is broad across adapters, control-plane services,
migrations, and UI gating, so review should pay close attention to
environment-selection precedence and remote workspace lifecycle
behavior.

## Model Used

- OpenAI Codex via Paperclip's local Codex adapter, GPT-5-class coding
model with tool use and code execution in the local repo workspace. The
local adapter does not surface a more specific public model version
string in this branch workflow.

## Checklist

- [x] I have included a thinking path that traces from project context
to this change
- [x] I have specified the model used (with version and capability
details)
- [x] I have checked ROADMAP.md and confirmed this PR does not duplicate
planned core work
- [x] I have run tests locally and they pass
- [x] I have added or updated tests where applicable
- [ ] If this change affects the UI, I have included before/after
screenshots
- [x] I have updated relevant documentation to reflect my changes
- [x] I have considered and documented any risks above
- [x] I will address all Greptile and reviewer comments before
requesting merge
2026-04-23 19:15:22 -07:00
..
Activity.tsx [codex] Harden heartbeat scheduling and runtime controls (#4223) 2026-04-21 12:24:11 -05:00
AdapterManager.tsx feat(adapters): add capability flags to ServerAdapterModule (#3540) 2026-04-15 07:10:52 -05:00
AgentDetail.tsx [codex] Harden heartbeat scheduling and runtime controls (#4223) 2026-04-21 12:24:11 -05:00
Agents.tsx [codex] Polish issue board workflows (#4224) 2026-04-21 12:25:34 -05:00
ApprovalDetail.tsx fix: keep runtime UI changes self-contained 2026-04-10 22:36:45 -05:00
Approvals.tsx Add generic issue-linked board approvals 2026-04-06 21:24:38 -05:00
Auth.tsx feat: implement multi-user access and invite flows (#3784) 2026-04-17 09:44:19 -05:00
BoardClaim.tsx feat(ui): reconcile backup UI changes with current routing and interaction features 2026-03-02 16:44:03 -06:00
CliAuth.tsx Add browser-based board CLI auth flow 2026-03-23 08:46:05 -05:00
Companies.tsx ui: apply interface polish from design article review 2026-03-11 08:20:24 -05:00
CompanyAccess.test.tsx [codex] Add access cleanup and user profile page (#4088) 2026-04-20 06:10:20 -05:00
CompanyAccess.tsx Add SSH environment support (#4358) 2026-04-23 19:15:22 -07:00
CompanyExport.tsx Harden API route authorization boundaries (#4122) 2026-04-20 10:56:48 -05:00
CompanyImport.tsx [codex] Harden execution reliability and heartbeat tooling (#3679) 2026-04-14 13:34:52 -05:00
CompanyInvites.test.tsx feat: implement multi-user access and invite flows (#3784) 2026-04-17 09:44:19 -05:00
CompanyInvites.tsx feat: implement multi-user access and invite flows (#3784) 2026-04-17 09:44:19 -05:00
CompanySettings.tsx Add SSH environment support (#4358) 2026-04-23 19:15:22 -07:00
CompanySkills.tsx [codex] Harden execution reliability and heartbeat tooling (#3679) 2026-04-14 13:34:52 -05:00
Costs.tsx feat(costs): add billing, quota, and budget control plane 2026-03-16 15:11:01 -05:00
Dashboard.tsx [codex] Harden heartbeat scheduling and runtime controls (#4223) 2026-04-21 12:24:11 -05:00
DesignGuide.tsx Add first-class issue references (#4214) 2026-04-21 10:02:52 -05:00
ExecutionWorkspaceDetail.tsx [codex] Polish issue board workflows (#4224) 2026-04-21 12:25:34 -05:00
GoalDetail.test.tsx fix goal view properties toggle 2026-03-30 12:49:22 +05:30
GoalDetail.tsx fix goal view properties toggle 2026-03-30 12:49:22 +05:30
Goals.tsx feat(ui): reconcile backup UI changes with current routing and interaction features 2026-03-02 16:44:03 -06:00
Inbox.test.tsx [codex] Add run liveness continuations (#4083) 2026-04-20 06:01:49 -05:00
Inbox.tsx [codex] Polish issue board workflows (#4224) 2026-04-21 12:25:34 -05:00
InstanceAccess.tsx [codex] Add access cleanup and user profile page (#4088) 2026-04-20 06:10:20 -05:00
InstanceExperimentalSettings.tsx Add SSH environment support (#4358) 2026-04-23 19:15:22 -07:00
InstanceGeneralSettings.tsx [codex] Polish issue board workflows (#4224) 2026-04-21 12:25:34 -05:00
InstanceSettings.tsx Address Greptile review on agent runtime PR 2026-03-23 17:18:17 -05:00
InviteLanding.test.tsx feat: implement multi-user access and invite flows (#3784) 2026-04-17 09:44:19 -05:00
InviteLanding.tsx feat: implement multi-user access and invite flows (#3784) 2026-04-17 09:44:19 -05:00
InviteUxLab.test.tsx feat: implement multi-user access and invite flows (#3784) 2026-04-17 09:44:19 -05:00
InviteUxLab.tsx feat: implement multi-user access and invite flows (#3784) 2026-04-17 09:44:19 -05:00
IssueChatUxLab.tsx Refine issue workflow surfaces and live updates 2026-04-09 10:26:17 -05:00
IssueDetail.test.tsx [codex] Add issue subtree pause, cancel, and restore controls (#4332) 2026-04-23 14:51:46 -05:00
IssueDetail.tsx [codex] Add issue subtree pause, cancel, and restore controls (#4332) 2026-04-23 14:51:46 -05:00
Issues.test.tsx [codex] improve issue and routine UI responsiveness (#3744) 2026-04-15 15:54:05 -05:00
Issues.tsx [codex] Polish issue board workflows (#4224) 2026-04-21 12:25:34 -05:00
JoinRequestQueue.tsx feat: implement multi-user access and invite flows (#3784) 2026-04-17 09:44:19 -05:00
MyIssues.tsx Remove priority icon from issue rows across the app 2026-03-23 16:57:27 -05:00
NewAgent.tsx Add SSH environment support (#4358) 2026-04-23 19:15:22 -07:00
NotFound.tsx ui: add company-aware not found handling 2026-03-10 16:38:46 -05:00
Org.tsx feat(ui): reconcile backup UI changes with current routing and interaction features 2026-03-02 16:44:03 -06:00
OrgChart.test.tsx [codex] Polish issue board workflows (#4224) 2026-04-21 12:25:34 -05:00
OrgChart.tsx [codex] Improve mobile org chart navigation (#4127) 2026-04-20 10:35:33 -05:00
PluginManager.tsx [codex] Harden execution reliability and heartbeat tooling (#3679) 2026-04-14 13:34:52 -05:00
PluginPage.tsx Clarify plugin authoring and external dev workflow 2026-03-14 10:40:21 -05:00
PluginSettings.tsx Add plugin framework and settings UI 2026-03-13 16:22:34 -05:00
ProfileSettings.test.tsx feat: implement multi-user access and invite flows (#3784) 2026-04-17 09:44:19 -05:00
ProfileSettings.tsx feat: implement multi-user access and invite flows (#3784) 2026-04-17 09:44:19 -05:00
ProjectDetail.tsx [codex] Improve workspace navigation and runtime UI (#4089) 2026-04-20 06:14:32 -05:00
Projects.tsx Add archive project button and filter archived projects from selectors 2026-03-15 14:30:33 -05:00
ProjectWorkspaceDetail.tsx [codex] Respect manual workspace runtime controls (#4125) 2026-04-20 10:39:37 -05:00
RoutineDetail.tsx [codex] Polish issue and operator workflow UI (#4090) 2026-04-20 06:16:41 -05:00
Routines.test.tsx [codex] Harden execution reliability and heartbeat tooling (#3679) 2026-04-14 13:34:52 -05:00
Routines.tsx [codex] Polish issue and operator workflow UI (#4090) 2026-04-20 06:16:41 -05:00
RunTranscriptUxLab.tsx Tighten command transcript rows and dashboard card 2026-03-11 13:14:08 -05:00
UserProfile.tsx [codex] Polish issue board workflows (#4224) 2026-04-21 12:25:34 -05:00
Workspaces.tsx [codex] Improve workspace navigation and runtime UI (#4089) 2026-04-20 06:14:32 -05:00