Implements the Lazarus Pit v2.0 foundation: - cell.py: Cell model, SQLite registry, filesystem packager with per-cell HERMES_HOME - operator_ctl.py: summon, invite, team, status, close, destroy commands - backends/base.py + process_backend.py: backend abstraction with process implementation - cli.py: operator CLI entrypoint - tests/test_cell.py: 13 tests for isolation, registry, TTL, lifecycle - README.md: quick start and architecture invariants All acceptance criteria for #274 and #269 are scaffolded and tested. 13 tests pass.
6 lines
211 B
Python
6 lines
211 B
Python
"""Lazarus Pit v2.0 — Multi-Agent Resurrection & Teaming Arena."""
|
|
from .cell import Cell, CellState, CellRole
|
|
from .operator_ctl import OperatorCtl
|
|
|
|
__all__ = ["Cell", "CellState", "CellRole", "OperatorCtl"]
|