"""AA-045-F3: Briefing-CLI-Default auf action_filter='' (alle postbaren ohne Briefing)."""
p = "/opt/struktur/social-media-radar/content_briefing.py"
s = open(p).read()
old = '''if __name__ == "__main__":
lim = 500
action = "pruefen"'''
new = '''if __name__ == "__main__":
lim = 500
# AA-045-F3: Default leer => alle postbaren Signale ohne Briefing
action = ""'''
assert old in s
s = s.replace(old, new)
open(p, "w").write(s)
print("CLI default gepatcht")