yburn: Tool to audit and replace unnecessary AI agent cron jobs

yburn is a Python tool that helps identify and replace AI agent cron jobs that don't actually need LLM processing. The tool was created after noticing that many cron jobs were "basically just shell scripts with extra steps" and were unnecessarily burning tokens.
What yburn does
After auditing 98 live cron jobs, the creator found 57 (58%) were "purely mechanical" tasks where the LLM was "adding zero value." These included:
- System health checks
- Git backups
- Endpoint monitors
- Database maintenance
The audit revealed these cron jobs were "hitting the API, waiting 30 seconds, and returning something a 10-line Python script could do in 200ms for free."
Features
yburn provides several concrete features:
- Audits your crons and classifies them (no LLM used during classification)
- Generates standalone Python scripts from templates (stdlib only)
- Replaces the original cron entry while keeping the same schedule
- Includes rollback capability if anything breaks
Included utilities
The package ships with two ready-to-use tools for common mechanical cron jobs:
yburn-health- system monitoryburn-watch- endpoint uptime + SSL expiry monitor
Both are described as "zero-dependency drop-ins" for the most common mechanical crons.
Technical details
Installation: pip install yburn
License: MIT
Python version: 3.9+
Source: https://github.com/oscarsterling/yburn
The creator is seeking feedback on what ratio of unnecessary LLM cron jobs others see in their setups, as well as improvements or contributions to the tool.
📖 Read the full source: r/openclaw
👀 See Also

bareguard: A Lightweight Safety Gate for AI Agents — Now on npm
bareguard v1.0 is a ~1000-line, single-dependency safety layer for AI agents that blocks destructive actions (rm -rf, DROP TABLE) and enforces budget limits with human escalation. Part of the bare suite, live on npm.

Open-Source Job Search Framework Built in Claude Code
A developer created an open-source job search framework in Claude Code that handles structured self-profiling, automated job portal scraping, fit evaluation, and a drafter-reviewer agent pipeline for tailored applications. The system stops before submission and requires manual review.

120 Prompt Patterns Tested: 8 That Actually Work for Claude Code
A 3-month empirical test of 120 prompt patterns for Claude Code yields 8 actionable commands and 5 validation prompts. Key patterns: L99 (cuts hedging), /ghost (removes AI voice), OODA (structured reasoning), ULTRATHINK (deep reasoning), HARDMODE (constraint debugging).

Prompt-caching MCP plugin automatically reduces Claude API costs by identifying stable context
The prompt-caching MCP plugin automatically identifies stable parts of context like system prompts and tool definitions, then marks them for Anthropic's caching feature to reduce API costs by 80-92% in coding sessions.