Add daily brief + weekly review cron scripts for autonomous scheduling

This commit is contained in:
Epictetus
2026-07-22 15:24:59 +00:00
parent 01c918d4ac
commit 98e96e78a5
2 changed files with 26 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/usr/bin/env bash
# Oracle daily brief — cron entry point (no_agent; stdout is delivered verbatim).
set -u
ORACLE_DIR="/home/vpsadmin/oracle"
cd "$ORACLE_DIR" || { echo "FATAL: cannot cd $ORACLE_DIR"; exit 1; }
echo "# Oracle AI Research Brief — $(date -u +%Y-%m-%d)"
echo ""
python3 -m oracle brief --max-items 10 --max-age-h 48 2>&1
echo ""
echo "---"
echo "Generated $(date -u) | Oracle pipeline"
+13
View File
@@ -0,0 +1,13 @@
#!/usr/bin/env bash
# Oracle weekly review — cron entry point (no_agent; stdout is delivered verbatim).
set -u
ORACLE_DIR="/home/vpsadmin/oracle"
cd "$ORACLE_DIR" || { echo "FATAL: cannot cd $ORACLE_DIR"; exit 1; }
echo "# Oracle Weekly Review — $(date -u +%Y-%m-%d)"
echo ""
python3 -m oracle weekly --days 7 2>&1
echo ""
echo "---"
echo "Generated $(date -u) | Oracle pipeline"