Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions ui/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -4000,6 +4000,17 @@ svg {
flex: 1;
}

.tool-override-warning {
margin: 0.35rem 0 0.45rem;
padding: 0.45rem 0.55rem;
border: 1px solid rgba(202, 138, 4, 0.35);
border-radius: 0.375rem;
background: rgba(202, 138, 4, 0.12);
color: var(--text-secondary);
font-size: 0.6875rem;
line-height: 1.35;
}

.tool-override-suboption {
padding-left: 1rem;
justify-content: flex-start;
Expand Down
3 changes: 2 additions & 1 deletion ui/src/vue/components/ChatInterface.vue
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,8 @@ const toolOverrideCount = computed(() => Object.keys(toolOverrides.value).length

const orchestratorPseudoTool = {
name: "orchestrator",
summary: "Shelley orchestrator mode (delegates to subagents).",
summary:
"Advanced mode: the main agent delegates execution to subagents instead of using shell/file tools directly.",
default_on: false,
};
const toolOverrideList = computed(() => [orchestratorPseudoTool, ...availableTools.value]);
Expand Down
8 changes: 8 additions & 0 deletions ui/src/vue/components/ChatStatusContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,14 @@
</button>
</div>
</div>
<div
v-if="tool.name === 'orchestrator' && toolOverrides['orchestrator'] === 'on'"
class="tool-override-warning"
>
Orchestrator changes the conversation mode: the main agent will plan and delegate
work to subagents, and will not run shell or edit files directly. Leave this off
for normal coding sessions.
</div>
<div
v-if="tool.name === 'orchestrator' && toolOverrides['orchestrator'] === 'on'"
class="tool-override-row tool-override-suboption"
Expand Down