consistenly refer to coding agents and agent configurations rather than profiles and executors in user facing text (#634)
This commit is contained in:
committed by
GitHub
parent
15eae338fa
commit
08be5c060c
@@ -84,7 +84,7 @@ export function OnboardingDialog({ open, onComplete }: OnboardingDialogProps) {
|
|||||||
Choose Your Coding Agent
|
Choose Your Coding Agent
|
||||||
</h2>
|
</h2>
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
<Label htmlFor="profile">Default Profile</Label>
|
<Label htmlFor="profile">Default Agent</Label>
|
||||||
<div className="flex gap-2">
|
<div className="flex gap-2">
|
||||||
<Select
|
<Select
|
||||||
value={profile.executor}
|
value={profile.executor}
|
||||||
|
|||||||
@@ -413,7 +413,7 @@ export function ProjectFormFields({
|
|||||||
/>
|
/>
|
||||||
<p className="text-sm text-muted-foreground">
|
<p className="text-sm text-muted-foreground">
|
||||||
This script will run after creating the worktree and before the
|
This script will run after creating the worktree and before the
|
||||||
executor starts. Use it for setup tasks like installing
|
coding agent starts. Use it for setup tasks like installing
|
||||||
dependencies or preparing the environment.
|
dependencies or preparing the environment.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ export function AttemptHeaderCard({
|
|||||||
{attemptNumber}/{totalAttempts}
|
{attemptNumber}/{totalAttempts}
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<span className="text-secondary-foreground">Profile · </span>
|
<span className="text-secondary-foreground">Agent · </span>
|
||||||
{selectedAttempt?.executor}
|
{selectedAttempt?.executor}
|
||||||
</p>
|
</p>
|
||||||
{selectedAttempt?.branch && (
|
{selectedAttempt?.branch && (
|
||||||
|
|||||||
@@ -159,7 +159,7 @@ function ProcessesTab({ attemptId }: ProcessesTabProps) {
|
|||||||
)}
|
)}
|
||||||
{
|
{
|
||||||
<p className="text-sm text-muted-foreground mt-1">
|
<p className="text-sm text-muted-foreground mt-1">
|
||||||
Profile:{' '}
|
Agent:{' '}
|
||||||
{process.executor_action.typ.type ===
|
{process.executor_action.typ.type ===
|
||||||
'CodingAgentInitialRequest' ||
|
'CodingAgentInitialRequest' ||
|
||||||
process.executor_action.typ.type ===
|
process.executor_action.typ.type ===
|
||||||
|
|||||||
@@ -388,7 +388,7 @@ function CurrentAttempt({
|
|||||||
<div className="grid grid-cols-2 gap-3 items-start @md:flex @md:items-start">
|
<div className="grid grid-cols-2 gap-3 items-start @md:flex @md:items-start">
|
||||||
<div className="min-w-0">
|
<div className="min-w-0">
|
||||||
<div className="text-xs font-medium text-muted-foreground uppercase tracking-wide mb-1">
|
<div className="text-xs font-medium text-muted-foreground uppercase tracking-wide mb-1">
|
||||||
Profile
|
Agent
|
||||||
</div>
|
</div>
|
||||||
<div className="text-sm font-medium">{selectedAttempt.executor}</div>
|
<div className="text-sm font-medium">{selectedAttempt.executor}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -515,7 +515,7 @@ export function AgentSettings() {
|
|||||||
<div className="space-y-4">
|
<div className="space-y-4">
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
<Label htmlFor="profiles-editor">
|
<Label htmlFor="profiles-editor">
|
||||||
Profiles Configuration (JSON)
|
Agent Configuration (JSON)
|
||||||
</Label>
|
</Label>
|
||||||
<JSONEditor
|
<JSONEditor
|
||||||
id="profiles-editor"
|
id="profiles-editor"
|
||||||
@@ -547,7 +547,7 @@ export function AgentSettings() {
|
|||||||
{profilesSaving && (
|
{profilesSaving && (
|
||||||
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
||||||
)}
|
)}
|
||||||
Save Executor Configurations
|
Save Agent Configurations
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -191,7 +191,7 @@ export function GeneralSettings() {
|
|||||||
</CardHeader>
|
</CardHeader>
|
||||||
<CardContent className="space-y-4">
|
<CardContent className="space-y-4">
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
<Label htmlFor="executor">Default Executor Profile</Label>
|
<Label htmlFor="executor">Default Agent Configuration</Label>
|
||||||
<div className="grid grid-cols-2 gap-2">
|
<div className="grid grid-cols-2 gap-2">
|
||||||
<Select
|
<Select
|
||||||
value={config.executor_profile?.executor ?? ''}
|
value={config.executor_profile?.executor ?? ''}
|
||||||
@@ -296,7 +296,7 @@ export function GeneralSettings() {
|
|||||||
})()}
|
})()}
|
||||||
</div>
|
</div>
|
||||||
<p className="text-sm text-muted-foreground">
|
<p className="text-sm text-muted-foreground">
|
||||||
Choose the default executor profile to use when creating a task
|
Choose the default agent configuration to use when creating a task
|
||||||
attempt.
|
attempt.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user