Add Project Home, Auth Bridge, shared auth token, and Tier-1 polish
Project Home (DESIGN-REVIEW §B2): the project is promoted from a 280px
sidebar card to a first-class main-area view. ProjectCard.tsx (1,257
lines) is replaced by a select-only ProjectRow plus tabs for Overview,
Sessions, Automation, Config and Files. The PortMappings, FileManager
and ContainerProgress modals are absorbed rather than reimplemented.
Config gains a Saved/Saving/Failed indicator — save-on-blur failures
previously reached only console.error.
Tier-1 polish (DESIGN-REVIEW §A): new elevation, muted-accent, disabled
and focus-ring tokens; a global :focus-visible ring with every
focus:outline-none removed; filled buttons moved to --accent-emphasis
and white-on-success toggles retired, fixing three WCAG AA failures
(2.1:1, 2.5:1, 2.4:1); a shared Modal primitive with role="dialog",
focus trap and restore, adopted by all remaining modals; status
indicators that carry a glyph and word rather than colour alone.
Ctrl+Shift+W closes a tab, deliberately not Ctrl+W — that is readline's
kill-word, used constantly in the terminal this app is built around.
Auth Bridge: a general loopback-callback bridge so browser logins run
inside a container (aws sso login, Concourse fly login, claude login)
can complete against the host browser. Listeners are discovered from
/proc/net/tcp{,6} — ss/netstat/lsof are absent from the image — bound on
host 127.0.0.1 only, and tunnelled in over the Docker API via socat,
which keeps working on Docker Desktop where container IPs are not
routable. Falls back to [::1] because Node resolves localhost to IPv6
first, so claude login often binds ::1 alone. Opt-in per project.
This extracts create_attached_exec() and moves the existing terminal
session path onto it, so there is one attached-exec implementation
rather than two.
Shared auth token: `claude setup-token` is run in a container, the token
is stored in the OS keychain and injected as CLAUDE_CODE_OAUTH_TOKEN
into Anthropic-backend projects. Contrary to the initial design note,
setup-token uses an Anthropic-hosted redirect and blocks on a stdin
paste prompt rather than a loopback callback, so a stdin command is
required for the flow to complete.
The token is never logged, never returned to the frontend, and is
redacted from the streamed output with a stateful matcher that withholds
any tail that could still grow into a secret. Change detection uses a
random rotation id rather than a hash, since a hash in a docker-inspect
readable label would be an offline verification oracle.
Frontend 33 -> 51 tests; Rust 34 tests. Both builds clean.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
+41
-4
@@ -101,9 +101,16 @@ Two viable options:
|
||||
### Option A — long-lived token injection (simple)
|
||||
|
||||
`claude setup-token` (verified present on 2.1.226: *"Set up a long-lived authentication
|
||||
token (requires Claude subscription)"*) returns a ~1-year OAuth token. Triple-C runs it
|
||||
once on the host, stores the token in the OS keychain via the existing `secure.rs`, and
|
||||
injects `CLAUDE_CODE_OAUTH_TOKEN` into every container that uses the Anthropic backend.
|
||||
token (requires Claude subscription)"*) returns a ~1-year OAuth token. Triple-C runs it in
|
||||
a running container, stores the token in the OS keychain via the existing `secure.rs`, and
|
||||
injects `CLAUDE_CODE_OAUTH_TOKEN` into every container on the Anthropic backend.
|
||||
|
||||
**Correction to an earlier assumption in this document.** `setup-token` does *not* start a
|
||||
loopback callback listener, so it does not need the Auth Bridge. Verified by running it
|
||||
under a pty: its `redirect_uri` is Anthropic-hosted
|
||||
(`https://platform.claude.com/oauth/code/callback`), the user copies a code off that page,
|
||||
and the CLI blocks at a `Paste code here if prompted >` prompt on **stdin**. A stdin path
|
||||
is therefore mandatory — the flow cannot complete without one.
|
||||
|
||||
- No routing, no ports, no proxy.
|
||||
- One auth event covers every project.
|
||||
@@ -111,6 +118,12 @@ injects `CLAUDE_CODE_OAUTH_TOKEN` into every container that uses the Anthropic b
|
||||
- Limits: token is subscription-scoped and expires annually; per the docs a `setup-token`
|
||||
token cannot drive Remote Control sessions or claude.ai connector fetches.
|
||||
|
||||
Change detection uses a **random rotation id** in the `triple-c.claude-token-version`
|
||||
label, not a hash of the token. Labels are readable by anything that can run
|
||||
`docker inspect`, so a hash would be an offline verification oracle — given a candidate
|
||||
token you could confirm it. A presence boolean would instead miss rotations and silently
|
||||
leave containers on a stale token.
|
||||
|
||||
### Option B — the Auth Bridge (general loopback-callback bridge)
|
||||
|
||||
Option A only solves Claude Code. The same problem affects every CLI that authenticates by
|
||||
@@ -187,4 +200,28 @@ the config volume by the entrypoint. Generalizes the pattern the MCP tab was rea
|
||||
3. **Stale model placeholders** — see "Not yet scheduled" above.
|
||||
|
||||
4. **Silent save failures.** Project config saves on blur; failures go only to
|
||||
`console.error`. No user-visible indication. Addressed in Phase 3.
|
||||
`console.error`. No user-visible indication. Fixed in Phase 3 — `useProjectSave`
|
||||
now renders a Saved / Saving / Save failed indicator and raises a toast.
|
||||
|
||||
---
|
||||
|
||||
## Known gaps left by Phase 2–3
|
||||
|
||||
- **`open_terminal_session` takes no command argument.** "Resume session" and
|
||||
"Manage in terminal" therefore open a bash tab and *type* the command after a
|
||||
fixed prompt delay. It works, but it is timing-dependent and will misfire on a
|
||||
slow container start. The fix is a `command: Option<String>` parameter on the
|
||||
Tauri command so the exec launches the process directly.
|
||||
- **Uptime is observed, not reported.** `get_container_info` returns a status enum
|
||||
with no start time, so Project Home records "running since" when the app *sees*
|
||||
the transition. A container already running when the app launches shows
|
||||
`● Running` with no elapsed time. Surfacing Docker's `State.StartedAt` would fix it.
|
||||
- **`lucide-react` was not adopted** (DESIGN-REVIEW Tier-1 #9) — no package-registry
|
||||
access in the build environment used for this cycle. The existing inline SVGs and
|
||||
text glyphs remain.
|
||||
- **The tab strip stayed in the TopBar** rather than moving onto the terminal panel's
|
||||
top edge. DESIGN-REVIEW §A6 asks for the move but its own §B2 layout diagram puts
|
||||
the tabs in the TopBar; the diagram won. Worth revisiting.
|
||||
- **`Ctrl+Shift+W`, not `Ctrl+W`, closes a tab.** Plain `Ctrl+W` is readline's
|
||||
`kill-word`, used constantly inside the terminal this app is built around;
|
||||
intercepting it globally would break word-erase in every shell.
|
||||
|
||||
Reference in New Issue
Block a user