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

WeAreHere Browser Extension and MCP Tools Scan Website Privacy Practices
Two open-source tools—barebrowse and wearehere—scan websites for trackers, fingerprinting, and data broker connections. The wearehere browser extension shows real-time privacy scores (0-100) as you browse, while MCP servers enable AI assistants to assess any site on command.

Inline Visualizer: Local AI Models Can Now Render Interactive HTML Visualizations
Inline Visualizer is a BSD-3 licensed plugin for Open WebUI that enables any local AI model with tool calling support to render interactive HTML/SVG visualizations directly in chat, with a JavaScript bridge allowing elements to send messages back to the AI.

ApexClaw: Open-Source Telegram AI Agent with 85+ Tools for Web Automation, Voice, and Email
ApexClaw is an open-source Telegram AI agent written in Go that provides 85+ built-in tools including web browsing with headless Chrome, voice note processing, Gmail integration, and shell script execution. It's self-hosted and uses the z.ai engine for reasoning.

GoStaff: Go Rewrite of OpenClaw with 100x Memory Reduction
GoStaff is a Go rewrite of OpenClaw that uses approximately 100x less memory (~17MB) while maintaining OpenClaw plugin compatibility through a JavaScript shim. It features a three-tier skill system, unified Postgres persistence, and multi-provider ReAct loops.