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

AgenticStore MCP: Python Toolkit for Claude Desktop with 27 Local Tools
AgenticStore MCP is an open-source Python toolkit that replaces multiple MCP servers with a single installation, giving Claude Desktop 27 local tools including persistent memory, web search, and repo auditing without requiring Docker or Node.js configuration.

Claude Code user builds nvm plugin to capture problem-solving context
A developer created a Claude plugin called nvm (non-volatile memory) that converts Claude session history into markdown cards documenting problem-solving decisions and reusable insights. The tool addresses the issue of losing track of how problems were solved when using AI coding assistants.

PocketBot: iOS app uses Claude to generate deterministic JavaScript automations from natural language
PocketBot is an iOS mobile automation app that uses Claude via AWS Bedrock to convert plain-language requests into self-contained JavaScript scripts. The LLM writes the code once, then the deterministic scripts run on schedule in a sandboxed runtime without AI involvement.

Claude Skills: 12 Strict Coding Rule Packs for TypeScript, Rust, Swift, Go, JS, Postgres, and Audits
12 markdown files with opinionated, version-aware rules for TS, Rust, Swift, Go, JS, Postgres, security, performance, testing, code review, GitHub standards, and git commits. MIT, free, no signup.