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

Developer Builds MCP Server for Claude WhatsApp Integration, Shares Challenges
A developer built an MCP server to give Claude access to real WhatsApp conversations, discovering that conversation context management was trickier than expected and required a database to track conversations.

Qwen2-0.5B Fine-Tuned for Local Task Automation with llama.cpp
A developer fine-tuned Qwen2-0.5B for task automation using LoRA on ~1000 custom examples, creating a 300MB GGUF model that runs locally on CPU via llama.cpp. The model takes natural language tasks, detects task types, and generates execution plans with CLI commands and hotkeys.

Forge: Open-Source Claude Code Plugin Adds Governance and Testing Gates
Forge is an open-source Claude Code plugin that adds file locking, automated test gates, and 22 governance agents to prevent collisions and drift in AI-generated code workflows. It's MIT licensed and installs via the Claude plugin marketplace.

Spectyra Plugin for OpenClaw: Real-Time AI Cost Optimization by Analyzing Full Request Flow
Spectyra plugin reduces AI API costs by surfacing hidden waste like repeated calls, excessive context, and expensive model misuse in real time.