Files
openworker/coworker/teams/__init__.py
T
Rohit C Prasad 48f3021843 Agent teams: event store, work items, board verbs, journal (OPE-95)
One hash-chained append-only log; board, journal, and per-agent deliveries are projections (rebuild == replay).
Six board verbs + journal verbs with role authority; worker slice and case access ride assignment.
2026-08-15 22:50:24 -07:00

26 lines
485 B
Python

"""Agent teams substrate: one append-only event store; the board, journal, and
per-agent deliveries are projections of it."""
from .model import (
Actor,
AuthorityError,
BoardError,
ChainError,
ItemState,
Role,
)
from .store import TeamStore
from .tools import board_tools, journal_tools
__all__ = [
"Actor",
"AuthorityError",
"BoardError",
"ChainError",
"ItemState",
"Role",
"TeamStore",
"board_tools",
"journal_tools",
]