Alternatives
Products that do what I built an AI agent that upgrades NPM packages does
Hi HN, I built a tool [1] that resolves breaking changes when you upgrade npm packages. I know keeping my dependencies updated is good hygiene but I really have no motivations to do them. The time to fix breaking changes then validate them makes the ROI lopsided. Automating these helps me reduce the barrier to a good habit. It works on typescript and tsx projects. BYOK (bring your own GPT-4 key) for the codegen. MIT license. How does it work? - Bumps the package version, builds your project, and then runs tsc over your project to understand what breaks - Uses ts-morph [2] to create an AST of…
- 1

- 2AI
2016 · npmjs.com
- 3

- 4

- 5

- 6IB
Link: https://docs.trysoma.ai/ For the past ~9 months I’ve been building Soma, an open-source AI agent & workflow runtime written in Rust, with a TypeScript SDK (Python coming soon). It’s not a framework; it’s meant to sit underneath whatever agent/tooling code you already write (Vercel AI SDK, LangChain, custom code, etc.). It provides features around your framework + a better DX for building agents. I’ve tried to take a Next.JS model: open-source, good DX, self-deployable. I originally set out to build a vertical back-office/operations product for SMEs. I needed a…
Dec 2025 · docs.trysoma.ai
- 7DA
Hey HN! Built a template for distributing AI agent skills via npm. Problem: AI coding tools (Claude Code, Cursor, Windsurf) support custom "skills" but distribution is manual - copy files to ~/.tool/skills/, repeat for updates, no versioning. Solution: Standard npm packages with lifecycle hooks: npm install -g @org/my-skill npm update -g @org/my-skill Benefits: - Semantic versioning (^1.2.0 for auto-updates) - Private registries for enterprise - Standard CI/CD integration - Discoverable on npmjs.com It's a GitHub template - fork, customize SKILL.md, publish.…
Jan 2026 · github.com
- 8RE
2020 · github.com
- 9AB
Hey everyone, My friend and I built a simple bug fixing app that listens for alerts/issues from Sentry, contextualizes it against your codebase, and any other data sources you wish to connect (right now we support Notion, Google Docs, and Slack), and deploys an ai agent to write a PR for review in Github or Gitlab to solve the bug. Our current demo shows the end-to-end process for a trivial bug fix, but we have been testing it with open source python repos like http-pie, comparing how our agent solves a bug compared to a human engineer and it gets fairly close. We are working on adding…
2023 · resolvd.ai
- 10AP
I'm Guy, the founder behind Snyk — now building Tessl, a package manager for agent skills. We’ve recently witnessed that most teams still treat skills as static artifacts: markdown files, created or copied from repo to repo. This approach offers a strong initial boost, but quickly creates debt: - Skills are duplicated, and updates never roll out. - Poor quality skills go unseen, misguiding agents instead of helping. - Skill knowledge grows stale, and don’t keep up with the systems and practices they describe. Without a way to evaluate skills, teams have no clear way to understand how good a…
Feb 2026 · tessl.io
- 11OS
We just open sourced a first class our AI web app builder. Instead of using another hosted AI coding platform, you can fork this project and build your own AI app builder, fully customized and running under your own brand. It includes: Next.js + TypeScript AI chat with streaming Artifact generation File explorer Code editor Live preview Databases Sandboxes to be used by AI agents Versions Responsive production-ready UI And a lot more... The only required dependency is the Totalum API, which exposes the AI generation engine through a simple REST API. You can replace or extend the backend…
Jul 2026 · github.com
- 12GY
Hi all, I've been working on this devtool for 1 month now for myself at first and I'll be curious to see if it's something that could work for you as well. So basically, it detects bugs in your website in production from real user sessions, an llm clusters them by severity and it provides the complete context of the issue that you can copy-paste into your coding agent to fix it in one go. Why did I create it? I've been shipping fast with tools like Cursor and Claude Code. The problem? When bugs happen in production, these tools have zero context about what actually went wrong. Sentry is…
Nov 2025 · sonarly.dev
- 13AD
2021 · jsdocs.io
- 14IM
Hey HN! We've built an AI powered technical writer that allows you to automate creating comprehensive, MDX-formatted documentation with just a few clicks. How It Works: - Upload screenshots: Start by uploading screenshots of your product. - Describe features: Provide a brief description of the features you want documented. - Generate documentation: Our AI will analyze your inputs and automagically generate detailed documentation in MDX format. - Deploy instantly: With just one click, you can deploy your new documentation online. Continuous Integration: Automated updates: Integrate our npm…
2024 · app.paparazzidocs.com
- 15CA
I built this because I was tired of creating pull requests in 20 repositories just to change a single line of workflow job version. With Infra as AI, just mention the change. Agents work on all repos in parallel, read the docs, make a bunch of PRs and fill in the description. You can see the demo of the actual dashboard in the landing. Let me know your thoughts :) It means a lot to me!
Sep 2025 · infrastructureas.ai
- 16IM
Hi HN! Solo developer here. 10 days ago, I started building this after spending countless hours copying/pasting marketing sections and fighting to keep them consistent with our design system. I wondered: "What if AI could understand our design system and generate React components that actually match it?" Current progress (10 days in): - Can generate hero sections that follow your design tokens - Uses your actual component variants and styles - Works with Next.js, Tailwind, shadcn/ui It's very early days, but I'm excited to share it with other devs who: - Are tired of rebuilding…
2024 · robustlaunch.com
- 17BY
Hey HN - We're building wispbit (https://wispbit.com/) - a tool that lets you build your own AI code reviewer. We built this because we worked in big and complex codebases where we kept hitting booby traps - often the same ones. People forgot things, or quit altogether, amplifying the problem. We looked for other ways to fix this, but the solution is usually a combination of: - Writing a linter rule - too difficult and time consuming. - Writing docs and having frequent meetings on alignment - basically a full time job. - Using plug and play code reviewers - too generic and…
2025
- 18OS
I have been trying to create AI retool where tooling is done via AI, to create full stack apps like internal portals, ERP apps. Which led me to an architecture where we give ai pre build component, tools and let is just do the binding, content generation work to create full stack apps. With this approach in a single prompt AI is able to generate final config jsons using chained/looped agentic llm flow and we render a full stack app with the configs at the end. I have open sourced the whole project whole code, app builder, agentic architecture, backend for you to use. Github:…
2025 · oneshotcodegen.com
- 19AP
I've just started AutoPack, which is a repository and python package of tools designed specifically for autonomous AI systems. Right now it's just LangChain but adding Auto-GPT and others isn't very hard.
2023 · autopack.ai
- 20

- 211P
A few weeks ago I posted about GoodToGo https://news.ycombinator.com/item?id=46656759 - a tool that gives AI agents a deterministic answer to "is this PR ready to merge?" Several people asked about the larger orchestration system I mentioned. This is that system. I got tired of being a project manager for Claude Code. It writes code fine, but shipping production code is seven or eight jobs — research, planning, design review, implementation, code review, security audit, PR creation, CI babysitting. I was doing all the coordination myself. The agent typed fast. I was still the…
Feb 2026 · github.com
- 22FS
Hi everyone! I've been loving building with AI, and over the past few years I've been leaning more and more into Typescript (and bun). My team at inference.net is constantly trying to get more leverage out of AI and find ways to setup our codebase to be able to increase the level of correctness that our AI is able to write code at. This starter repo is a very opinionated way to lay out a repo to lean into AI heavily. It leverages Cloudflare Workers as a deployment target for the API (my goal is to never have to deploy an API on a AWS/Azure/GCP server ever again unless I get to a…
2025 · abeahmed.com
- 23IM
Hi HN, I built Hypermod to help developers automate large-scale code migrations. If you've ever had to upgrade dependencies, refactor thousands of files, or apply the same fix across multiple repos, you know how painful and time-consuming it can be. Hypermod makes this process faster and more reliable by combining static analysis, AI-powered codemods, and GitHub automation. Why I Built This I've spent years working with large codebases where upgrading dependencies or migrating frameworks was a nightmare—lots of manual work, brittle scripts, and coordination across teams. Existing tools like…
2025 · hypermod.io
- 24IB
2022 · npm.kasper.io
Ranked by how close each launch is in meaning, then by votes. Refine with a description →