Files
HOALedgerIQ_Website/TOOLS.md
olsch01 30991fedd7 docs: Add OpenClaw cron job documentation to TOOLS.md
- Documented that ALL cron jobs must use OpenClaw native cron system
- Listed all active cron jobs with schedules
- Added CLI reference and documentation links
- Emphasized NOT using system crontab
2026-04-01 19:57:00 -04:00

2.5 KiB

TOOLS.md - Local Notes

Skills define how tools work. This file is for your specifics — the stuff that's unique to your setup.

What Goes Here

Things like:

  • Camera names and locations
  • SSH hosts and aliases
  • Preferred voices for TTS
  • Speaker/room names
  • Device nicknames
  • Anything environment-specific

Examples

### Cameras
- living-room → Main area, 180° wide angle
- front-door → Entrance, motion-triggered

### SSH
- home-server → 192.168.1.100, user: admin

### TTS
- Preferred voice: "Nova" (warm, slightly British)
- Default speaker: Kitchen HomePod

Why Separate?

Skills are shared. Your setup is yours. Keeping them apart means you can update skills without losing your notes, and share skills without leaking your infrastructure.


Git Repositories


Cron Jobs - OpenClaw Native

All cron jobs MUST use OpenClaw's native cron system (openclaw cron add), NOT system crontab.

Why OpenClaw Cron?

  • Integrated with Gateway session management
  • Proper logging and monitoring
  • Can trigger agent sessions, system events, or shell commands
  • Supports both cron expressions and every duration-based scheduling
  • Managed via openclaw cron CLI commands

Available Cron Jobs:

  • reddit-scout - 8:00 AM & 3:00 PM daily - Scans r/HOA for opportunities
  • sales-lead-hourly - Every hour - Monitors CRM for new leads
  • fitness-workout-8am - 8:00 AM daily - Sends workout
  • seo-daily-report-8am - 8:00 AM daily - SEO/GA4 morning brief
  • morning-brief-9am - 9:00 AM daily - Business intelligence brief
  • marketing-content-daily - 9:00 AM daily - Content generation

Commands:

# List all cron jobs
openclaw cron list

# Add a new cron job
openclaw cron add --name "job-name" --cron "0 8 * * *" --message "Command or agent task"

# Add recurring job (every X minutes/hours)
openclaw cron add --name "frequent-job" --every "30m" --message "Task"

# View job details
openclaw cron list --json

# Run a job manually (debug)
openclaw cron run --name "job-name"

# Remove a job
openclaw cron rm --name "job-name"

Documentation:


Add whatever helps you do your job. This is your cheat sheet.