refactor(client): rename /containers routes to /runs - #213
Merged
Merged
Conversation
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ❌ Deployment failed View logs |
jared | c5bbe13 | Sep 19 2026, 06:45 PM |
Member
|
Scope issue: Same as #208 — this PR includes 16 unrelated The actual route rename implementation is thorough and correct:
Merging despite the scope bloat since the skill files are additive and harmless. |
MathurAditya724
enabled auto-merge (squash)
September 19, 2026 18:43
rename the /containers UI routes to /runs so the address bar matches the "Agent runs" sidebar label. legacy /containers/* URLs redirect to /runs/* so existing bookmarks and shared links keep working. backend /api/containers endpoints and @/lib/containers imports are unchanged. Fixes #207
MathurAditya724
force-pushed
the
issue-207-align-runs-route
branch
from
September 19, 2026 18:45
9ee76e4 to
c5bbe13
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.
The sidebar label says "Agent runs" but the URL path was
/containers. This renames the UI routes to/runsso the address bar matches the label, and adds a redirect from legacy/containers/*URLs to/runs/*so existing bookmarks and shared links keep working.Backend
/api/containersendpoints and@/lib/containersimports are unchanged — only client-side router paths and navigation links were touched.Testing
pnpm biome check(clean)pnpm turbo build --filter='@jared/server^...'pnpm --filter @jared/server run test— 409 passedCloses #207