You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-20Lines changed: 15 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,15 +33,11 @@ so the project also runs offline / in CI / with zero API keys.
33
33
Judiciary, Media, Bureaucracy) gets its own LLM system prompt. The
34
34
Executive is ambitious; the Judiciary is reactive; the Media chases a
35
35
narrative; the Bureaucracy implements steadily.
36
-
-**Agent memory.** Each agent sees its own recent decisions (turn,
37
-
action, legal or not) so it can reason about continuity.
38
-
-**Schema-driven constitutions.** Strict Pydantic v2 models; YAML in,
39
-
typed objects out. Errors are explicit and structured.
40
-
-**Rules engine is source of truth.** Agents propose typed actions;
41
-
the engine accepts or rejects with a reason. The LLM cannot mutate
42
-
state directly.
43
-
-**Partial observability.** Each role gets a state view filtered by
44
-
its `observation_limits`.
36
+
-**Agent memory & shared history.** Each agent remembers its own recent decisions and can see a public history of what other actors just did (if the constitution allows).
37
+
-**Inter-agent deliberation.** Each turn features a deliberation phase where agents can negotiate, threaten, or signal intent by sending messages to each other's inboxes.
38
+
-**Schema-driven constitutions.** Strict Pydantic v2 models; YAML in, typed objects out. Constitutions can enforce communication limits (e.g. authoritarian gag orders).
39
+
-**Rules engine is source of truth.** Agents propose typed actions; the engine accepts or rejects with a reason. The LLM cannot mutate state directly.
40
+
-**Partial observability.** Each role gets a state view filtered by its `observation_limits`.
45
41
-**Institutional metrics.** Power concentration, deadlock, trust
0 commit comments