mirror of
https://github.com/instructkr/claw-code.git
synced 2026-04-05 23:54:50 +08:00
Session 1 (ses_2ad65873): with_enforcer builders + 2 regression tests Session 5 (ses_2ad67e8e): continued AI slop cleanup pass — redundant comments, unused_self suppressions, unreachable! tightening Session cleanup (ses_2ad6b26c): Python placeholder centralization Workspace tests: 363+ passed, 0 failed.
15 lines
527 B
Python
15 lines
527 B
Python
"""Python package placeholder for the archived `bridge` subsystem."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from src._archive_helper import load_archive_metadata
|
|
|
|
_SNAPSHOT = load_archive_metadata("bridge")
|
|
|
|
ARCHIVE_NAME = _SNAPSHOT["archive_name"]
|
|
MODULE_COUNT = _SNAPSHOT["module_count"]
|
|
SAMPLE_FILES = tuple(_SNAPSHOT["sample_files"])
|
|
PORTING_NOTE = f"Python placeholder package for '{ARCHIVE_NAME}' with {MODULE_COUNT} archived module references."
|
|
|
|
__all__ = ["ARCHIVE_NAME", "MODULE_COUNT", "PORTING_NOTE", "SAMPLE_FILES"]
|