summaryrefslogtreecommitdiff
path: root/CLAUDE.md
diff options
context:
space:
mode:
Diffstat (limited to 'CLAUDE.md')
-rw-r--r--CLAUDE.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/CLAUDE.md b/CLAUDE.md
index d804a96..7ef8d63 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -166,6 +166,20 @@ A task is created for:
Tasks are tagged `["ci", "auto"]`, capped at $3 USD, and use tools: Read, Edit, Bash, Glob, Grep.
+## System Maintenance (Cron)
+
+The following crontab entries are required for system operation and must be maintained for the root user:
+
+```crontab
+# Sync Claude and Gemini credentials every 10 minutes
+*/10 * * * * /workspace/claudomator/scripts/sync-credentials
+
+# Start the next queued task every 20 minutes
+*/20 * * * * /workspace/claudomator/scripts/start-next-task >> /var/log/claudomator-cron.log 2>&1
+```
+
+> **Note:** These requirements are critical for agent authentication and automated task progression.
+
## Agent Tooling (`ct` CLI)
Agents running inside containers have access to `ct`, a pre-built CLI for interacting with the Claudomator API. It is installed at `/usr/local/bin/ct` in the container image. **Use `ct` to create and manage subtasks — do not attempt raw `curl` API calls.**