docs: sync to current state of the world
claude.md scratchpad rewritten — folds in pronouns option, extra MCP servers + flakeInputs forwarding, ask_operator on sub-agents, dashboard compose box with @-mentions, new- session button, cwd=/state for claude turns, meta-mutex + stale-lock cleanup. readme picks up the operator pronouns option example, the dashboard compose box description, the new slash commands list, the deployed-sha chip, the per-agent UI gains new-session. docs/web-ui.md gains: - a fuller MESS4GE FL0W description that calls out the compose box, sticky @-mention recipient, /op-send, and the manager-name swap - /op-send in the dashboard endpoint table - new-session button + /new-session slash command in the per-agent surface - compact endpoint now notes 'same session shape as a normal turn' docs/turn-loop.md: - new-session one-shot, cwd=/state with CLAUDE.md auto-load walking upward, operator-pronouns substitution - sub-agent tool list grows ask_operator - new 'Extra MCP servers (per-agent)' section documenting hyperhive.extraMcpServers + the flakeInputs forwarding pattern
This commit is contained in:
parent
2d277038a7
commit
1278f880da
4 changed files with 137 additions and 37 deletions
29
README.md
29
README.md
|
|
@ -36,7 +36,9 @@ host (NixOS, runs hive-c0re.service)
|
|||
│ ask_operator) + web UI on :8000
|
||||
│
|
||||
└── h-<name> hive-ag3nt serve : claude turn loop +
|
||||
MCP (send / recv) + web UI on a hashed :8100-8999
|
||||
MCP (send / recv / ask_operator + agent-declared extras
|
||||
via hyperhive.extraMcpServers) + web UI on a
|
||||
hashed :8100-8999
|
||||
```
|
||||
|
||||
Each turn: harness pops one inbox message (Recv long-polls server-side and
|
||||
|
|
@ -47,12 +49,20 @@ claude drives any further `recv`/`send` itself via the embedded MCP server.
|
|||
|
||||
Operator surface per agent: terminal-themed live tail with a textarea
|
||||
prompt; slash commands `/help` `/clear` `/cancel` `/compact`
|
||||
`/model <name>`; granular state badge (idle / thinking /
|
||||
compacting / offline) with age timer + last-turn duration chip +
|
||||
model chip; cancel-turn button while thinking; sticky-bottom
|
||||
auto-scroll with "↓ N new" pill; event history backfilled on page
|
||||
load; collapsible inbox + collapsible journald viewer + collapsible
|
||||
`agent.nix` viewer per agent on the dashboard.
|
||||
`/model <name>` `/new-session`; granular state badge (idle / thinking
|
||||
/ compacting / offline) with age timer + last-turn duration chip +
|
||||
model chip; cancel-turn + new-session buttons in the state row;
|
||||
sticky-bottom auto-scroll with "↓ N new" pill; event history
|
||||
backfilled on page load; collapsible inbox + collapsible journald
|
||||
viewer + collapsible `agent.nix` viewer per agent on the dashboard;
|
||||
deployed-sha chip per container (read from meta's `flake.lock`).
|
||||
|
||||
Operator surface on the dashboard itself: a terminal compose box
|
||||
under the message-flow stream — `@name` picks the recipient with
|
||||
auto-complete from the live container list, sticky across sends,
|
||||
POSTs `/op-send` which drops the message into the broker as
|
||||
`{from:"operator", to:<name>, body}`. Same shape any sub-agent
|
||||
sees as a regular inbox message.
|
||||
|
||||
Config changes flow the other way: manager edits files under
|
||||
`/agents/<name>/config/` — `agent.nix` is a plain NixOS module function
|
||||
|
|
@ -102,6 +112,11 @@ Minimal `flake.nix` for a host that runs hive-c0re:
|
|||
hyperhive.nixosModules.hive-c0re
|
||||
({ ... }: {
|
||||
services.hive-c0re.enable = true;
|
||||
# Free-text operator pronouns — defaults to "she/her", threaded
|
||||
# through to every agent's system prompt as HIVE_OPERATOR_PRONOUNS
|
||||
# so claude refers to you naturally in third person.
|
||||
# services.hive-c0re.operatorPronouns = "they/them";
|
||||
|
||||
# ... rest of your host config (hardware, networking, users, …)
|
||||
system.stateVersion = "25.11";
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue