13 lines
517 B
Python
13 lines
517 B
Python
"""GuardRail.Space MVP: Verifiable Safety Contracts for Onboard AGI-Driven Systems
|
|
|
|
This package provides a minimal, production-ready skeleton for a Safety Contract DSL,
|
|
runtime policy engine, and a guard module with a shadow planner. It is designed as a
|
|
foundational core for further integration with Gazebo/ROS and CatOpt-style adapters.
|
|
"""
|
|
|
|
from .contract import SafetyContract
|
|
from .guard import GuardModule
|
|
from .shadow_planner import ShadowPlanner
|
|
|
|
__all__ = ["SafetyContract", "GuardModule", "ShadowPlanner"]
|