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

Agent Memory Protocol (AMP): Open Spec for Interoperable AI Agent Memory on Top of MCP
AMP defines a standard interface for persistent memory in MCP-compatible agents with six core verbs: encode, recall, forget, consolidate, pin, and stats. Includes compliance test suite and reference implementation.

OpenClaw Plugin Connects AI Agents to Meshtastic Radio Mesh for Off-Grid Operation
A new open-source plugin bridges the OpenClaw framework with Meshtastic's LoRa radio mesh network, enabling AI conversations, API queries, and device control without internet or cellular connectivity.

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.

MCP Server Tracks Known Bugs in Dev Tools to Improve LLM Recommendations
nanmesh-mcp is an MCP server that crawls GitHub Issues, Stack Overflow, and Reddit to track real problems in 57 development tools, providing LLMs with current bug data before making library recommendations.