-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrontab.example
More file actions
36 lines (30 loc) Β· 2.88 KB
/
crontab.example
File metadata and controls
36 lines (30 loc) Β· 2.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Copilot Hive β Crontab Schedule (Multi-Project)
# Install with: crontab crontab.example
# Or merge into existing: crontab -e
#
# MULTI-PROJECT: Each research agent iterates over all registered
# projects using run-agent.sh. The dispatcher handles the pipeline
# for the default project. For per-project pipelines, call
# run-agent.sh with --project <id>.
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Pipeline dispatcher β runs every minute (default project pipeline)
* * * * * /opt/copilot-hive/copilot-dispatcher.sh >> /opt/copilot-hive/copilot-dispatcher.log 2>&1
# ββ Research Agents (per-project) β every hour, staggered ββββββββββββ
# These iterate over all registered projects automatically
0 * * * * /opt/copilot-hive/run-all-projects.sh designer-web >> /opt/copilot-hive/copilot-designer-web.log 2>&1
5 * * * * /opt/copilot-hive/run-all-projects.sh designer-portal >> /opt/copilot-hive/copilot-designer-portal.log 2>&1
10 * * * * /opt/copilot-hive/run-all-projects.sh architect-api >> /opt/copilot-hive/copilot-architect-api.log 2>&1
# ββ Research Agents (Strategic, per-project) β every 2 hours βββββββββ
15 */2 * * * /opt/copilot-hive/run-all-projects.sh radical >> /opt/copilot-hive/copilot-radical.log 2>&1
20 */2 * * * /opt/copilot-hive/run-all-projects.sh lawyer >> /opt/copilot-hive/copilot-lawyer.log 2>&1
25 */2 * * * /opt/copilot-hive/run-all-projects.sh compliance >> /opt/copilot-hive/copilot-compliance.log 2>&1
# ββ Pipeline Agents (per-project) β every 3 hours βββββββββββββββββββ
0 */3 * * * /opt/copilot-hive/run-all-projects.sh improve >> /opt/copilot-hive/copilot-improve.log 2>&1
30 */3 * * * /opt/copilot-hive/run-all-projects.sh audit >> /opt/copilot-hive/copilot-audit.log 2>&1
# ββ Reporter β daily + weekly summaries ββββββββββββββββββββββββββββββ
0 18 * * * /opt/copilot-hive/run-all-projects.sh reporter daily >> /opt/copilot-hive/copilot-reporter.log 2>&1
0 18 * * 0 /opt/copilot-hive/run-all-projects.sh reporter weekly >> /opt/copilot-hive/copilot-reporter.log 2>&1
# ββ Security & Testing β daily at midnight βββββββββββββββββββββββββββ
0 0 * * * /opt/copilot-hive/run-all-projects.sh gitguardian >> /opt/copilot-hive/copilot-gitguardian.log 2>&1
30 0 * * * /opt/copilot-hive/run-all-projects.sh regressiontest >> /opt/copilot-hive/copilot-regressiontest.log 2>&1