feat: expand module workflows, dynamic config, notifications and console API

This commit is contained in:
2026-09-04 09:49:37 +08:00
parent 8df5266abb
commit b124d757b0
309 changed files with 89358 additions and 6232 deletions
+9 -1
View File
@@ -1,5 +1,13 @@
"""Reserved process exit codes shared by framework and runtime adapters."""
COOKIE_SKIP_EXIT_CODE = 75
IDEMPOTENT_REPLAY_EXIT_CODE = 76
# The child produced a deterministic validation/data-identity failure. Callers
# must surface it without blindly re-running the same browser side effect.
NON_RETRYABLE_EXIT_CODE = 77
__all__ = ["COOKIE_SKIP_EXIT_CODE"]
__all__ = [
"COOKIE_SKIP_EXIT_CODE",
"IDEMPOTENT_REPLAY_EXIT_CODE",
"NON_RETRYABLE_EXIT_CODE",
]