🛠️ Hacker News Tools
Showing 1641–1660 of 2561 tools from Hacker News
Last Updated
April 27, 2026 at 04:00 AM
Database backups, dump files and restic
Hacker News (score: 14)[Other] Database backups, dump files and restic
SwirlDB: Modular-first, CRDT-based embedded database
Hacker News (score: 50)[Database] SwirlDB: Modular-first, CRDT-based embedded database
Show HN: Butter – A Behavior Cache for LLMs
Show HN (score: 36)[Other] Show HN: Butter – A Behavior Cache for LLMs Hi HN! I'm Erik. We built Butter, an LLM proxy that makes agent systems deterministic by caching and replaying responses, so automations behave consistently across runs.<p>- It’s a chat completions compatible endpoint, making it easy to drop into existing agents with a custom base_url<p>- The cache is template-aware, meaning lookups can treat dynamic content (names, addresses, etc.) as variables<p>You can see it in action in this demo where it memorizes tic-tac-toe games: <a href="https://www.youtube.com/watch?v=PWbyeZwPjuY" rel="nofollow">https://www.youtube.com/watch?v=PWbyeZwPjuY</a><p>Why we built this: before Butter, we were Pig.dev (YC W25), where we built computer-use agents to automate legacy Windows applications. The goal was to replace RPA. But in practice, these agents were slow, expensive, and unpredictable - a major downgrade from deterministic RPA, and unacceptable in the worlds of healthcare, lending, and government. We realized users don't want to replace RPA with AI, they just want AI to handle the edge cases.<p>We set out to build a system for "muscle memory" for AI automations (general purpose, not just computer-use), where agent trajectories get baked into reusable code. You may recall our first iteration of this in May, a library called Muscle Mem: <a href="https://news.ycombinator.com/item?id=43988381">https://news.ycombinator.com/item?id=43988381</a><p>Today we're relaunching it as a chat completions proxy. It emulates scripted automations by storing observed message histories in a tree structure, where each fork in the tree represents some conditional branch in the workflow's "code". We replay behaviors by walking the agent down the tree, falling back to AI to add new branches if the next step is not yet known.<p>The proxy is live and free to use while we work through making the template-aware engine more flexible and accurate. Please try it out and share how it went, where it breaks, and if it’s helpful.
Show HN: Tamagotchi P1 for FPGAs
Hacker News (score: 55)[Other] Show HN: Tamagotchi P1 for FPGAs After being thrust headfirst into FPGA development thanks to the Analogue Pocket, my first from scratch creation was a gate level implementation of the original Tamagotchi toy.<p>The core, running on both the Analogue Pocket and MiSTer platforms, lets users re-experience the very first Tamagotchi from 1996 with accurate emulation, but modern features. The core has savestates (which is much harder to do in hardware vs software emulation), high turbo speeds (1,800x was the max clock speed I've reached so far), and more.<p>Learning more about hardware and FPGAs is something I've wanted to do for many years, and I highly recommend it for any programmer-brained person. It's a very slightly different way of thinking that has vast consequences on how you look at simple problems.
Show HN: OpenAI Apps Handbook
Show HN (score: 5)[API/SDK] Show HN: OpenAI Apps Handbook I went swimming in the ocean of OpenAI's Apps SDK… and came back with a handbook!<p>Over the past few weeks, I’ve been diving deep into the ChatGPT App SDK: exploring its APIs, tools, and hidden gems. Along the way, I built, broke, fixed, and reimagined a bunch of little experiments.<p>P.S: Indeed OAIs official docs is the source of truth, this is just a rough notebook<p>Maybe, I can create a CLI tool to scaffold app?
Show HN: Apache Fory Rust – 10-20x faster serialization than JSON/Protobuf
Hacker News (score: 40)[Other] Show HN: Apache Fory Rust – 10-20x faster serialization than JSON/Protobuf Serialization framework with some interesting numbers: 10-20x faster on nested objects than json/protobuf.<p><pre><code> Technical approach: compile-time codegen (no reflection), compact binary protocol with meta-packing, little-endian layout optimized for modern CPUs. Unique features that other fast serializers don't have: - Cross-language without IDL files (Rust ↔ Python/Java/Go) - Trait object serialization (Box<dyn Trait>) - Automatic circular reference handling - Schema evolution without coordination Happy to discuss design trade-offs. Benchmarks: https://fory.apache.org/docs/benchmarks/rust</code></pre>
Show HN: CoordConversions NPM Module for Map Coordinate Conversions
Show HN (score: 8)[Package Manager] Show HN: CoordConversions NPM Module for Map Coordinate Conversions I have been working on a project that has multiple repos, all of which have to convert between multiple map coordinate types, so I made an NPM module that allows you to parse and convert between Decimal Degrees, Degrees-Minutes, and Degrees-Minutes-Seconds coordinate types. Niche? Yes. Useful? Also yes (I hope)!
Show HN: I made semantic search engine for engineering blogs and conferences
Show HN (score: 8)[Other] Show HN: I made semantic search engine for engineering blogs and conferences
Show HN: Pipelex – declarative language for repeatable AI workflows (MIT)
Show HN (score: 19)[Other] Show HN: Pipelex – declarative language for repeatable AI workflows (MIT) We’re Robin, Louis, and Thomas. Pipelex is a DSL and a Python runtime for repeatable AI workflows. Think Dockerfile/SQL for multi-step LLM pipelines: you declare steps and interfaces; any model/provider can fill them.<p>Why this instead of yet another workflow builder?<p>- Declarative, not glue code: you state what to do; the runtime figures out how. - Agent-first: each step carries natural-language context (purpose, inputs/outputs with meaning) so LLMs can follow, audit, and optimize. Our MCP server enables agents to run pipelines but also to build new pipelines on demand. - Open standard under MIT: language spec, runtime, API server, editor extensions, MCP server, n8n node. - Composable: pipes can call other pipes, created by you or shared in the community.<p>Why a domain-specific language?<p>- We need context, meaning and nuances preserved in a structured syntax that both humans and LLMs can understand - We need determinism, control, and reproducibility that pure prompts can't deliver - Bonus: editors, diffs, semantic coloring, easy sharing, search & replace, version control, linters…<p>How we got there:<p>Initially, we just wanted to solve every use-case with LLMs but kept rebuilding the same agentic patterns across different projects. So we challenged ourselves to keep the code generic and separate from use-case specifics, which meant modeling workflows from the relevant knowledge and know-how.<p>Unlike existing code/no-code frameworks for AI workflows, our abstraction layer doesn't wrap APIs, it transcribes business logic into a structured, unambiguous script executable by software and AI. Hence the "declarative" aspect: the script says what should be done, not how to do it. It's like a Dockerfile or SQL for AI workflows.<p>Additionally, we wanted the language to be LLM-friendly. Classic programming languages hide logic and context in variable names, functions, and comments: all invisible to the interpreter. In Pipelex, these elements are explicitly stated in natural language, giving AI full visibility: it's all logic and context, with minimal syntax.<p>Then, we didn't want to write Pipelex scripts ourselves so we dogfooded: we built a Pipelex workflow that writes Pipelex workflows. It's in the MCP and CLI: "pipelex build pipe '…'" runs a multi-step, structured generation flow that produces a validated workflow ready to execute with "pipelex run". Then you can iterate on it yourself or with any coding agent.<p>What’s included: Python library, FastAPI and Docker, MCP server, n8n node, VS Code extension.<p>What we’d like from you<p>1. Build a workflow: did the language work for you or against you? 2. Agent/MCP workflows and n8n node usability. 3. Suggest new kinds of pipes and other AI models we could integrate 4. Looking for OSS contributors to the core library but also to share pipes with the community<p>Known limitations<p>- Connectors: Pipelex doesn’t integrate with “your apps”, we focus on the cognitive steps, and you can integrate through code/API or using MCP or n8n - Visualization: we need to generate flow-charts - The pipe builder is still buggy - Run it yourself: we don’t yet provide a hosted Pipelex API, it’s in the works - Cost-tracking: we only track LLM costs, not image generation or OCR costs yet - Caching and reasoning options: not supported yet<p>Links<p>- GitHub: <a href="https://github.com/Pipelex/pipelex" rel="nofollow">https://github.com/Pipelex/pipelex</a> - Cookbook: <a href="https://github.com/Pipelex/pipelex-cookbook" rel="nofollow">https://github.com/Pipelex/pipelex-cookbook</a> - Starter: <a href="https://github.com/Pipelex/pipelex-starter" rel="nofollow">https://github.com/Pipelex/pipelex-starter</a> - VS Code extension: <a href="https://github.com/Pipelex/vscode-pipelex" rel="nofollow">https://github.com/Pipelex/vscode-pipelex</a> - Docs: [<a href="https://docs.pipelex.com" rel="nofollow">https://docs.pipelex.com</a>](<a href="https://docs.pipelex.com/" rel="nofollow">https://docs.pipelex.com/</a>) - Demo video (2 min): <a href="https://youtu.be/dBigQa8M8pQ" rel="nofollow">https://youtu.be/dBigQa8M8pQ</a> - Discord for support and sharing: <a href="https://go.pipelex.com/discord" rel="nofollow">https://go.pipelex.com/discord</a><p>Thanks for reading. If you try Pipelex, tell us exactly where it hurts, that’s the most valuable feedback we can get.
Show HN: Dexto – Connect your AI Agents with real-world tools and data
Show HN (score: 28)[DevOps] Show HN: Dexto – Connect your AI Agents with real-world tools and data Hi HN, we’re the team at Truffle AI (YC W25), and we’ve been working on Dexto (<a href="https://www.dexto.ai/" rel="nofollow">https://www.dexto.ai/</a>), a runtime and orchestration layer for AI Agents that lets you turn any app, service or tool into an AI assistant that can reason, think and act. Here's a video walkthrough - <a href="https://www.youtube.com/watch?v=WJ1qbI6MU6g" rel="nofollow">https://www.youtube.com/watch?v=WJ1qbI6MU6g</a><p>We started working on Dexto after helping clients setup agents for everyday marketing tasks like posting on LinkedIn, running Reddit searches, generating ad creatives, etc. We realized that the LLMs weren’t the issue. The real drag was the repetitive orchestration around them:<p>- wiring LLMs to tools - managing context and persistence - adding memory and approval flows - tailoring behavior per client/use case<p>Each small project quietly ballooned into weeks of plumbing where each customer had mostly the same, but slightly custom requirement.<p>So instead of another framework where you write orchestration logic yourself, we built Dexto as a top-level orchestration layer where you declare an agent’s capabilities and behavior:<p>- which tools or MCPs the agent can use - which LLM powers it - how it should behave (system prompt, tone, approval rules)<p>Once configured, the agent runs as an event-driven loop - reasoning through steps, invoking tools, handling retries, and maintaining its own state and memory. Your app doesn’t manage orchestration, it just triggers and subscribes to the agent’s events and decides how to render or approve outcomes.<p>Agents can run locally, in the cloud, or hybrid. Dexto ships with a CLI, a web UI, and a few sample agents to get started.<p>To show its flexibility, we wrapped some OpenCV functions into an MCP server and connected it to Dexto (<a href="https://youtu.be/A0j61EIgWdI" rel="nofollow">https://youtu.be/A0j61EIgWdI</a>). Now, a non-technical user could detect faces in images or create custom photo collages by talking to the agent. The same approach works for coding agents, browser agents, multi-speaker podcast agents, and marketing assistants tuned to your data. <a href="https://docs.dexto.ai/examples/category/agent-examples" rel="nofollow">https://docs.dexto.ai/examples/category/agent-examples</a><p>Dexto is modular, composable and portable allowing you to plug in new tools or even re-expose an entire Dexto agent as an MCP Server and consume it from other apps like Cursor (<a href="https://www.youtube.com/watch?v=_hZMFIO8KZM" rel="nofollow">https://www.youtube.com/watch?v=_hZMFIO8KZM</a>). Because agents are defined through config and powered by a consistent runtime, they can run anywhere without code changes making cross-agent (A2A) interactions and reuse effortless.<p>In a way, we like to think of Dexto as a “meta-agent” or “agent harness” that can be customized into a specialized agent depending on its tools, data, and platform.<p>For the time being, we have opted for an Elastic V2 license to give maximum flexibility for the community to build with Dexto while preventing bigger players from taking over and monetizing our work.<p>We’d love your feedback:<p>- Try the quickstart and tell us what breaks - Share a use case you want to ship in a day, and we’ll suggest a minimal config<p>Repo: <a href="https://github.com/truffle-ai/dexto" rel="nofollow">https://github.com/truffle-ai/dexto</a><p>Docs: <a href="https://docs.dexto.ai/docs/category/getting-started" rel="nofollow">https://docs.dexto.ai/docs/category/getting-started</a><p>Quickstart: npm i -g dexto
Show HN: Bash Screensavers
Hacker News (score: 21)[Other] Show HN: Bash Screensavers A github project to collect a bunch of bash-based screensavers/visualizations.
Movycat – A terminal movie player written in Zig
Hacker News (score: 47)[Other] Movycat – A terminal movie player written in Zig I saw Mario (the author) at Zigtoberfest in Munich last Saturday where he gave a presentation on a whole stack of related projects implemented in Zig: A graphics library for the terminal (movy), movycat (video playback in the terminal), zig64 & zigreSID (emulators for Commodore 64's CPU and sound chip), and a reimplementation of a C64 video game (which I don't think he has published on GitHub yet). Anyway, I found his work incredible and thought he deserved some attention.<p>Update: Since writing this, Mario has uploaded the game, too: <a href="https://github.com/M64GitHub/1st-shot" rel="nofollow">https://github.com/M64GitHub/1st-shot</a> . I misunderstood, though: It doesn't seem to be a port of an actual C64 game.
Cisco opensourced MCP-Scanner for finding vulnerabilties in MCP server
Hacker News (score: 42)[Other] Cisco opensourced MCP-Scanner for finding vulnerabilties in MCP server
Show HN: Git Auto Commit (GAC) – LLM-powered Git commit command line tool
Hacker News (score: 19)[CLI Tool] Show HN: Git Auto Commit (GAC) – LLM-powered Git commit command line tool GAC is a tool I built to help users spend less time summing up what was done and more time building. It uses LLMs to generate contextual git commit messages from your code changes. And it can be a drop-in replacement for `git commit -m "..."`.<p>Example:<p>```<p>feat(auth): add OAuth2 integration with GitHub and Google<p>- Implement OAuth2 authentication flow<p>- Add provider configuration for GitHub and Google<p>- Create callback handler for token exchange<p>- Update login UI with social auth buttons<p>```<p>Don't like it? Reroll with 'r', or type `r "focus on xyz"` and it rerolls the commit with your feedback!<p>You can try it out with uvx (no install):<p>```<p>uvx gac init # config wizard<p>uvx gac<p>```<p><i>Note: `gac init` creates a .gac.env file in your home directory with your chosen provider, model, and API key.</i><p>*Tech details:*<p>*14 providers* - Supports local (Ollama & LM Studio) and cloud (OpenAI, Anthropic, Gemini, OpenRouter, Groq, Cerebras, Chutes, Fireworks, StreamLake, Synthetic, Together AI, & Z.ai (including their extremely cheap coding plans!)).<p>*Three verbosity modes* - Standard with bullets (default), one-liners (`-o`), or verbose (`-v`) with detailed Motivation/Architecture/Impact sections.<p>*Secret detection* - Scans for API keys, tokens, and credentials before committing. Has caught my API keys on a new project when I hadn't yet gitignored .env.<p>*Flags* - Automate common workflows:<p>- `gac -h "bug fix"` - pass hints to guide intent<p>- `gac -yo` - auto-accept the commit message in one-liner mode<p>- `gac -ayp` - stage all files, auto-accept the commit message, and push (yolo mode)<p>Would love to hear your feedback! Give it a try and let me know what you think! <3<p>GitHub: <a href="https://github.com/cellwebb/gac" rel="nofollow">https://github.com/cellwebb/gac</a>
Show HN: JSON Query
Hacker News (score: 85)[Other] Show HN: JSON Query I'm working on a tool that will probably involve querying JSON documents and I'm asking myself how to expose that functionality to my users.<p>I like the power of `jq` and the fact that LLMs are proficient at it, but I find it right out impossible to come up with the right `jq` incantations myself. Has anyone here been in a similar situation? Which tool / language did you end up exposing to your users?
Show HN: Erdos – open-source, AI data science IDE
Hacker News (score: 30)[IDE/Editor] Show HN: Erdos – open-source, AI data science IDE Hey HN! We’re Jorge and Will from Lotas (<a href="https://www.lotas.ai/">https://www.lotas.ai/</a>), and we’ve built Erdos, a secure AI-powered data science IDE that’s fully open source (<a href="https://www.lotas.ai/erdos">https://www.lotas.ai/erdos</a>).<p>A few months ago, we shared Rao, an AI coding assistant for RStudio (<a href="https://news.ycombinator.com/item?id=44638510">https://news.ycombinator.com/item?id=44638510</a>). We built Rao to bring the Cursor-like experience to RStudio users. Now we want to take the next step and deliver a tool for the entire data science community that handles Python, R, SQL, and Julia workflows.<p>Erdos is a fork of VS Code designed for data science. It includes:<p>- An AI that can search, read, and write across all file types for Python, R, SQL, and Julia. Also, for Jupyter notebooks, we’ve optimized a jupytext system to allow the AI to make faster edits.<p>- Built-in Python, R, and Julia consoles accessible to both the user and AI<p>- Plot pane that tracks and organizes plots by file and time<p>- Database pane for connecting to and manipulating SQL or FTP data sources<p>- Environment pane for viewing variables, packages, and environments<p>- Help pane for Python, R, and Julia documentation<p>- Remote development via SSH or containers<p>- AI assistant available through a single-click sign-in to our zero data retention backend, bring your own key, or a local model<p>- Open source AGPLv3 license<p>We built Erdos because data scientists are often second-class citizens in modern IDEs. Tools like VS Code, Cursor, and Claude Code are made for software developers, not for people working across Jupyter notebooks, scripts, and SQL. We wanted an IDE that feels native to data scientists, while offering the same AI productivity boosts.<p>You can try Erdos at <a href="https://www.lotas.ai/erdos">https://www.lotas.ai/erdos</a>, check out our source code on our GitHub (<a href="https://github.com/lotas-ai/erdos" rel="nofollow">https://github.com/lotas-ai/erdos</a>), and let us know what features would make it more useful for your work. We’d love your feedback below!
Show HN: spoilerjs – Reddit-style spoilers with particle animations
Show HN (score: 6)[Other] Show HN: spoilerjs – Reddit-style spoilers with particle animations Hello HN!<p>I just published my first npm library as a small way to give back to the open source community.<p>I built `spoilerjs`, a lightweight web component that lets you hide text with an animated spoiler effect. Think Reddit spoilers, but with more flair! It works with plain HTML, React, Vue, or Svelte, and you can customize attributes like particle density, velocity, and scale. The effect is totally inspired by the Telegram app!<p>Demo: <a href="https://spoilerjs.sh4jid.me" rel="nofollow">https://spoilerjs.sh4jid.me</a> NPM: <a href="https://www.npmjs.com/package/spoilerjs" rel="nofollow">https://www.npmjs.com/package/spoilerjs</a> GitHub: <a href="https://github.com/shajidhasan/spoilerjs" rel="nofollow">https://github.com/shajidhasan/spoilerjs</a><p>I'm sure there are probably some bugs and rough edges, but I'd love to hear your feedback!<p>Thanks!
Show HN: Whatdidido – CLI to summarize your work from Jira/Linear
Show HN (score: 5)[CLI Tool] Show HN: Whatdidido – CLI to summarize your work from Jira/Linear I built this after spending days every year manually searching through Jira tickets to remember what I'd accomplished for performance reviews.<p>whatdidido is a CLI tool that:<p>- Pulls tickets from Jira or Linear for a date range<p>- Uses an LLM to create short summaries of each ticket<p>- Generates an overall summary to help you build your self-evaluation<p>The tool doesn't write your review for you—crafting thoughtful, contextual feedback still requires human judgment. It just eliminates the busywork of finding and organizing what you worked on.<p>Key details:<p>- MIT licensed, open source<p>- No data storage—everything stays local<p>- Requires OpenAI or OpenRouter API key<p>- Works with Jira and Linear (more integrations welcome/coming soon)<p>GitHub: <a href="https://github.com/oliviersm199/whatdidido" rel="nofollow">https://github.com/oliviersm199/whatdidido</a><p>I'm releasing it now because I think others might find it useful during review season.<p>Would love feedback on the approach and what other integrations would be helpful. Happy to answer questions about how it works.
Show HN: nblm - Rust CLI/Python SDK for NotebookLM Enterprise automation
Show HN (score: 6)[API/SDK] Show HN: nblm - Rust CLI/Python SDK for NotebookLM Enterprise automation I built nblm, a Rust-based toolset to automate Google’s NotebookLM Enterprise API reliably. It aims to replace brittle curl snippets with a stable interface you can use in cron/CI or agentic systems.<p>* Python SDK (type-safe): IDE auto-complete, fewer JSON key typos, fits complex workflows.<p>* Standalone CLI: single fast binary for scripts and pipelines.<p>* Handles auth, batching, retries; you focus on logic. Rust core is fast and memory-safe.<p>* Enterprise API only (consumer NotebookLM isn’t supported).<p>Repo: <a href="https://github.com/K-dash/nblm-rs" rel="nofollow">https://github.com/K-dash/nblm-rs</a><p>Feedback is welcome—I'm especially interested in thoughts on the Python SDK’s design for building automated/agentic workflows. Thanks!
Show HN: Write Go code in JavaScript files
Show HN (score: 9)[Other] Show HN: Write Go code in JavaScript files I built a Vite plugin that lets you write Go code directly in .js files using a "use golang" directive. It compiles to WebAssembly automatically.