frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Jido 2.0, Elixir Agent Framework

https://jido.run/blog/jido-2-0-is-here
226•mikehostetler•7h ago•53 comments

Show HN: PageAgent, A GUI agent that lives inside your web app

https://alibaba.github.io/page-agent/
64•simon_luv_pho•6h ago•35 comments

Show HN: SitDeck – Customizable live dashboard of news, markets, threats

https://sitdeck.com
7•danushman•1h ago•4 comments

Show HN: A Claude Code skill that renders decisions as interactive HTML pages

https://github.com/jnemargut/better-plan-mode
3•jontomato•1h ago•0 comments

Show HN: Kybernis – Prevent AI agents from executing the same action twice

https://kybernis.io
3•wingrammer•2h ago•2 comments

Show HN: GitHub-powered instant developer portfolios

https://remotedevelopers.com/lander
2•plsft•2h ago•0 comments

Show HN: Poppy – A simple app to stay intentional with relationships

https://poppy-connection-keeper.netlify.app/
165•mahirhiro•19h ago•83 comments

Show HN: I built an AI exam prep platform for AWS certs after failing one myself

https://www.knowza.ai/
3•johnnyChiv•3h ago•2 comments

Show HN: Reformat Word document citations (APA/Vancouver) in <1 second

https://github.com/brodie-neuro/ScholarRef
4•brodie-neuro•5h ago•1 comments

Show HN: Anki(-Ish) for Music Theory

https://chordreps.com
3•interbolt_colin•3h ago•0 comments

Show HN: Hormuz Crisis Dashboard Real-time shipping disruption tracker

https://www.hormuztracker.com/
13•MrNekked•9h ago•0 comments

Show HN: Docker pulls more than it needs to - and how we can fix it

https://dockerpull.com
5•a_t48•2h ago•6 comments

Show HN: Mumpix – persistent memory for AI agents (works in browser and Node)

https://www.mumpixdb.com/
2•carreraellla•3h ago•1 comments

Show HN: A2A protocol for Elixir with GenServer-like ergonomics

https://github.com/actioncard/a2a-elixir
3•maxekman•4h ago•0 comments

Show HN: Git Diff for Agentic Coding

https://github.com/msoedov/justshowmediff
3•alex_mia•4h ago•0 comments

Show HN: Vet – Prevent coding agents from making mistakes

https://imbue.com/product/vet/
16•andrewlak•4h ago•4 comments

Show HN: Stacked Game of Life

https://stacked-game-of-life.koenvangilst.nl/
192•vnglst•5d ago•27 comments

Show HN: I'm an AI growth-hacking agent. My premise was a lie.

3•happymouse•5h ago•1 comments

Show HN: DeraineDB – A 33MB Vector DB in Zig/Go with Sub-Millisecond HNSW

https://github.com/RikardoBonilla/DeraineDB
4•RikardoB•5h ago•1 comments

Show HN: Cognitive architecture for Claude Code – triggers, memory, docs

https://github.com/safety-quotient-lab/psychology-agent
2•9wzYQbTYsAIc•5h ago•0 comments

Show HN: SeaRoutes, find the shortest navigable sea routes on the globe

https://searoutes.vercel.app/
4•aayushdutt•5h ago•0 comments

Show HN: Tracemap – run and visualize traceroutes from probes around the world

https://tracemap.dev/
6•solhuang•6h ago•2 comments

Show HN: OmoiOS–190K lines of Python to stop babysitting AI agents (Apache 2.0)

https://github.com/kivo360/OmoiOS
2•kanddle•7h ago•2 comments

Show HN: AgnosticUI – A source-first UI library built with Lit

https://www.agnosticui.com/
3•roblevintennis•7h ago•1 comments

Show HN: Vertex.js – A 1kloc SPA Framework

https://lukeb42.github.io/vertex-manual.html
44•LukeB42•4d ago•25 comments

Show HN: Rust compiler in PHP emitting x86-64 executables

https://github.com/mrconter1/rustc-php
65•mrconter11•4d ago•48 comments

Show HN: A shell-native cd-compatible directory jumper using power-law frecency

https://github.com/jghub/sd-switchdir
24•jghub•1d ago•10 comments

Show HN: echo.html, between Feather Wiki and Roam with commands like Emacs

https://m15o.net/echo/
3•m15o•8h ago•0 comments

Show HN: I made a zero-copy coroutine tracer to find my scheduler's lost wakeups

https://github.com/lixiasky-back/coroTracer
45•lixiasky•2d ago•3 comments

Show HN: Keep large tool output out of LLM context: 3x accuracy 95% fewer tokens

https://github.com/lourencomaciel/sift-gateway
7•loumaciel•9h ago•1 comments
Open in hackernews

Show HN: Kybernis – Prevent AI agents from executing the same action twice

https://kybernis.io
3•wingrammer•2h ago
AI agents increasingly execute real system actions: issuing refunds, modifying databases, deploying infrastructure, calling external APIs.

Because agents retry steps, re-plan tasks, and run asynchronously, the same action can sometimes execute more than once.

In production systems this can cause duplicate payouts, repeated mutations, or inconsistent state.

Kybernis is a reliability layer that sits at the execution boundary of agent systems.

When an agent calls a tool:

1. execution intent is captured 2. the action is recorded in an execution ledger 3. idempotency guarantees are attached 4. the mutation commits exactly once

Retries become safe.

Kybernis is framework-neutral and works with agent frameworks like LangGraph, AutoGen, CrewAI, or custom systems.

I built this after repeatedly seeing reliability failures when AI agents interacted with production APIs.

Would love feedback from anyone building agent systems.

Comments

wingrammer•2h ago
Hi HN – I'm the founder of Kybernis.

The core problem we’re exploring is that AI agents are non-deterministic systems operating inside deterministic infrastructure.

Traditional systems assume actions run once.

Agents retry steps, re-plan tasks, and execute asynchronously.

That combination makes duplicate execution surprisingly easy.

Kybernis focuses on the execution boundary where agents trigger real mutations (payments, infrastructure changes, APIs).

Curious if others deploying agents have run into similar reliability issues.

moehj•50m ago
"This is exactly the reliability gap we've been building around too. ARU (aru-runtime.com) approaches it from the certification angle — validating agent outputs against a contract before execution rather than after. Kybernis handles the idempotency problem at the execution boundary, ARU handles the output validity problem upstream. These could be complementary layers. Have you thought about pre-execution validation as part of the stack?"