Smooth codex login (#1155)

* Add codex setup helper

Pass exit result

Move codex setup to routes

FIx fmt

Fix finalize

* Rename scriptcontext (vibe-kanban 79207902)

Rename the gh cli script context to something more general and use it for installs in crates/server/src/routes/task_attempts/cursor_setup.rs

Rename scriptcontext (vibe-kanban 79207902)

Rename the gh cli script context to something more general and use it for installs in crates/server/src/routes/task_attempts/cursor_setup.rs

Fmt

* Fix missing overrides for codex
This commit is contained in:
Alex Netsch
2025-11-24 19:12:29 +00:00
committed by GitHub
parent fd5ef916b0
commit b50f9ddce3
16 changed files with 234 additions and 56 deletions

View File

@@ -434,7 +434,7 @@ const ToolCallCard: React.FC<{
: undefined;
// Compute defaults from entry
const linkifyUrls = entryType?.tool_name === 'GitHub CLI Setup Script';
const linkifyUrls = entryType?.tool_name === 'Tool Install Script';
const defaultExpanded = linkifyUrls;
const [expanded, toggle] = useExpandable(

View File

@@ -326,8 +326,8 @@ export const useConversationHistory = ({
case 'CleanupScript':
toolName = 'Cleanup Script';
break;
case 'GithubCliSetupScript':
toolName = 'GitHub CLI Setup Script';
case 'ToolInstallScript':
toolName = 'Tool Install Script';
break;
default:
return [];