16 lines
385 B
Python
Executable File
16 lines
385 B
Python
Executable File
#!/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())
|