frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Needle: We Distilled Gemini Tool Calling into a 26M Model

https://github.com/cactus-compute/needle
535•HenryNdubuaku•19h ago•157 comments

Show HN: FixMyNPM, CLI to fix your insecure npm config

https://github.com/madhugb/FixMyNPM
3•madospace•1h ago•0 comments

Show HN: Kunobi 1.0 – A local-first Kubernetes workspace for GitOps teams

https://kunobi.ninja/blog/kunobi-v1
3•kunobi•1h ago•0 comments

Show HN: Torrix, self hosted, LLM Observability,(no Postgres, no Redis)

https://github.com/torrix-ai/install
8•AdarshRao23•1h ago•0 comments

Show HN: Agentic interface for mainframes and COBOL

https://www.hypercubic.ai/hopper
82•sai18•20h ago•43 comments

Show HN: Statewright – Visual state machines that make AI agents reliable

https://github.com/statewright/statewright
101•azurewraith•23h ago•45 comments

Show HN: Pqurp – Quarantine Window for Packages to Prevent Supply Chain Attacks

https://github.com/melbahja/draft-pqurp
3•exec7•2h ago•0 comments

Show HN: Gigacatalyst – Extend your SaaS with an embedded AI builder

52•namanyayg•21h ago•20 comments

Show HN: AgentKanban for VS Code – A task board with agent harness integration

https://www.agentkanban.io/
3•gbro3n•3h ago•0 comments

Show HN: Monghoul – Desktop MongoDB GUI with schema-aware autocomplete and MCP

https://monghoul.com/
4•kontsedal•3h ago•0 comments

Show HN: Hollow – A local multi-agent OS that builds its own tools

https://github.com/ninjahawk/hollow-agentOS
2•ninjahawk1•3h ago•0 comments

Show HN: A 0.3B model that redacts PII in all 24 EU languages offline

https://huggingface.co/bardsai/eu-pii-anonimization-multilang
4•mipo57•45m ago•0 comments

Show HN: TikTok but for scientific papers

https://andreaturchet.github.io/website/index.html
180•ciwrl•1d ago•69 comments

Show HN: HYPD – AI co-pilot for marketers running Google Ads

https://www.hypd.ai/
3•cionut•4h ago•0 comments

Show HN: A modern Music Player Daemon based on Rockbox firmware

https://github.com/tsirysndr/rockbox-zig
117•tsiry•4d ago•26 comments

Show HN: OpenGravity – A zero-install, BYOK vanilla JS clone of Antigravity

https://github.com/ab-613/opengravity
102•ab613•1d ago•30 comments

Show HN: E2a – Open-source email gateway for AI agents

https://github.com/Mnexa-AI/e2a
46•mnexa•1d ago•3 comments

Show HN: I spent $100 in Claude tokens and 1k battles training my AI tank

https://agentank.ai/history/mat_8v9fSEZE8295dcZ8U
2•mazzystar•11h ago•2 comments

Show HN: An index of indie web/blog indexes

https://theindex.fyi
147•rocketpastsix•3d ago•39 comments

Show HN: I made a Clojure-like language in Go, boots in 7ms

https://github.com/nooga/let-go
273•marcingas•3d ago•83 comments

Show HN: Rust but Lisp

https://github.com/ThatXliner/rust-but-lisp
208•thatxliner•3d ago•72 comments

Show HN: Countries where you can leave your MacBook at a random coffee shop

https://vouchatlas.com
73•canergl•3d ago•89 comments

Show HN: Tmux-palette – Raycast-style command palette for tmux

https://www.eduwass.com/blog/tmux-palette/
2•eduwass•13h ago•3 comments

Show HN: Doomscroll the Goverment's UFO Files as One Gigantic Microfilm

https://hypergrid.systems/war.gov-ufo-viewer/microfilm2?page=2
20•keepamovin•1d ago•12 comments

Show HN: One-shot NAT traversal library

https://warpgate.io/
8•Uptrenda•20h ago•1 comments

Show HN: Building a web server in assembly to give my life (a lack of) meaning

https://github.com/imtomt/ymawky
423•imtomt•3d ago•225 comments

Show HN: Duckflix, an open-source self-hosted media streaming platform

https://github.com/duckflixapp/duckflix
2•patakxd•16h ago•0 comments

Show HN: GIF Pile. a site to make piles of GIFs

https://gifpile.com/
2•FatCat1979•16h ago•0 comments

Show HN: TRUST – Coding Rust like it's 1989

https://github.com/wojtczyk/trust
171•wojtczyk•6d ago•87 comments

Show HN: adamsreview – better multi-agent PR reviews for Claude Code

https://github.com/adamjgmiller/adamsreview
84•adamthegoalie•2d ago•55 comments
Open in hackernews

Show HN: Torrix, self hosted, LLM Observability,(no Postgres, no Redis)

https://github.com/torrix-ai/install
8•AdarshRao23•1h ago
I work as a SAP Integration consultant and built this as a side project. Friction point: Most self hosted LLM observability tools require Postgres, Redis and non trivial infrastructure. Teams just want to see what their agents are actually doing in Production, that set up cost discorages adoption. Torrix runs as a single docker contained backed by SQLite. The full install is:

curl -o docker-compose.yml https://raw.githubusercontent.com/torrix-ai/install/main/doc... docker compose up

No external dependencies. All data stays in a local SQLite file on your machine.

It logs LLM calls through a HTTP proxy or a python/Node SDK : tokens, cost, latency, full prompt and response traces, reasoning token capture. Works with OpenAI, Anthropic, Gemini, Groq, Mistral, Azure Open AI and any Apen AI compatible end point.

Things I added as I actually used it on real agent pipelines: cost forecasting and hard budget caps, PII masking, model routing rules, evals with golden runs, AI judge, a prompt library with version history, run tags for filtering by environment, MCP server so AI Assistants can query your own logs and OTLP/HTTP ingestion for apps aöready using OpenTelemetry.

Community edition is free for one user with 7-day retention. Pro adds teams, RBAC, 30 day retention, API key management, full text search and audit logs.

SQLite doesn't scale to high write throughput. This is aimed at teams logging hundreds to low thousands of LLM calls per day, not millions. Happy to hear what people think and what is missing.

GitHub / install: https://github.com/torrix-ai/install Website: https://www.torrix.ai