diff options
Diffstat (limited to 'web/index.html')
| -rw-r--r-- | web/index.html | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/web/index.html b/web/index.html index d56dcb3..19cba2c 100644 --- a/web/index.html +++ b/web/index.html @@ -11,8 +11,15 @@ <body> <header> <h1>Claudomator</h1> - <button id="btn-start-next" class="btn-secondary">Start Next</button> - <button id="btn-new-task" class="btn-primary">New Task</button> + <div class="header-actions"> + <select id="select-agent" class="agent-selector"> + <option value="auto">Auto</option> + <option value="claude">Claude</option> + <option value="gemini">Gemini</option> + </select> + <button id="btn-start-next" class="btn-secondary">Start Next</button> + <button id="btn-new-task" class="btn-primary">New Task</button> + </div> </header> <nav class="tab-bar"> <button class="tab active" data-tab="queue" title="Queue">⏳</button> |
