Logo
Explore Help
Sign In
Timmy_Foundation/timmy-config
15
0
Fork 0
You've already forked timmy-config
Code Issues 201 Pull Requests 3 Actions 3 Packages Projects Releases Wiki Activity
Files
0a4c8f2d37aea24ebbc06c3197a54571cbeece23
timmy-config/lazarus/cli.py

19 lines
354 B
Python
Raw Normal View History

feat(lazarus): operator control surface + cell isolation + process backend (#274, #269) 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.
2026-04-06 16:58:14 +00:00
#!/usr/bin/env python3
"""CLI entrypoint for Lazarus Pit operator control surface."""
import json
import sys
from .operator_ctl import OperatorCtl
def main():
ctl = OperatorCtl()
result = ctl.run_cli(sys.argv[1:])
print(json.dumps(result, indent=2))
sys.exit(0 if result.get("success") else 1)
if __name__ == "__main__":
main()
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.25.4 Page: 207ms Template: 4ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API