Release v4928.1.4.2 stable

This commit is contained in:
2026-06-09 22:55:58 +01:00
commit 6445044ac6
280 changed files with 41775 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#!/usr/bin/env python3
"""Automatic follow-up task creation is disabled in the clean architecture.
The current design keeps LLM triage action_codes short and uses
opportunity/business events for pipeline follow-up state.
"""
def main() -> int:
print("Automatic legacy follow-up task creation is disabled.")
return 0
if __name__ == "__main__":
raise SystemExit(main())