mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-29 06:31:32 +00:00
feat(kanban): orchestrator-driven auto-decomposition on triage (#27572)
* feat(kanban): orchestrator-driven auto-decomposition on triage
Closes the core gap in the kanban system: dropping a one-liner into Triage
now decomposes it into a graph of child tasks routed to specialist
profiles by description, matching teknium's original vision ("main
orchestrator splits/creates actual tasks, doles them out to each agent").
The build
---------
- hermes_cli/profiles.py: new `description` + `description_auto` fields
on ProfileInfo, persisted in <profile_dir>/profile.yaml. Helpers
read_profile_meta / write_profile_meta. `create_profile` accepts
optional description.
- hermes_cli/profile_describer.py: new module — auto-generate a 1-2
sentence description from a profile's skills + model + name via the
auxiliary LLM (`auxiliary.profile_describer`).
- hermes_cli/main.py: new `hermes profile create --description ...`
flag; new `hermes profile describe [name] [--text ... | --auto |
--all --auto]` subcommand.
- hermes_cli/kanban_db.py: new `decompose_triage_task` atomic helper —
creates N child tasks, links the root as a child of every leaf
(root waits for the whole graph), flips root `triage -> todo` with
orchestrator assignee, records an audit comment + `decomposed` event
in a single write_txn.
- hermes_cli/kanban_decompose.py: new module — calls the auxiliary LLM
(`auxiliary.kanban_decomposer`) with the profile roster + descriptions
to produce a JSON task graph, then invokes the DB helper. Rewrites
unknown assignees to the configured `kanban.default_assignee` (or
the active default profile) so a task NEVER lands with assignee=None.
Falls back to specify-style single-task promotion when the LLM
returns `fanout: false`.
- hermes_cli/kanban.py: new `hermes kanban decompose [task_id | --all]`
CLI verb.
- hermes_cli/config.py: new DEFAULT_CONFIG keys —
kanban.orchestrator_profile, kanban.default_assignee,
kanban.auto_decompose (default True), kanban.auto_decompose_per_tick
(default 3), auxiliary.kanban_decomposer, auxiliary.profile_describer.
- gateway/run.py: kanban dispatcher watcher now runs auto-decompose
before each `_tick_once`, capped by `auto_decompose_per_tick` so a
bulk-load of triage tasks doesn't burst-spend the aux LLM.
- plugins/kanban/dashboard/plugin_api.py: new endpoints —
GET /profiles (list roster + descriptions),
PATCH /profiles/<name> (set description, user-authored),
POST /profiles/<name>/describe-auto (LLM-generate),
POST /tasks/<id>/decompose (run decomposer),
GET/PUT /orchestration (orchestrator/default-assignee/auto-decompose
pickers, with resolved fallbacks echoed back).
- plugins/kanban/dashboard/dist/index.js: new OrchestrationPanel
collapsible — dropdowns for orchestrator profile and default
assignee, auto-decompose toggle, per-profile description editor with
Save and Auto-generate buttons. New ⚗ Decompose button next to
✨ Specify on triage-column task drawers.
Behavior
--------
- A task in Triage gets fanned out into a small DAG of child tasks.
Children with no internal parents flip to `ready` immediately
(parallel dispatch). Children with sibling parents wait. The root
stays alive as a parent of every child — when the whole graph
finishes, it promotes to `ready` and the orchestrator profile wakes
back up to judge completion (the "adds more tasks until done" part
of the original vision).
- `kanban.orchestrator_profile` unset -> falls back to the default
profile (whichever `hermes` launches with no -p flag).
- `kanban.default_assignee` unset -> same fallback. Tasks NEVER end
up unassigned.
- `kanban.auto_decompose=true` (default) runs the decomposer
automatically on dispatcher ticks; manual `hermes kanban decompose`
is always available.
Tests
-----
- tests/hermes_cli/test_kanban_decompose_db.py — 7 tests for the
atomic DB helper (status transitions, dep graph, audit trail,
validation errors).
- tests/hermes_cli/test_kanban_decompose.py — 6 tests for the
decomposer module (fanout, no-fanout fallback, unknown-assignee
rewrite, malformed-JSON resilience, no-aux-client path).
- tests/hermes_cli/test_profile_describer.py — 10 tests for
profile.yaml r/w + the LLM auto-describer (yaml corrupt tolerance,
user-vs-auto description protection, --overwrite, fallback parsing).
E2E
---
- CLI end-to-end: created profiles with descriptions, dropped a triage
task, mocked the aux LLM with a 3-task graph -> verified all three
children were created with the right assignees, the dependency
edges matched the LLM's graph, root flipped to todo gated by every
child, audit comment + `decomposed` event recorded.
- Dashboard end-to-end: started the dashboard against an isolated
HERMES_HOME, verified all four new endpoints via curl (profile
listing, PATCH for description, PUT for orchestration settings,
POST for decompose). Opened the UI in the browser, confirmed the
OrchestrationPanel renders with all three pickers + the per-profile
description editor, typed a description, clicked Save, verified
~/.hermes/profile.yaml was written. Clicked Decompose on the triage
card and confirmed the inline error message surfaced as designed
("no auxiliary client configured").
* feat(kanban): surface decompose mode (Auto/Manual) as a one-click pill
The auto/manual toggle already existed as kanban.auto_decompose (default
true), but it was buried inside the collapsed Orchestration settings
panel — users couldn't tell at a glance which mode they were in. This
hoists it to a pill at the top of the kanban page so the state is always
visible and one click flips it.
UX
- New "⚗ Decompose: AUTO|MANUAL" pill in the kanban header. Emerald
styling when Auto is on (the default), muted/gray when Manual.
- Pill is visible both in the collapsed AND expanded Orchestration
settings views so context is preserved when the user opens the panel.
- Tooltip explains both states + what clicking does.
- Renamed the in-panel "Auto-decompose on triage / Enabled" checkbox
to "Decompose mode / Auto (default) | Manual" for language parity
with the pill.
Behavior preserved
- Default remains Auto (kanban.auto_decompose=true).
- Manual mode restores pre-PR behavior: triage tasks stay in triage
until the user clicks ⚗ Decompose on each card (or runs
`hermes kanban decompose <id>`).
Implementation
- plugins/kanban/dashboard/dist/index.js: load /orchestration on mount
(not just on expand) so the collapsed pill reflects real state.
Render mode pill in both collapsed and expanded headers. Reuses the
existing PUT /api/plugins/kanban/orchestration endpoint — no new
backend, no new tests required.
E2E verified
- Pill renders as "⚗ Decompose: AUTO" on page load (default).
- One click flips to "⚗ Decompose: MANUAL" with muted styling.
- config.yaml on disk shows auto_decompose: false after the flip.
- Second click round-trips back to Auto; config.yaml flips to true.
* feat(kanban): rename mode pill to "Orchestration: Auto/Manual"
Per Teknium feedback — "Decompose" was too implementation-specific.
"Orchestration" is the user-facing concept (the whole pitch is the
orchestrator profile routing work), and the pill is the front door to it.
- Pill text: "Orchestration: Auto" / "Orchestration: Manual" (title case,
no ⚗ prefix, no SHOUTY-CAPS for the mode value)
- In-panel checkbox label: "Orchestration mode" (was "Decompose mode")
- Tooltips updated to match
- No behavior change
* docs(kanban): document decompose, profile descriptions, orchestration mode
Brings the docs site up to parity with the PR. English build verified
locally (npx docusaurus build --locale en) — clean, no new broken links
or anchors. Pre-existing broken-link warnings (rl-training, llms.txt,
step-by-step-checklist, fallback-model) untouched.
- website/docs/reference/cli-commands.md
+ `hermes kanban decompose` action row in the action table, with
pointer to the Auto vs Manual orchestration section.
- website/docs/reference/profile-commands.md
+ `--description "<text>"` flag on `hermes profile create`.
+ Full `hermes profile describe` section: read, --text, --auto,
--overwrite, --all flags with examples.
- website/docs/user-guide/features/kanban.md (the big one)
+ Triage column intro rewritten around the Auto-decompose default
behavior, with pointer to the new Auto vs Manual section.
+ Status action row updated to mention both ⚗ Decompose and
✨ Specify on triage cards.
+ New "Auto vs Manual orchestration" section explaining the two
modes, how to flip them (pill, config), how routing-by-description
works, the no-None-assignee guarantee, plus a config knob table
(auto_decompose, auto_decompose_per_tick, orchestrator_profile,
default_assignee) and the two new auxiliary slots
(kanban_decomposer, profile_describer).
+ REST surface table gains 6 new endpoint rows: /tasks/:id/decompose,
/profiles (GET), /profiles/:name (PATCH), /profiles/:name/describe-auto,
/orchestration (GET + PUT).
- website/docs/user-guide/features/kanban-tutorial.md
+ Triage column blurb updated for Auto by default + Manual via the
pill, with cross-link to the Auto vs Manual orchestration section.
- website/docs/user-guide/profiles.md
+ Blank-profile flow now mentions --description and points to the
kanban routing model for context.
- website/docs/user-guide/configuration.md
+ `kanban_decomposer` and `profile_describer` added to the
`hermes model -> Configure auxiliary models` menu listing.
This commit is contained in:
parent
04b4f765cc
commit
1345dda0cf
19 changed files with 2698 additions and 3 deletions
359
plugins/kanban/dashboard/dist/index.js
vendored
359
plugins/kanban/dashboard/dist/index.js
vendored
|
|
@ -908,6 +908,7 @@
|
|||
return createNewBoard(payload).then(function () { setShowNewBoard(false); });
|
||||
},
|
||||
}) : null,
|
||||
h(OrchestrationPanel, null),
|
||||
h(AttentionStrip, {
|
||||
boardData,
|
||||
onOpen: setSelectedTaskId,
|
||||
|
|
@ -1386,6 +1387,288 @@
|
|||
}, "?");
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------
|
||||
// OrchestrationPanel — collapsible settings panel for the kanban
|
||||
// orchestrator (orchestrator profile picker, default assignee picker,
|
||||
// auto-decompose toggle, plus per-profile description editing with
|
||||
// auto-generate). Backed by /orchestration + /profiles endpoints.
|
||||
// ---------------------------------------------------------------------
|
||||
|
||||
function OrchestrationPanel() {
|
||||
const [expanded, setExpanded] = useState(false);
|
||||
const [settings, setSettings] = useState(null);
|
||||
const [profiles, setProfiles] = useState([]);
|
||||
const [busy, setBusy] = useState({});
|
||||
const [msg, setMsg] = useState(null);
|
||||
|
||||
const loadAll = useCallback(function () {
|
||||
Promise.all([
|
||||
SDK.fetchJSON(`${API}/orchestration`),
|
||||
SDK.fetchJSON(`${API}/profiles`),
|
||||
]).then(function (results) {
|
||||
setSettings(results[0] || null);
|
||||
setProfiles((results[1] && results[1].profiles) || []);
|
||||
setMsg(null);
|
||||
}).catch(function (err) {
|
||||
setMsg({ ok: false, text: "Failed to load: " + (err.message || String(err)) });
|
||||
});
|
||||
}, []);
|
||||
|
||||
useEffect(function () {
|
||||
// Load on mount so the collapsed pill shows the real mode without
|
||||
// requiring the user to expand the panel first.
|
||||
if (settings === null) loadAll();
|
||||
}, [settings, loadAll]);
|
||||
|
||||
const saveSettings = function (patch) {
|
||||
setMsg(null);
|
||||
return SDK.fetchJSON(`${API}/orchestration`, {
|
||||
method: "PUT",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify(patch),
|
||||
}).then(function (res) {
|
||||
setSettings(res);
|
||||
setMsg({ ok: true, text: "Settings saved." });
|
||||
return res;
|
||||
}).catch(function (err) {
|
||||
setMsg({ ok: false, text: "Save failed: " + (err.message || String(err)) });
|
||||
});
|
||||
};
|
||||
|
||||
const saveProfileDescription = function (name, description) {
|
||||
setBusy(function (b) { return Object.assign({}, b, { [name]: "save" }); });
|
||||
return SDK.fetchJSON(`${API}/profiles/${encodeURIComponent(name)}`, {
|
||||
method: "PATCH",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify({ description: description }),
|
||||
}).then(function () {
|
||||
loadAll();
|
||||
setMsg({ ok: true, text: `Description saved for ${name}.` });
|
||||
}).catch(function (err) {
|
||||
setMsg({ ok: false, text: "Save failed: " + (err.message || String(err)) });
|
||||
}).then(function () {
|
||||
setBusy(function (b) {
|
||||
const next = Object.assign({}, b); delete next[name]; return next;
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
const autoGenerateDescription = function (name, overwrite) {
|
||||
setBusy(function (b) { return Object.assign({}, b, { [name]: "auto" }); });
|
||||
return SDK.fetchJSON(`${API}/profiles/${encodeURIComponent(name)}/describe-auto`, {
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify({ overwrite: !!overwrite }),
|
||||
}).then(function (res) {
|
||||
if (res && res.ok) {
|
||||
loadAll();
|
||||
setMsg({ ok: true, text: `Auto-generated description for ${name}.` });
|
||||
} else {
|
||||
setMsg({
|
||||
ok: false,
|
||||
text: "Auto-generate failed: " + ((res && res.reason) || "unknown error"),
|
||||
});
|
||||
}
|
||||
}).catch(function (err) {
|
||||
setMsg({ ok: false, text: "Auto-generate failed: " + (err.message || String(err)) });
|
||||
}).then(function () {
|
||||
setBusy(function (b) {
|
||||
const next = Object.assign({}, b); delete next[name]; return next;
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
const headerLabel = expanded
|
||||
? "▾ Orchestration settings"
|
||||
: "▸ Orchestration settings";
|
||||
|
||||
// Mode pill — always visible (collapsed or expanded). One click flips
|
||||
// between Auto and Manual. Auto = dispatcher decomposes new triage tasks
|
||||
// every tick. Manual = pre-PR behavior, the user clicks ⚗ Decompose on
|
||||
// each triage card (or runs `hermes kanban decompose <id>`) and tasks
|
||||
// stay in triage until then.
|
||||
const autoOn = !!(settings && settings.auto_decompose);
|
||||
const modePillTitle = settings === null
|
||||
? "Loading mode…"
|
||||
: (autoOn
|
||||
? "Orchestration: Auto — the dispatcher decomposes new triage tasks automatically every tick. Click to switch to Manual (pre-PR behavior)."
|
||||
: "Orchestration: Manual — triage tasks stay in triage until you click ⚗ Decompose on each card. Click to switch to Auto.");
|
||||
const modePill = h("button", {
|
||||
type: "button",
|
||||
onClick: function () {
|
||||
if (settings === null) return; // not loaded yet
|
||||
saveSettings({ auto_decompose: !autoOn });
|
||||
},
|
||||
disabled: settings === null,
|
||||
title: modePillTitle,
|
||||
className: "inline-flex items-center gap-1 rounded-full border px-2 py-0.5 "
|
||||
+ "text-xs font-medium "
|
||||
+ (autoOn
|
||||
? "border-emerald-500/40 bg-emerald-500/10 text-emerald-700 dark:text-emerald-300"
|
||||
: "border-muted-foreground/30 bg-muted/30 text-muted-foreground"),
|
||||
},
|
||||
"Orchestration: ",
|
||||
h("span", { className: "ml-1 font-semibold" },
|
||||
settings === null ? "…" : (autoOn ? "Auto" : "Manual"))
|
||||
);
|
||||
|
||||
if (!expanded) {
|
||||
return h("div", { className: "flex items-center gap-3 text-xs" },
|
||||
modePill,
|
||||
h("button", {
|
||||
type: "button",
|
||||
onClick: function () { setExpanded(true); },
|
||||
className: "underline text-muted-foreground hover:text-foreground",
|
||||
title: "Configure the kanban orchestrator (profile picker, default assignee, auto-decompose, profile descriptions)",
|
||||
}, headerLabel),
|
||||
);
|
||||
}
|
||||
|
||||
const profileOptions = profiles.map(function (p) {
|
||||
const tag = p.is_default ? " (default)" : "";
|
||||
return h(SelectOption, { key: p.name, value: p.name }, p.name + tag);
|
||||
});
|
||||
|
||||
return h(Card, { className: "p-3" },
|
||||
h(CardContent, { className: "p-2 flex flex-col gap-3" },
|
||||
h("div", { className: "flex items-center justify-between" },
|
||||
h("button", {
|
||||
type: "button",
|
||||
onClick: function () { setExpanded(false); },
|
||||
className: "text-sm font-medium underline-offset-2 hover:underline",
|
||||
}, headerLabel),
|
||||
modePill,
|
||||
h(Button, { onClick: loadAll, size: "sm" }, "Reload"),
|
||||
),
|
||||
msg ? h("div", {
|
||||
className: msg.ok ? "hermes-kanban-msg-ok" : "hermes-kanban-msg-err",
|
||||
}, msg.text) : null,
|
||||
|
||||
settings ? h("div", { className: "grid gap-3 sm:grid-cols-3" },
|
||||
h("div", { className: "flex flex-col gap-1" },
|
||||
h(Label, { className: "text-xs text-muted-foreground" },
|
||||
"Orchestrator profile"),
|
||||
h(Select, {
|
||||
value: settings.orchestrator_profile || "",
|
||||
className: "h-8",
|
||||
onChange: function (e) {
|
||||
const v = (e && e.target ? e.target.value : e) || "";
|
||||
saveSettings({ orchestrator_profile: v });
|
||||
},
|
||||
},
|
||||
h(SelectOption, { value: "" },
|
||||
"(default: " + (settings.active_profile || "default") + ")"),
|
||||
profileOptions,
|
||||
),
|
||||
h("div", { className: "text-[10px] text-muted-foreground" },
|
||||
"Resolved: " + (settings.resolved_orchestrator_profile || "default")),
|
||||
),
|
||||
h("div", { className: "flex flex-col gap-1" },
|
||||
h(Label, { className: "text-xs text-muted-foreground" },
|
||||
"Default assignee"),
|
||||
h(Select, {
|
||||
value: settings.default_assignee || "",
|
||||
className: "h-8",
|
||||
onChange: function (e) {
|
||||
const v = (e && e.target ? e.target.value : e) || "";
|
||||
saveSettings({ default_assignee: v });
|
||||
},
|
||||
},
|
||||
h(SelectOption, { value: "" },
|
||||
"(default: " + (settings.active_profile || "default") + ")"),
|
||||
profileOptions,
|
||||
),
|
||||
h("div", { className: "text-[10px] text-muted-foreground" },
|
||||
"Resolved: " + (settings.resolved_default_assignee || "default")),
|
||||
),
|
||||
h("div", { className: "flex flex-col gap-1" },
|
||||
h(Label, { className: "text-xs text-muted-foreground" },
|
||||
"Orchestration mode"),
|
||||
h("label", { className: "flex items-center gap-2 text-xs h-8" },
|
||||
h("input", {
|
||||
type: "checkbox",
|
||||
checked: !!settings.auto_decompose,
|
||||
onChange: function (e) {
|
||||
saveSettings({ auto_decompose: !!e.target.checked });
|
||||
},
|
||||
}),
|
||||
settings.auto_decompose ? "Auto (default)" : "Manual",
|
||||
),
|
||||
h("div", { className: "text-[10px] text-muted-foreground" },
|
||||
"When on, the dispatcher decomposes new triage tasks automatically."),
|
||||
),
|
||||
) : h("div", { className: "text-xs text-muted-foreground" },
|
||||
"Loading…"),
|
||||
|
||||
h("div", { className: "border-t pt-3" },
|
||||
h(Label, { className: "text-xs text-muted-foreground" },
|
||||
"Profile descriptions"),
|
||||
h("div", { className: "text-[10px] text-muted-foreground pb-2" },
|
||||
"Descriptions guide the orchestrator's routing. Click ⚗ to auto-generate, or edit and save."),
|
||||
profiles.length === 0
|
||||
? h("div", { className: "text-xs text-muted-foreground" }, "No profiles installed.")
|
||||
: h("div", { className: "flex flex-col gap-2" },
|
||||
profiles.map(function (p) {
|
||||
return h(ProfileDescriptionRow, {
|
||||
key: p.name,
|
||||
profile: p,
|
||||
busy: busy[p.name] || null,
|
||||
onSave: saveProfileDescription,
|
||||
onAuto: autoGenerateDescription,
|
||||
});
|
||||
}),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
function ProfileDescriptionRow(props) {
|
||||
const p = props.profile;
|
||||
const [draft, setDraft] = useState(p.description || "");
|
||||
const busy = props.busy;
|
||||
// Re-sync the local draft if the server-side description changes (e.g.
|
||||
// after auto-generate). Cheap because re-runs only happen on prop change.
|
||||
useEffect(function () {
|
||||
setDraft(p.description || "");
|
||||
}, [p.description]);
|
||||
|
||||
const tag = p.description_auto && p.description ? " [auto, review]" : "";
|
||||
return h("div", { className: "flex flex-col gap-1 border-l-2 pl-2",
|
||||
style: { borderColor: p.description ? "#888" : "#cc6" } },
|
||||
h("div", { className: "flex items-center gap-2 text-xs" },
|
||||
h("span", { className: "font-medium" }, p.name),
|
||||
p.is_default ? h("span", { className: "text-[10px] text-muted-foreground" }, "(default)") : null,
|
||||
p.description_auto && p.description
|
||||
? h("span", { className: "text-[10px] text-yellow-600" }, "auto — review")
|
||||
: null,
|
||||
!p.description
|
||||
? h("span", { className: "text-[10px] text-yellow-600" }, "⚠ no description")
|
||||
: null,
|
||||
),
|
||||
h("div", { className: "flex items-center gap-2" },
|
||||
h(Input, {
|
||||
value: draft,
|
||||
onChange: function (e) { setDraft(e.target.value); },
|
||||
placeholder: "What is this profile good at?",
|
||||
className: "h-7 text-xs flex-1",
|
||||
}),
|
||||
h(Button, {
|
||||
onClick: function () { props.onSave(p.name, draft); },
|
||||
size: "sm",
|
||||
disabled: !!busy || draft === (p.description || ""),
|
||||
title: "Save the description above as user-authored",
|
||||
}, busy === "save" ? "Saving…" : "Save"),
|
||||
h(Button, {
|
||||
onClick: function () { props.onAuto(p.name, true); },
|
||||
size: "sm",
|
||||
disabled: !!busy,
|
||||
title: "Auto-generate a description from this profile's skills and model",
|
||||
}, busy === "auto" ? "Generating…" : "⚗ Auto"),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
function BoardSwitcher(props) {
|
||||
const { t } = useI18n();
|
||||
const list = props.boardList || [];
|
||||
|
|
@ -2395,6 +2678,25 @@
|
|||
});
|
||||
};
|
||||
|
||||
// POST /tasks/:id/decompose — fan a triage task out into a graph
|
||||
// of child tasks routed to specialist profiles by description.
|
||||
// Refreshes both the drawer (so the user sees the root flip to
|
||||
// todo) and the board (so the new children appear in the columns).
|
||||
const doDecompose = function () {
|
||||
return SDK.fetchJSON(
|
||||
withBoard(`${API}/tasks/${encodeURIComponent(props.taskId)}/decompose`, boardSlug),
|
||||
{
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify({}),
|
||||
}
|
||||
).then(function (res) {
|
||||
load();
|
||||
props.onRefresh();
|
||||
return res;
|
||||
});
|
||||
};
|
||||
|
||||
const addLink = function (parentId) {
|
||||
return SDK.fetchJSON(withBoard(`${API}/links`, boardSlug), {
|
||||
method: "POST",
|
||||
|
|
@ -2486,6 +2788,7 @@
|
|||
boardSlug: boardSlug,
|
||||
onPatch: doPatch,
|
||||
onSpecify: doSpecify,
|
||||
onDecompose: doDecompose,
|
||||
onAddParent: addLink,
|
||||
onRemoveParent: removeLink,
|
||||
onAddChild: addChild,
|
||||
|
|
@ -2559,6 +2862,7 @@
|
|||
task: t,
|
||||
onPatch: props.onPatch,
|
||||
onSpecify: props.onSpecify,
|
||||
onDecompose: props.onDecompose,
|
||||
}),
|
||||
h(DiagnosticsSection, {
|
||||
task: t,
|
||||
|
|
@ -3023,6 +3327,8 @@
|
|||
const task = props.task;
|
||||
const [specifyBusy, setSpecifyBusy] = useState(false);
|
||||
const [specifyMsg, setSpecifyMsg] = useState(null);
|
||||
const [decomposeBusy, setDecomposeBusy] = useState(false);
|
||||
const [decomposeMsg, setDecomposeMsg] = useState(null);
|
||||
const b = function (label, patch, enabled, confirmMsg) {
|
||||
return h(Button, {
|
||||
onClick: function () { if (enabled !== false) props.onPatch(patch, { confirm: confirmMsg }); },
|
||||
|
|
@ -3067,9 +3373,57 @@
|
|||
}, specifyBusy ? "Specifying…" : "✨ Specify")
|
||||
: null;
|
||||
|
||||
// "Decompose" is the orchestrator-driven fan-out. Like Specify, only
|
||||
// makes sense on triage-column tasks — elsewhere the backend short-
|
||||
// circuits with ok:false. When the orchestrator returns fanout:false
|
||||
// we render the same single-task message as Specify; when it fans
|
||||
// out we report the child count for quick at-a-glance verification.
|
||||
const decomposeButton = (task.status === "triage" && props.onDecompose)
|
||||
? h(Button, {
|
||||
onClick: function () {
|
||||
if (decomposeBusy) return;
|
||||
setDecomposeBusy(true);
|
||||
setDecomposeMsg(null);
|
||||
props.onDecompose().then(function (res) {
|
||||
if (res && res.ok) {
|
||||
if (res.fanout && res.child_ids && res.child_ids.length) {
|
||||
setDecomposeMsg({
|
||||
ok: true,
|
||||
text: `Decomposed into ${res.child_ids.length} children: ${res.child_ids.join(", ")}`,
|
||||
});
|
||||
} else {
|
||||
const suffix = res.new_title
|
||||
? ` — retitled: ${res.new_title}`
|
||||
: "";
|
||||
setDecomposeMsg({
|
||||
ok: true,
|
||||
text: `Single task (no fanout)${suffix}`,
|
||||
});
|
||||
}
|
||||
} else {
|
||||
setDecomposeMsg({
|
||||
ok: false,
|
||||
text: "Decompose failed: " + ((res && res.reason) || "unknown error"),
|
||||
});
|
||||
}
|
||||
}).catch(function (err) {
|
||||
setDecomposeMsg({
|
||||
ok: false,
|
||||
text: "Decompose failed: " + (err.message || String(err)),
|
||||
});
|
||||
}).then(function () {
|
||||
setDecomposeBusy(false);
|
||||
});
|
||||
},
|
||||
disabled: decomposeBusy,
|
||||
size: "sm",
|
||||
}, decomposeBusy ? "Decomposing…" : "⚗ Decompose")
|
||||
: null;
|
||||
|
||||
return h("div", null,
|
||||
h("div", { className: "hermes-kanban-actions" },
|
||||
specifyButton,
|
||||
decomposeButton,
|
||||
b("→ triage", { status: "triage" }, task.status !== "triage"),
|
||||
b("→ ready", { status: "ready" }, task.status !== "ready"),
|
||||
// No direct → running button: /tasks/:id PATCH rejects status=running
|
||||
|
|
@ -3091,6 +3445,11 @@
|
|||
? "hermes-kanban-msg-ok"
|
||||
: "hermes-kanban-msg-err",
|
||||
}, specifyMsg.text) : null,
|
||||
decomposeMsg ? h("div", {
|
||||
className: decomposeMsg.ok
|
||||
? "hermes-kanban-msg-ok"
|
||||
: "hermes-kanban-msg-err",
|
||||
}, decomposeMsg.text) : null,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1535,6 +1535,279 @@ def switch_board(slug: str):
|
|||
_EVENT_POLL_SECONDS = 0.3
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Profile metadata & description editing (consumed by the kanban orchestrator)
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
class DescribeBody(BaseModel):
|
||||
description: Optional[str] = None # explicit user-authored text
|
||||
|
||||
|
||||
class DescribeAutoBody(BaseModel):
|
||||
overwrite: bool = False
|
||||
|
||||
|
||||
@router.get("/profiles")
|
||||
def list_profile_roster():
|
||||
"""Return every installed profile with its description.
|
||||
|
||||
Consumed by the dashboard's settings panel (orchestrator picker)
|
||||
and the profile-description editing UI. Profiles without a
|
||||
description still appear here — they're routable on name alone,
|
||||
just less precisely.
|
||||
"""
|
||||
try:
|
||||
from hermes_cli import profiles as profiles_mod
|
||||
profiles = profiles_mod.list_profiles()
|
||||
except Exception as exc:
|
||||
raise HTTPException(status_code=500, detail=f"failed to list profiles: {exc}")
|
||||
return {
|
||||
"profiles": [
|
||||
{
|
||||
"name": p.name,
|
||||
"is_default": bool(p.is_default),
|
||||
"model": p.model or "",
|
||||
"provider": p.provider or "",
|
||||
"description": p.description or "",
|
||||
"description_auto": bool(p.description_auto),
|
||||
"skill_count": int(p.skill_count or 0),
|
||||
}
|
||||
for p in profiles
|
||||
],
|
||||
}
|
||||
|
||||
|
||||
@router.patch("/profiles/{profile_name}")
|
||||
def update_profile_description(profile_name: str, payload: DescribeBody):
|
||||
"""Set or clear the description of a profile.
|
||||
|
||||
Empty string clears the description; non-empty stores it as a
|
||||
user-authored description (``description_auto: false``) so the
|
||||
auto-describer won't overwrite it on a sweep without
|
||||
``--overwrite``.
|
||||
"""
|
||||
try:
|
||||
from hermes_cli import profiles as profiles_mod
|
||||
canon = profiles_mod.normalize_profile_name(profile_name)
|
||||
if canon == "default":
|
||||
from hermes_constants import get_hermes_home # type: ignore
|
||||
from pathlib import Path as _Path
|
||||
profile_dir = _Path(get_hermes_home())
|
||||
else:
|
||||
profile_dir = profiles_mod.get_profile_dir(canon)
|
||||
if not profile_dir.is_dir():
|
||||
raise HTTPException(status_code=404, detail=f"profile '{profile_name}' not found")
|
||||
text = (payload.description or "").strip()
|
||||
profiles_mod.write_profile_meta(
|
||||
profile_dir,
|
||||
description=text,
|
||||
description_auto=False,
|
||||
)
|
||||
except HTTPException:
|
||||
raise
|
||||
except Exception as exc:
|
||||
raise HTTPException(status_code=500, detail=f"failed to update profile: {exc}")
|
||||
return {"ok": True, "profile": canon, "description": text}
|
||||
|
||||
|
||||
@router.post("/profiles/{profile_name}/describe-auto")
|
||||
def auto_describe_profile(profile_name: str, payload: DescribeAutoBody):
|
||||
"""Generate a description for the named profile via the auxiliary
|
||||
LLM (``auxiliary.profile_describer``). Persists with
|
||||
``description_auto: true`` so the dashboard can surface a "review"
|
||||
badge.
|
||||
|
||||
Maps 1:1 to ``hermes profile describe <name> --auto``. Non-OK
|
||||
outcomes are NOT HTTP errors — the UI renders the reason inline
|
||||
(e.g. "no auxiliary client configured") so the operator can fix
|
||||
config and retry without a page reload.
|
||||
"""
|
||||
try:
|
||||
from hermes_cli import profile_describer # noqa: WPS433 (intentional)
|
||||
outcome = profile_describer.describe_profile(
|
||||
profile_name,
|
||||
overwrite=bool(payload.overwrite),
|
||||
)
|
||||
except Exception as exc:
|
||||
raise HTTPException(status_code=500, detail=f"describer crashed: {exc}")
|
||||
return {
|
||||
"ok": bool(outcome.ok),
|
||||
"profile": outcome.profile_name,
|
||||
"reason": outcome.reason,
|
||||
"description": outcome.description,
|
||||
}
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Decompose endpoint (orchestrator-driven fan-out)
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
class DecomposeBody(BaseModel):
|
||||
author: Optional[str] = None
|
||||
|
||||
|
||||
@router.post("/tasks/{task_id}/decompose")
|
||||
def decompose_task_endpoint(
|
||||
task_id: str,
|
||||
payload: DecomposeBody,
|
||||
board: Optional[str] = Query(None),
|
||||
):
|
||||
"""Fan a triage-column task out into a graph of child tasks via the
|
||||
auxiliary LLM, routed to specialist profiles by description. Maps
|
||||
1:1 to ``hermes kanban decompose <task_id>``.
|
||||
|
||||
Returns the outcome shape used by the CLI: ``{ok, task_id, reason,
|
||||
fanout, child_ids, new_title}``. A non-OK outcome is NOT an HTTP
|
||||
error — the UI renders the reason inline.
|
||||
|
||||
Runs in FastAPI's threadpool (sync ``def``) because the LLM call
|
||||
can take minutes on reasoning models.
|
||||
"""
|
||||
board = _resolve_board(board)
|
||||
prev_env = os.environ.get("HERMES_KANBAN_BOARD")
|
||||
try:
|
||||
os.environ["HERMES_KANBAN_BOARD"] = board or kanban_db.DEFAULT_BOARD
|
||||
from hermes_cli import kanban_decompose # noqa: WPS433 (intentional)
|
||||
outcome = kanban_decompose.decompose_task(
|
||||
task_id,
|
||||
author=(payload.author or None),
|
||||
)
|
||||
finally:
|
||||
if prev_env is None:
|
||||
os.environ.pop("HERMES_KANBAN_BOARD", None)
|
||||
else:
|
||||
os.environ["HERMES_KANBAN_BOARD"] = prev_env
|
||||
|
||||
return {
|
||||
"ok": bool(outcome.ok),
|
||||
"task_id": outcome.task_id,
|
||||
"reason": outcome.reason,
|
||||
"fanout": bool(outcome.fanout),
|
||||
"child_ids": outcome.child_ids or [],
|
||||
"new_title": outcome.new_title,
|
||||
}
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Orchestration settings (kanban.orchestrator_profile / default_assignee /
|
||||
# auto_decompose) — surfaced to the dashboard's settings panel
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
class OrchestrationSettingsBody(BaseModel):
|
||||
orchestrator_profile: Optional[str] = None
|
||||
default_assignee: Optional[str] = None
|
||||
auto_decompose: Optional[bool] = None
|
||||
|
||||
|
||||
@router.get("/orchestration")
|
||||
def get_orchestration_settings():
|
||||
"""Return the current kanban orchestration knobs from config.yaml
|
||||
plus the resolved effective values (filling in fallbacks)."""
|
||||
try:
|
||||
from hermes_cli.config import load_config
|
||||
cfg = load_config() or {}
|
||||
except Exception:
|
||||
cfg = {}
|
||||
kanban_cfg = (cfg.get("kanban") or {}) if isinstance(cfg, dict) else {}
|
||||
explicit_orch = (kanban_cfg.get("orchestrator_profile") or "").strip()
|
||||
explicit_default = (kanban_cfg.get("default_assignee") or "").strip()
|
||||
auto_decompose = bool(kanban_cfg.get("auto_decompose", True))
|
||||
|
||||
# Resolve fallbacks the same way the decomposer does.
|
||||
resolved_orch = explicit_orch
|
||||
resolved_default = explicit_default
|
||||
try:
|
||||
from hermes_cli import profiles as profiles_mod
|
||||
active_default = profiles_mod.get_active_profile_name() or "default"
|
||||
if not resolved_orch or not profiles_mod.profile_exists(resolved_orch):
|
||||
resolved_orch = active_default
|
||||
if not resolved_default or not profiles_mod.profile_exists(resolved_default):
|
||||
resolved_default = active_default
|
||||
except Exception:
|
||||
active_default = "default"
|
||||
if not resolved_orch:
|
||||
resolved_orch = active_default
|
||||
if not resolved_default:
|
||||
resolved_default = active_default
|
||||
|
||||
return {
|
||||
"orchestrator_profile": explicit_orch,
|
||||
"default_assignee": explicit_default,
|
||||
"auto_decompose": auto_decompose,
|
||||
"resolved_orchestrator_profile": resolved_orch,
|
||||
"resolved_default_assignee": resolved_default,
|
||||
"active_profile": active_default,
|
||||
}
|
||||
|
||||
|
||||
@router.put("/orchestration")
|
||||
def set_orchestration_settings(payload: OrchestrationSettingsBody):
|
||||
"""Update the kanban orchestration knobs in ~/.hermes/config.yaml.
|
||||
|
||||
Each field is optional — only fields explicitly passed are
|
||||
written. ``orchestrator_profile`` / ``default_assignee`` accept
|
||||
empty strings to clear the override and fall back to the default
|
||||
profile.
|
||||
"""
|
||||
try:
|
||||
from hermes_cli.config import load_config, save_config
|
||||
cfg = load_config() or {}
|
||||
except Exception as exc:
|
||||
raise HTTPException(status_code=500, detail=f"failed to load config: {exc}")
|
||||
|
||||
kanban_section = cfg.setdefault("kanban", {})
|
||||
if not isinstance(kanban_section, dict):
|
||||
kanban_section = {}
|
||||
cfg["kanban"] = kanban_section
|
||||
|
||||
# Validate any non-empty profile names exist before saving.
|
||||
try:
|
||||
from hermes_cli import profiles as profiles_mod
|
||||
except Exception:
|
||||
profiles_mod = None # type: ignore
|
||||
|
||||
if payload.orchestrator_profile is not None:
|
||||
name = (payload.orchestrator_profile or "").strip()
|
||||
if name and profiles_mod is not None:
|
||||
try:
|
||||
if not profiles_mod.profile_exists(name):
|
||||
raise HTTPException(
|
||||
status_code=400,
|
||||
detail=f"profile '{name}' does not exist",
|
||||
)
|
||||
except HTTPException:
|
||||
raise
|
||||
except Exception:
|
||||
pass # fail open if the lookup itself errors
|
||||
kanban_section["orchestrator_profile"] = name
|
||||
|
||||
if payload.default_assignee is not None:
|
||||
name = (payload.default_assignee or "").strip()
|
||||
if name and profiles_mod is not None:
|
||||
try:
|
||||
if not profiles_mod.profile_exists(name):
|
||||
raise HTTPException(
|
||||
status_code=400,
|
||||
detail=f"profile '{name}' does not exist",
|
||||
)
|
||||
except HTTPException:
|
||||
raise
|
||||
except Exception:
|
||||
pass
|
||||
kanban_section["default_assignee"] = name
|
||||
|
||||
if payload.auto_decompose is not None:
|
||||
kanban_section["auto_decompose"] = bool(payload.auto_decompose)
|
||||
|
||||
try:
|
||||
save_config(cfg)
|
||||
except Exception as exc:
|
||||
raise HTTPException(status_code=500, detail=f"failed to save config: {exc}")
|
||||
|
||||
# Echo back the resolved state (callers usually re-render from it).
|
||||
return get_orchestration_settings()
|
||||
|
||||
|
||||
@router.websocket("/events")
|
||||
async def stream_events(ws: WebSocket):
|
||||
# Enforce the dashboard session token as a query param — browsers can't
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue