frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Hackney – Compare Uber, Lyft, Waymo, and Robotaxi Prices

https://hackney.app/
22•griffinli•11h ago•16 comments

Show HN: YouTube Guitar Tab Parser

https://github.com/marcelpanse/youtube-guitar-tab-parser
72•neogenix•5h ago•47 comments

Show HN: Sx 2.0 – Share AI skills with your team through a Dropbox folder

https://sleuth-io.github.io/sx/2026/07/10/your-dropbox-is-now-a-skill-server.html
10•detkin•2h ago•0 comments

Show HN: Jacquard, a programming language for AI-written, human-reviewed code

https://github.com/jbwinters/jacquard-lang
51•jbwinters•10h ago•20 comments

Show HN: I implemented a neural network in SQL

https://github.com/xqlsystems/xarray-sql/blob/claude/xarray-sql-mnist-demo/benchmarks/nn.py
59•alxmrs•5h ago•13 comments

Show HN: ContextVault – Shared memory layer for your AI and your team

https://www.contextvault.dev/
7•Repeater22746•2h ago•0 comments

Show HN: BillAI Bass, an AI-Powered Big Mouth Billy Bass Using Strands Agents

https://github.com/morganwilliscloud/billai-bass
57•mtw14•7h ago•26 comments

Show HN: Free and open source browser extension for web automation

https://waffy.io
2•aravind-manoj•39m ago•0 comments

Show HN: Sigwire – a live TUI switchboard for every signal on your Linux box

https://github.com/yeet-src/sigwire
28•zasc•5h ago•11 comments

Show HN: DOM-docx – HTML to native, editable Word docs (MIT)

https://github.com/floodtide/dom-docx
137•fishbone•14h ago•32 comments

Show HN: MemStitch – Zero-copy context bridging for vLLM (25x TTFT speedup)

https://github.com/DaqulaLin/MemStitch
2•daqulalin•54m ago•0 comments

Show HN: OpenClawMachines – Extending OpenClaw to the Enterprise

https://github.com/mathaix/OpenClawMachines
26•mathaix•8h ago•26 comments

Show HN: Taetype – a complete font engine for Rust and WASM

https://github.com/silly-tae/taetype
3•silly-tae•2h ago•1 comments

Show HN: I built a one-prompt hackathon platform, free entry, sponsored prizes

https://1shotchallenge.ai
9•lucasmartinic•3h ago•5 comments

Show HN: Microphone – Talk out your side-project ideas, then test them with ads

https://www.trie.dev/
2•Kriptering•1h ago•0 comments

Show HN: I MitM'd Plex to make remote streaming suck less

https://github.com/inhumantsar/plex-proxy/
2•inhumantsar•1h ago•2 comments

Show HN: Clawk – Give coding agents a disposable Linux VM, not your laptop

https://github.com/clawkwork/clawk
174•celrenheit•11h ago•140 comments

Show HN: Made a Free LLM Router

https://www.flexinference.com
2•Aperswal•1h ago•0 comments

Show HN: The New Cyborgs Don't Have Implants

https://www.bulaev.net/p/the-new-cyborgs-dont-have-implants
2•sbulaev•1h ago•1 comments

Show HN: FixBugs – Reproduce production bugs and verify fixes

https://fixbugs.ai
10•kirtivr•2h ago•10 comments

Show HN: Context Warp Drive – deterministic, zero-LLM context compaction

https://github.com/dogtorjonah/context-warp-drive
2•Dr_Jonah•2h ago•0 comments

Show HN: Free API of 248M aggregated VEX statements: 45% of CVEs not affected

https://getreel.dev/vex
2•simoneree•2h ago•0 comments

Show HN: Nihonpost – I parsed Japan Post's KEN_ALL.CSV so you don't have to

https://github.com/Thiya11/nihonpost
3•kitsunechaos•3h ago•0 comments

Show HN: A reproducible harness for catching agent-eval cheating

https://github.com/sebuzdugan/agent-eval-harness
2•sebuzdugan•3h ago•0 comments

Show HN: Raftig – Plant Breeding X Naval Combat Roguelike

https://raftig.seldoncortex.com/
2•EstanislaoStan•3h ago•0 comments

Show HN: Nobie – an Excel-compatible runtime for agents and humans

https://nobie.com
75•matthewgapp•7h ago•46 comments

SHOW HN: Every Repo as a Unique Galaxy

https://gitgalaxy.io/
3•squid-protocol•4h ago•1 comments

Show HN: GrindProof – accountability app that roasts your plan-vs-reality gap

https://www.grindproof.co/
2•Codefred•4h ago•0 comments

Show HN: Fleet Deck – see every Claude Code session on your machine in one board

https://github.com/lacion/fleet-deck
2•lacion•5h ago•0 comments

Show HN: AgentsProof – a small project for testing AI agents

https://www.agentsproof.dev/
2•adeeonline•5h ago•1 comments
Open in hackernews

Show HN: FixBugs – Reproduce production bugs and verify fixes

https://fixbugs.ai
10•kirtivr•2h ago
I built FixBugs, an agent that ingests the rich context surrounding production bugs to reproduce them in a sandbox and generate verified fixes. It's available in the form of a self-hosted VSCode extension and as a Github app:

VSCode Extension: https://fixbugs.ai/go/vscode-extension

  - full code and data privacy.
  - zero data retention models opted out of training.
GitHub App: https://fixbugs.ai/go/github-app

  - we do access your code temporarily.
  - pick a repo to install FixBugs on.
What motivated me to build FixBugs were my years being on-call at Google and VMware. How many hours did I spend gathering logs, traces, reviewing metrics, and reading code only to find that,

* Some context was missing.

* The bug wasn't reproducible.

* The alert was caused by a transient infrastructure issue.

Too many. Inefficiency in investigating staging/production bugs has a real cost, and it's paid both by developers and customers.

Current capabilities:

  - Reproduce the bug.

  - Identify the root cause.

  - Generate a fix.

  - Verify the fix.

  - Review the generated code using multiple AI models to help catch potential regressions.
Do try it and let me know what you think!

I'd especially love feedback from engineers who work with distributed systems or handle high-volume production bug triage.

Comments

mundanevoice•1h ago
It seems like a cool idea.
kirtivr•1h ago
Thanks a lot!

I think FixBugs is most useful during high volume bug triage. This is where having a low false-positive async debugging agent is most helpful.

kirtivr•1h ago
A different approach that we took to root causing bugs that you may find interesting is that we first try to reproduce the bug before coming up with a fix for it.

This is essentially a (RCA <-> Repro test case) loop until we're recreated the bug. If our attempts are not converging and we’re on the wrong track, we ask for human input.

yizluo•39m ago
very nice tool! helpful and I love it
kirtivr•26m ago
Thank you so much.

are you using any AI tools to debug productions issues at this time?

raghu16•38m ago
Also, How is the VSCode extension reproducing the bug on my machine? That sounds dangerous.
kirtivr•30m ago
Oh the repro runs in an isolated sandbox, and all interactions outside the sandbox (with lets say other services or databases) are mocked. The repro harness doesn't have access outside of it.

This also allows us to inject various types of faults, which is helpful with debugging more complex systems.

sriramkalluri3•30m ago
Great tool to triage the reported issues in bugs and fix them swiftly. This will definitely improves your productivity.
kirtivr•27m ago
Thank you so much.

are you using any AI tools to debug productions issues at this time?

sriramkalluri3•29m ago
Great tool to triage and fix the issues in bug. Improves your productivity massively.