betterwithage Claude Opus 4.7 commited on
Commit
aa8e294
·
verified ·
1 Parent(s): 6ff09ea

deploy(hf): sync szl-holdings/a11oy@8d1b146d5c9e789a3f93e3a5b470f575e63ca460 derived COPY set

Browse files

Reusable Dockerfile-COPY-derived deploy from szl-holdings/a11oy 8d1b146d5c9e789a3f93e3a5b470f575e63ca460.
Files: 1156 Pruned: 0
Derived from Dockerfile COPY sources (NO hand-maintained allowlist).

Signed-off-by: SZL Holdings <noreply@szlholdings.ai>
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

Files changed (1) hide show
  1. console/anatomy-map/live-body.js +4 -0
console/anatomy-map/live-body.js CHANGED
@@ -101,6 +101,10 @@ const ORGANS = [
101
  summarize: (j) => {
102
  const op = j.operator || {};
103
  if (op.operator_running === true) return `operator running · ${j.status || "ready"}`;
 
 
 
 
104
  if (j.status) return `status: ${j.status}`;
105
  return "operator responding";
106
  },
 
101
  summarize: (j) => {
102
  const op = j.operator || {};
103
  if (op.operator_running === true) return `operator running · ${j.status || "ready"}`;
104
+ if (op.state) {
105
+ const requirement = op.required === true ? "required" : "optional";
106
+ return `operator ${op.state} · ${requirement} · ${j.status || "unknown"}`;
107
+ }
108
  if (j.status) return `status: ${j.status}`;
109
  return "operator responding";
110
  },