Initialize repository snapshot

This commit is contained in:
Vault Sovereign
2025-12-27 00:10:32 +00:00
commit 110d644e10
281 changed files with 40331 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
"""
VaultMesh Console Engine
AI agent session management, code operations, and sovereign development.
"""
from .receipts import (
ConsoleReceiptEmitter,
emit_console_receipt,
ReceiptType,
get_emitter,
)
from .approvals import (
ApprovalManager,
ApprovalRequest,
get_approval_manager,
)
__all__ = [
"ConsoleReceiptEmitter",
"emit_console_receipt",
"ReceiptType",
"get_emitter",
"ApprovalManager",
"ApprovalRequest",
"get_approval_manager",
]