caged / lighthouse-digest
lighthouse-digest
PublicEmail yourself daily/weekly/monthly summaries of Lighthouse tickets based on keywords you give it
5 filesupdated Jun 18, 2026
files5Download
./libJun 16, 2026.gitmodulesJun 16, 2026LICENSEJun 16, 2026lighthouse-digest.rbJun 16, 2026README.markdownJun 18, 2026README
Lighthouse Digest
Use this with launchd to create digest emails for Lighthouse tickets. Example uses:
- Send a summary of stale tickets to members on your team every week.
- Get daily summaries of tickets created that day
- Get daily summaries of tickets closed that day
Here is a typical launchd script to email you once a week. Place this in ~/Library/LaunchAgents/com.lighthouseapp.project.digest.
<pre><code> <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Label</key> <string>com.lighthouseapp.activereload.digest</string> <key>ProgramArguments</key> <array> <string>ruby</string> <string>/Users/Caged/myscript.rb</string> </array> <key>RunAtLoad</key> <false/> <key>StartCalendarInterval</key> <dict> <key>Hour</key> <integer>0</integer> <key>Minute</key> <integer>0</integer> <key>Weekday</key> <integer>1</integer> </dict> </dict> </plist> </code></pre>Load it
<pre><code>launchctl load ~/Library/LaunchAgents/com.lighthouseapp.PROJECT.digest</code></pre>Test it using the label you give it in the plist
<pre><code>launchctl start com.lighthouseapp.PROJECT.digest</code></pre>Stopping it
If you want to stop this script for good, unload it:
<pre><code>launchctl unload ~/Library/LaunchAgents/com.lighthouseapp.PROJECT.digest</code></pre>