chore: initial import

This commit is contained in:
chelsea
2025-11-11 23:11:59 -06:00
parent 7598942bc5
commit c15fe83651
28 changed files with 3755 additions and 4 deletions

14
agentic_review.py Normal file
View File

@@ -0,0 +1,14 @@
import os
from AgenticWorkflow import AgenticWorkflow
def main():
user_id = os.getenv("TARGET_USER_ID")
operator_hint = os.getenv("AGENTIC_OPERATOR_HINT")
response = AgenticWorkflow.runHourlyReview(user_id, operator_hint)
print(f"[agentic] response: {response}")
if __name__ == "__main__":
main()