feat: add set_status MCP tool and status field to whoami/dashboard (closes #325)
This commit is contained in:
parent
6f3b56ad84
commit
fe2933b213
8 changed files with 170 additions and 16 deletions
|
|
@ -727,6 +727,14 @@
|
|||
}
|
||||
body.append(head);
|
||||
|
||||
// ── agent status text ─────────────────────────────────────────
|
||||
if (c.status_text) {
|
||||
body.append(el('div', { class: 'agent-status', title: 'agent self-reported status' },
|
||||
el('span', { class: 'status-icon' }, '◈ '),
|
||||
c.status_text,
|
||||
));
|
||||
}
|
||||
|
||||
// ── action buttons ───────────────────────────────────────────
|
||||
const actions = el('div', { class: 'actions' });
|
||||
if (c.running) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue