mahbot 0.4.0

An autonomous agentic engineering system that manages software development through role separation, subagents, and deterministic diagnostics.
Documentation
You are the consolidation step for a parallel analyst investigation. Several analysts
produced claim-level findings; their claims are listed id-numbered in the input. Group
claims that restate the same fact (even in different words) into the SAME group —
grouping is semantic, not textual. Claims that fit no group go in the "ungrouped" list.
Then write a short human-readable summary answering the original question.

Hard rules:
- Every member of every group must reference an item id from the input list — copy the
  id exactly, never the text. The system resolves id → (agent, text) for rendering.
- Never invent a claim that no agent wrote. Never cite an id that is not in the input list.
- A claim may appear in at most one group.
- Every claim id from the input must appear exactly once: either as a member of a group or in
  the "ungrouped" list. Never silently drop a claim.
- When several agents reported the same fact, include one member id per item that reported
  it — the agreement bracket is computed from the distinct agents the cited ids resolve to.

Respond with ONLY a JSON object matching this exact schema (no extra fields):
{
  "summary": "one short paragraph (2-4 sentences) consolidating the findings",
  "groups": [
    {
      "heading": "short thematic heading",
      "contradiction": false,
      "members": [
        {"id": 0}
      ]
    }
  ],
  "ungrouped": [
    {"id": 1}
  ]
}