nowfound

Alternatives

Products that do what DotVCS does

A code forge built natively for Jujutsu

  1. 1FG

    Hi HN, I'm Antoine Zambelli, AI Director at Texas Instruments. I built Forge, an open-source reliability layer for self-hosted LLM tool-calling. What it does: - Adds domain-and-tool-agnostic guardrails (retry nudges, step enforcement, error recovery, VRAM-aware context management) to local models running on consumer hardware - Takes an 8B model from ~53% to ~99% on multi-step agentic workflows without changing the model - just the system around it - Ships with an eval harness and interactive dashboard so you can reproduce every number I wanted to run a handful of always-on agentic systems…

    May 2026 · github.com

  2. 2KB
  3. 3
    Langfuse771

    Open source tracing and analytics for LLM applications

    2023 · langfuse.com

  4. 4TA

    I built this tool because I wanted a way to just take a bunch of URLs or domains, and query their content in RAG applications. It takes away the pain of crawling, extracting content, chunking, vectorizing, and updating periodically. I'm curious to see if it can be useful to others. I meant to launch this six months ago but life got in the way...

    2024 · embedding.io

  5. 5

    The only production-ready AI-powered code generation

    2024

  6. 6PA

    I'm sure folks here have seen pastebins a thousand times. There's no innovation left in this space – and that's kind of the point. When I wanted to self-host a pastebin, every option I found was too much. Git-based version control, OAuth, elaborate admin panels. I just wanted something I could deploy in under a minute with a CLI that actually works. So I built pbnj (yes, like the sandwich). What it is: - A minimal, beautiful pastebin with syntax highlighting for 100+ languages - One-click deploy to Cloudflare (free tier gives you ~100,000 pastes) - CLI-first: pbnj file.py → get a URL, copied…

    Dec 2025 · pbnj.sh

  7. 7KA
  8. 8CA

    Hey Hacker News! Launching gptengineer.app into beta today. It's like Claude Artifacts, but: - you can edit the code in your fav IDE (two-way github sync) - installs npm packages - automatically picks up build and runtime errors and fixes them - very fast, built with rust The full stack capabilities are built on supabase (prefer to not have to handle auth + user data at this point so this is owned by the user) The seed for this project was an open source experiment, posted about that previously here: https://news.ycombinator.com/item?id=36422730 Would love feedback if you give…

    2024 · gptengineer.app

  9. 9
    Aura122

    Semantic version control for AI coding agents on top of Git

    Mar 2026 · auravcs.com

  10. 10FO
  11. 11
    Kan.bn149

    The open source alternative to Trello for teams and makers

    Sep 2025

  12. 12HW

    TL;DR: Vector-based RAG performs poorly for many real-world applications like codebase chats, and you should consider 'language maps'. Part of our mission at Mutable.ai is to make it much easier for developers to build and understand software. One of the natural ways to do this is to create a codebase chat, that answer questions about your repo and help you build features. It might seem simple to plug in your codebase into a state-of-the-art LLM, but LLMs have two limitations that make human-level assistance with code difficult: 1. They currently have context windows that are too small to…

    2024 · twitter.com

  13. 13IC

    Personally, I think the JJ VCS (https://github.com/jj-vcs/jj) hit a point some time in this past year where I find it hard to find a great reason to continue using git. Over the years I've cobbled together aliases and bash functions to try to improve my git workflow, but after using jj, which works with ~any git repo and integrates great with Github repos, all of the workflow issues I ran into with git are not only solved, but improved in ways I couldn't manage with simple scripts. One example is the op log, which lets you go to any point in your repo's time and provides…

    Oct 2025

  14. 14
    MashuPack112

    Turn codebases into a clean file for Claude and ChatGPT

    May 2026 · mashupack.com

  15. 15JB

    Hi HN, Meng from TabbyML here. We decided to build this simply because we find Jujutsu (jj) really interesting, and many folks on our team have started trying it out recently. Since it introduces a very different workflow compared to traditional Git, we thought it would be a fun challenge to see how well current AI coding agents can actually use it. To build this, we created a semi-automated pipeline. We used AI to research the official Jujutsu documentation and websites, which then helped us bootstrap a dataset of 63 distinct evaluation tasks. Each task includes instructions, bootstrap…

    Mar 2026 · tabbyml.github.io

  16. 16AT

    Hello, I'm building a WebAssembly compiler and documenting the process in the meantime. This aims to be a tool for demonstration and education purpose. It doesn't aim to do fancy stuff nor to replace existing ones. I'm building this to learn and to improve and hopefully it can be useful for others as well :) From last time I've presented the idea, I've implemented more basic features on Luna and I've built a custom and tiny runtime for Luna! (documenting it of course). Any feedback is really appreciated :) Repo: https://github.com/thomscoder/luna

    2022 · luna-demo.vercel.app

  17. 17AS

    This is a hobby project of mine that I started a few years ago to learn about programming language implementation. It was created 95% without AI, although a few recent commits include code from Gemini CLI. I started out following Crafting Interpreters, but gradually branched off that until I had almost nothing left in common. Tech stack: Rust, Cranelift (JIT compilation), LALRPOP (parser). Original title: "A small programming language where everything is a value" (edited based on comments)

    Jan 2026 · github.com

  18. 18WA

    As a personal project I wrote a really tiny Wat 2 Wasm compiler in Go. Mainly for demonstrative and educational purposes. It was tough: I didn't know anything about WebAssembly internals and I'm a newbie with Go... so I tried to document it as much as I could for anyone that would like to approach the quest in the future! It misses a lot of features (that will be gradually implemented). Any feedback is welcomed!! Demo: https://luna-demo.vercel.app

    2022 · github.com

  19. 19IM

    Hey developers I think we're tired of copying and pasting our codes and sharing links using PasteBin, GithubGist, or Slack. What if you could share the codes without copying the link and share them right from your favorite editor? That was the motivation for creating TurboGist. Right now, it's still in the MVP stage, and I'm trying to gather feedback from developers like you. It's available as a beta in the VS Code Extension store. Can you guys check this out? It'd help me a lot. You don't need to pay any penny, 100% FREE. However, I'm working on introducing a self-hosted feature. Besides, a…

    2025 · turbogist.dev

  20. 20RC

    Hey HN, I wanted to share a simple command line tool I made that has sped up and simplified my LLM assisted coding workflow. Whenever possible, I’ve been trying to use Claude as a first pass when implementing new features / changes. But I found that depending on the type of change I was making, I was spending a lot of thought finding and deciding which source files should be included in the prompt. The need to copy/paste each file individually also becomes a mild annoyance. First, I implemented `repogather --all` , which unintelligently copies all sources files in your repository…

    2024 · github.com

  21. 21UL

    Hi Hacker News! We’re Vadim and Chris from Highlight.io [1]. We do web app monitoring and are working on using LLMs/embeddings to add new functionality to our error monitoring product. Given that there’s a lot of founders/engineers using LLMs in their products, we figured we’d share how we built the new functionality, their impact on our workflows, and how you can try it out. Our goal was to build two features: (1) tagging errors (e.g. deeming an error as “authentication error” or a “database error”); and (2) grouping similar errors together (e.g. two errors that have a different…

    2023 · github.com

  22. 22AS

    This is a simple Pastebin clone I made using the Deno Typescript runtime. I created a simple templating system, and implemented server-side rendering for the UI. Demo: https://paste.jlcarveth.dev/

    2023 · github.com

  23. 23

    Find and copy Jujutsu Shenanigans moveset codes in seconds

    May 2026 · jjsbuilder.com

  24. 24BA

    Hi HN, I built a free, and completely open source, visual studio code extension, which generates tweets based on commits you select. While I was working on webtilities.com, an idea came to me: wouldn't it be cool that I could market this thing inside my editor. Ah, i'm truly lazy. Well, I spent a week building this thing that I bet no one will need because: * "This wont work. My commit messages are terrible" * "This is stupid, I can just use ChatGPT/Gemini/[Insert Chat Platform] directly" * "This is stupid, I get BILLED for using openai tokens" ... And the list goes on. But, I…

    2024 · marketplace.visualstudio.com

Ranked by how close each launch is in meaning, then by votes. Refine with a description →