frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Remux – an open-source tmux workspace designed for iPhone

https://github.com/h3nock/remux
17•bitwise42•1h ago•1 comments

Show HN: Whetuu – a zero-config cross-shell prompt written in Zig

https://yamafaktory.github.io/whetuu/
8•yamafaktory•1h ago•2 comments

Show HN: macOS menu-bar manager for SSH port forwards

https://github.com/lx2026/RelayBar
11•linxy97•1h ago•1 comments

Show HN: OneCLI – OSS credential gateway that keeps secrets out of AI agents

https://onecli.sh
2•Jonathanfishner•14m ago•0 comments

Show HN: I made YAFL – a E2EE file handoff for AI agents

https://yafl.dev
3•marcushorndt•1h ago•0 comments

Show HN: Find undervalued bikes near you with ML

https://bike.broker
3•azuroscloudapi•43m ago•0 comments

Show HN: A primer for non-coders to design software via structured AI dialogue

https://github.com/CoreGrowthLabs/CoreGrowthPrompting/blob/main/README.en.md
3•CGP_Labs•44m ago•0 comments

Show HN: I built a zero-latency developer tool suite in pure Vanilla JavaScript

https://omnideck.cc/
3•AAPD_Studio•1h ago•3 comments

Show HN: MinkNote – Native macOS notes and journaling using Markdown files

https://muse23.com/apps/minknote/
2•demianturner•45m ago•0 comments

Show HN: Palmier Pro – open-source macOS video editor built for AI

https://github.com/palmier-io/palmier-pro
3•hchtin•46m ago•0 comments

Show HN: ManiDesk – SQL workspace joining market, macro and fundamental analysis

https://mani-desk.com/
3•franklin_m•50m ago•2 comments

Show HN: What's AI's go-to, public or private healthcare?

https://www.modelbias.ai/prompt/public-or-private-healthcare
5•bnfcl•1h ago•2 comments

Show HN: STT-MCP – local STT for agents

https://github.com/sm18lr88/STT-MCP
2•hereme888•51m ago•0 comments

Show HN: Verify what an AI agent did, then tamper with the record (no signup)

https://api.cinchor.com/proof/refund
2•foh_quarters•56m ago•0 comments

Show HN: WatchMachineGo – A visualizer to show hardware performing LLM inference

https://watchmachinego.com/llm-inference
2•dev_dan_2•56m ago•1 comments

Show HN: Hanky – ETL style framework for loading flash cards into Anki

https://github.com/Haeata-Ash/hanky
4•funfruit•2h ago•0 comments

Show HN: Hosted PaddleOCR-VL-1.6 API

https://www.openparser.dev/
5•TimurKramar•58m ago•0 comments

Show HN: Dally – A little every day adds up

https://mctools.site
9•totaldude87•2h ago•0 comments

Show HN: Plox – Lox compiler in ~600 LOC from the 'Crafting Interpreters' book

https://github.com/eliasdejong/plox
2•eliasdejong•1h ago•0 comments

Show HN: GapQuery – find app-market gaps from 35,600 apps and their reviews

https://www.gapquery.com
2•northify•1h ago•0 comments

Show HN: BatchEdits – Batch AI video editor to edit content in volume

https://batchedits.com
3•shayannadeem321•1h ago•1 comments

Show HN: Cactus Hybrid: We taught Gemma 4 to know when it's wrong

https://github.com/cactus-compute/cactus-hybrid
176•HenryNdubuaku•22h ago•37 comments

Show HN: Carta – An open-source pandoc reimplementation in Rust

https://github.com/mfkrause/carta
2•mfkrause•1h ago•0 comments

Show HN: 5dive – Run a Company of Claude Code/Codex Agents (Written in Bash)

https://github.com/5dive-ai/5dive
2•lodar•1h ago•0 comments

Show HN: 15 years of hand-curated architecture, art and design as an MCP server

https://www.thisispaper.com/intelligence/api-docs
2•zaxarov•1h ago•0 comments

Show HN: Setoku - self-hosted knowledge server for AI agents

https://setoku.com/
2•rgbrgb•1h ago•1 comments

Show HN: Personal Jarvis, an open source voice assistant that runs your PC

https://github.com/PersonalJarvis/PersonalJarvis
2•PersonalJarvis•1h ago•0 comments

Show HN: Avoiding the Memory Wall by computing LLM inference directly inside RAM

2•pcdeni•1h ago•0 comments

Show HN: ArXivMax – video explainers for any research paper

https://www.arxivmax.com/
2•rwu1997•1h ago•0 comments

Show HN: Note taking and book Library, all-in-one AI KnowledgeBase

https://github.com/pileax-ai/pileax
2•pileax•1h ago•0 comments
Open in hackernews

Show HN: Setoku - self-hosted knowledge server for AI agents

https://setoku.com/
2•rgbrgb•1h ago
knowledge = data + memory

We already pay for Claude subscriptions at Hedgy, so I built a company brain that doesn't spend extra tokens. Setoku is a self-hosted MCP server (a ClickHouse data lake plus a knowledge layer about that data) that gives your AI the data it needs to understand your business/life. No inference happens in the box itself, all the thinking runs in the AI you already pay for, so the total bill is a cheap VPS and there's no new vendor holding a copy of your data.

Ours ingests spending and account data from Mercury, Vercel logs, Render logs, a few Slack channels, and GitHub activity. I honestly hooked up the log drains just to test with more data, but the extra context made agentic debugging faster and more reliable and now I couldn't go back.

The knowledge layer is the part I find more interesting. Anyone can point Claude Code at a Postgres, that's exactly how this started. The problem is every session rediscovers the same tribal knowledge, stuff like "this is how we count a user as active" or "check column X when computing LTV". The MCP nudges the AI to ask about and record gotchas as it finds them so the knowledge builds up instead of getting re-derived every time. Last week "how many hires have we made" turned out to have three different answers depending on how you count (some placements fell through, our old dashboard silently dropped a few real ones). Claude worked through it with my cofounder once, recorded the right definition, and now every session gets the same number. There's a small admin UI for auditing and pruning what it's learned.

We also added a protocol so an LLM can publish a chart or dashboard to the box as an app hooked up to live data. The part I didn't expect: the non-technical folks push apps the hardest. claude.ai + Setoku is the only coding environment they have, and they've been shipping internal tools I never would have thought to build.

Ships as a Docker image plus a set of Claude Code skills that cover server setup and adding connectors. The MCP works with whatever agent you use, setup is just Claude-shaped right now. Our company instance runs on an OVHCloud VPS-3. I also run a family instance on a $5/mo VPS-1 that ingests Gmail and finances from Monarch Money so that Fable can give me grounded financial advice (this is not financial advice!). A fresh setup takes about 20 minutes.

Site: https://setoku.com

Code: https://github.com/Hedgy-Labs/setoku

Happy to answer questions or help anyone get an instance running. Thanks for checking it out!

-peter

Comments

rgbrgb•14m ago
hey hn,

I wanted to share a side project we’ve been using and iterating at Hedgy for the past couple weeks.

It’s our take on a self-hosted company brain that is powered entirely by our claude subscriptions. It includes a ClickHouse data lake for ingesting data and light knowledge infrastructure for storing knowledge about the data (e.g. this is how we count a user as active, check column X when determining LTV). This is exposed to our AI’s via MCP. No inference happens in setoku itself, it’s just a data tool you give your agent. The MCP encourages the AI to record gotchas and insights as it finds them and there’s a minimal admin interface for auditing and pruning knowledge [0].

I had been pretty impressed with claude code’s data analysis abilities on my local postgres, so I was excited to ship this capability to my non-technical teammates to use from claude.ai and cowork. They thought of way more things to do with it than I did and the additional log data makes agentic debugging faster and more reliable. I honestly hooked up the log drains just to test the system with more data, but now I couldn’t go back to my log-blind claude code.

After slacking a bunch of screenshots with charts we were making, we wanted a better way to save and share them. Since the data is in the lake, we added a little protocol so that LLM’s could take a static chart or dashboard and publish it to the box as an app hooked up to the live data.

I’m running them on OVHCloud VPS’s. The Hedgy instance and demo are both running on a VPS-3 ingesting spending and account data from Mercury, Vercel logs, Render logs, a few slack channels, and Github activity.

I also deployed a family instance which is running well on a $5/mo OVHCloud VPS-1. It ingests our finances from Monarch Money (love this product!) so that Fable can give me grounded financial advice (this is not financial advice!).

Technically setoku ships as a docker image + a set of claude code skills that cover initial server setup and adding connectors.

Anyway I’m rambling, check out the tool and LMK if you have any questions/thoughts or want help setting it up :)

data + memory = knowledge!

[0]: https://demo.setoku.com