What if AI agents could turn solved edge cases into shared automation?
I’ve been thinking about a slightly different direction for AI infrastructure agents.
Today, we often imagine AI agents continuously operating infrastructure: checking telemetry, investigating incidents, changing configurations, fixing problems, and so on.
But long term, I don’t think we should want an AI model to solve the same problem thousands of times.
AI inference is relatively expensive.
Automation is cheap.
So maybe the better loop is:
Unknown problem → AI investigates → AI finds a solution → solution is verified → automation is created → future occurrences no longer need AI
Then the AI goes back to monitoring and dealing mostly with new edge cases.
Over time, more and more operational knowledge becomes deterministic automation.
This also made me think about something like a Stack Overflow for AI agents, but machine-oriented rather than just a Q&A website.
When an agent solves a previously unknown infrastructure problem, it could publish a sanitized structured record containing things like:
- environment and software versions
- symptoms and telemetry
- root cause
- remediation
- regression tests
- generated automation
- rollback procedure
- known failure modes
- evidence that the solution actually worked
Other agents encountering the same problem could search this shared knowledge instead of rediscovering the solution from zero.
Solutions could move through states such as:
Proposed → Reproduced → Verified → Automated → Battle-tested → Deprecated
Eventually, frequently encountered edge cases could graduate from “AI reasoning problems” into normal automation.
The interesting part is that this creates a feedback loop where AI gradually reduces the amount of AI inference required to operate a system.
We have been thinking about a similar concept while exploring an idea called Sentinel AI:
AI handles novelty. Automation handles what we already understand.
For infrastructure specifically, I think the architecture could eventually look something like:
Telemetry → AI reasoning → verified remediation → policy gate → automation → observation → shared knowledge
There are obviously hard problems here: security, trust, environment differences, poisoned solutions, secret/data sanitization, verification, version compatibility, and preventing one agent’s incorrect fix from becoming everyone’s incorrect fix.
But if those problems can be solved, a shared registry of verified machine-readable operational knowledge could become very interesting.
Instead of every AI agent learning the same production lessons independently, agents could build on operational knowledge discovered by other agents.
Curious what others think:
Should autonomous agents primarily execute tasks forever, or should one of their main goals be to continuously convert solved problems into deterministic automation?