Readit News logoReadit News
v_CodeSentinal commented on Show HN: Autonoma – a local-first autonomous code remediation engine   github.com/VihaanInnovati... · Posted by u/v_CodeSentinal
v_CodeSentinal · 17 days ago
Hi HN — I’m the creator of Autonoma.

Autonoma is an open-source, local-first autonomous code remediation engine. It analyzes code at the AST level and uses a local LLM (currently Qwen 2.5-Coder) to automatically detect and fix a bounded set of high-impact issues such as hardcoded secrets, insecure password handling, SQL injection patterns, and common linting problems.

This is a pilot edition: single-repository, on-prem only, no governance layer, no audit logs, no RBAC, and no enterprise guarantees. The goal is to explore what practical, bounded autonomy looks like for code remediation — not to claim production or enterprise readiness.

Everything runs locally, the code is fully inspectable, and fixes are intentionally constrained to deterministic categories.

I’m especially interested in feedback around safety, determinism, failure modes, and where this approach breaks down.

v_CodeSentinal commented on The future of software engineering is SRE   swizec.com/blog/the-futur... · Posted by u/Swizec
v_CodeSentinal · 18 days ago
Hard agree. As LLMs drive the cost of writing code toward zero, the volume of code we produce is going to explode. But the cost of complexity doesn't go down—it actually might go up because we're generating code faster than we can mentally model it.

SRE becomes the most critical layer because it's the only discipline focused on 'does this actually run reliably?' rather than 'did we ship the feature?'. We're moving from a world of 'crafting logic' to 'managing logic flows'.

v_CodeSentinal commented on Things I've learned in my 10 years as an engineering manager   jampa.dev/p/lessons-learn... · Posted by u/jampa
v_CodeSentinal · 18 days ago
The point about 'no such thing as a free lunch with processes' is something I wish more junior EMs understood.

I've seen so many teams treat process as a pure 'fix', ignoring that it's always a trade-off: you are explicitly trading velocity for consistency. Sometimes that trade is worth it (e.g., payments), but often for internal tools, you're just paying a tax for consistency you don't actually need.

Deleted Comment

v_CodeSentinal commented on Case study: Creative math – How AI fakes proofs   tomaszmachnik.pl/case-stu... · Posted by u/musculus
v_CodeSentinal · 18 days ago
This is the classic 'plausible hallucination' problem. In my own testing with coding agents, we see this constantly—LLMs will invent a method that sounds correct but doesn't exist in the library.

The only fix is tight verification loops. You can't trust the generative step without a deterministic compilation/execution step immediately following it. The model needs to be punished/corrected by the environment, not just by the prompter.

v_CodeSentinal commented on Ask HN: How do you keep system context from rotting over time?    · Posted by u/kennethops
v_CodeSentinal · 18 days ago
I've been working on this problem specifically in the context of autonomous coding agents, and you hit the nail on the head with 'implicit context'.

The biggest issue isn't just that documentation gets outdated; it's that the 'mental model' of the system only exists accurately in a few engineers' heads at any given moment. When they leave or rotate, that model degrades.

We found the only way to really fight this is to make the system self-documenting in a semantic way—not just auto-generated docs, but maintaining a live graph of dependencies and logic that can be queried. If the 'map' of the territory isn't generated from the territory automatically, it will always drift. Manual updates are a losing battle.

v_CodeSentinal commented on Show HN: Autonoma – Air-Gapped AI Code Engineer (L5 Autonomy)   vihaaninnovations.github.... · Posted by u/v_CodeSentinal
v_CodeSentinal · 23 days ago
I built Autonoma because I was tired of Copilot suggesting code that didn't compile.

Autonoma is a local daemon that acts as an "L5 Autonomous Engineer". It doesn't just autocomplete; it autonomously fixes bugs, security vulnerabilities, and linter errors in the background.

Key features: - Air-Gapped: Runs 100% locally (Docker). No code leaves your machine. - Self-Correcting: It validates its own fixes against your compiler/linter. - Deterministic: Uses Tree-Sitter for AST analysis to prevent syntax hallucinations.

Would love feedback on the install process. The "Enterprise" tier is just for support—the core engine is fully open for the community.

u/v_CodeSentinal

KarmaCake day48January 3, 2026
About
Working on systems for autonomous code execution and failure containment.
View Original