feat: consolidate legacy workflows into gyxx-flow

This commit is contained in:
2026-07-28 14:51:15 +08:00
commit c23b62a8c8
374 changed files with 132990 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
"""Replaceable infrastructure adapters exposed to business modules."""
from .browser import BrowserCookieStore, BrowserProfileLease, BrowserProfileManager
from .external import (
FeishuOutboxAdapter,
HermesCommandAdapter,
PostgresOutboxAdapter,
ReloginOutboxAdapter,
)
from .integration import (
RuntimeIntegrationBinding,
RuntimeIntegrationCatalog,
RuntimeIntegrationError,
RuntimeServicePolicy,
binding_from_environment,
environment_for_child_script,
)
from .native import (
DeferredModuleCommandStep,
ModuleCommandAdapter,
ModuleCommandFactory,
ModuleSourceError,
ModuleSourceRoots,
)
__all__ = [
"BrowserCookieStore",
"BrowserProfileLease",
"BrowserProfileManager",
"DeferredModuleCommandStep",
"FeishuOutboxAdapter",
"HermesCommandAdapter",
"ModuleCommandAdapter",
"ModuleCommandFactory",
"ModuleSourceError",
"ModuleSourceRoots",
"PostgresOutboxAdapter",
"ReloginOutboxAdapter",
"RuntimeIntegrationBinding",
"RuntimeIntegrationCatalog",
"RuntimeIntegrationError",
"RuntimeServicePolicy",
"binding_from_environment",
"environment_for_child_script",
]