HN user

kspetkov79

11 karma

Building small tools for developers.

Currently working on MissedRun — simple monitoring for cron jobs and background tasks that fail silently. https://missedrun.com

Posts0
Comments26
View on HN
No posts found.

Nice side project. The thing I’d be slightly nervous about is the football-data cron. On small apps like this, it’s often not the app crashing, it’s some scheduled job quietly stopping and the data going stale. How would you notice that here? GitHub Actions notifications, logs, or just manual checking?

Human Bottlenecks 2 months ago

The missing part is usually the real workflow. If there is no output and no cost for being wrong, the AI tool just becomes another toy to maintain.

On-call makes the boring parts hard to ignore: alerts, ownership, rollback, and knowing what changed. A clean design matters much more when someone has to debug it half asleep.

The format is less important than the reason. A neat prefix does not help much if the commit still does not explain why the change was made.

The important part is not letting the LLM close the loop on itself. It can suggest bugs, but a real test has to prove them.

The microkernel argument makes sense in theory, but the real bottleneck has always been driver complexity. If LLMs can reliably generate verified drivers with formal correctness guarantees, that changes the equation significantly. Until then, Linux's ecosystem inertia wins every time.

The git-as-coordination-mechanism is clever. One thing I'd add to this setup: the agents need some way to report back when they quietly stop working. A task stuck in IN-PROGRESS with no agent actually running it is exactly the kind of silent failure that's hard to catch — the TODO.org looks fine but nothing is happening. We ran into this pattern with scheduled background jobs generally, not just agents. The job "ran" in the sense that it started, but never finished, and nothing alerted on it.