nowfound

Alternatives

Products that do what Accept-md – One command to make Next.js sites LLM-scraping friendly does

I recently saw a post from the Vercel CEO pointing out that LLMs understand websites much better when they can request: `Accept: text/markdown` Most websites today are built for humans. When AI agents try to consume them, they get complex HTML instead of clean, structured content. So I built *accept-md* – a simple open-source package for Next.js that helps solve this. Getting started is intentionally minimal: ``` npx accept-md init ``` After that, your existing Next.js routes can automatically respond with Markdown whenever an AI agent (or any client) requests it. No redesigns, no CMS…

  1. 1WW

    I spent a few hours last weekend testing whether AI can replace code by executing directly. Built a contact manager where every HTTP request goes to an LLM with three tools: database (SQLite), webResponse (HTML/JSON/JS), and updateMemory (feedback). No routes, no controllers, no business logic. The AI designs schemas on first request, generates UIs from paths alone, and evolves based on natural language feedback. It works—forms submit, data persists, APIs return JSON—but it's catastrophically slow (30-60s per request), absurdly expensive ($0.05/request), and has zero UI…

    Nov 2025 · github.com

  2. 2

    RAG-ready web scraping that cuts your LLM token costs

    Apr 2026 · geekflare.com

  3. 3

    Turn any website into LLM-ready Markdown

    Aug 2026 · exabase.io

  4. 4
    tweet.md239

    X posts as clean Markdown

    May 2026 · tweet.md

  5. 5IW

    Hey HN, I made Browser-Use, an open-source tool that lets (all Langchain supported) LLMs execute tasks directly in the browser just with function calling. It allows you to build agents that interact with web elements using natural language prompts. We created a layer that simplifies website interaction for LLMs by extracting xPaths and interactive elements like buttons and input fields (and other fancy things). This enables you to design custom web automation and scraping functions without manual inspection through DevTools. Hasn't this been done a lot of times? Good question, as a general…

    2024 · github.com

  6. 6CH
  7. 7EM
  8. 8

    Markdown conversion tool for the AI era.

    2025

  9. 9TA

    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

  10. 10RL

    We've been building data pipelines that scrape websites and extract structured data for a while now. If you've done this, you know the drill: you write CSS selectors, the site changes its layout, everything breaks at 2am, and you spend your morning rewriting parsers. LLMs seemed like the obvious fix — just throw the HTML at GPT and ask for JSON. Except in practice, it's more painful than that: - Raw HTML is full of nav bars, footers, and tracking junk that eats your token budget. A typical product page is 80% noise. - LLMs return malformed JSON more often than you'd expect, especially with…

    Mar 2026 · github.com

  11. 11LS
  12. 12AR

    Hey HN, I wanted to share a UI toolkit project I’ve been working on recently, born out of how difficult I found it to build a great UX on top of LLMs, and keep application state in sync. I’ve built: - A React/JS front-end library for conversational interfaces, which makes it super easy to bootstrap AI assistants and ChatGPT style UX: https://github.com/nlkitai/nlux - A set of adapters that simplify integration with AI backends such as LangServe and HuggingFace The library is highly configurable, easy to theme, supports markdown streaming (that was tough to get…

    2024 · github.com

  13. 13

    Correctness check, stack recipes, and agent support matrix

    Apr 2026 · acceptmarkdown.com

  14. 14RL

    While working with LLMs for structured web data extraction, we saw issues with invalid JSON and broken links in the output. This led me to build a library focused on robust extraction and enrichment: - Clean HTML conversion: transforms HTML into LLM-friendly markdown with an option to extract just the main content - LLM structured output: Uses Gemini 2.5 flash or GPT-4o mini to balance accuracy and cost. Can also also use custom prompt - JSON sanitization: If the LLM structured output fails or doesn't fully match your schema, a sanitization process attempts to recover and fix the data,…

    2025 · github.com

  15. 15DD

    Just launched DataFuel.dev on Product Hunt last Sunday, and I landed in the top 3! I built this API after working on an AI chatbot builder. Scraping can be a pain, but we need clean markdown data for fine-tuning or doing RAG with new LLM models. DataFuel API helps you transform websites into LLM-ready data. I've already got my first paying users. Would love your feedback to improve my product and my marketing!

    2024 · datafuel.dev

  16. 16
    Webclaw17

    Turn any website into LLM-ready data

    May 2026 · webclaw.io

  17. 17

    Open-source Next.js admin dashboard, built for AI agents

    4d ago · nextadmin.co

  18. 18LM

    This app is demonstrating how to support rich-text (markdown) in LLM responses (OpenAI in this case). It's a Nextjs app, with Vercel AI, and remark for handling the formatting.

    2023 · llm-markdown.vercel.app

  19. 19IC

    Hey HN , My product is targeted at developers who want to save 20+ hours writing the same boilerplate code. *Next Inject* is a CLI that lets you configure services such as payments, authentication, and SEO with a single command. *Next Inject* is straight to the point; you get exactly what you pay for, i.e. run `next-inject add stripe` and voila, you can now accept payments from users. Now there are products like shipfa.st that solve this problem, but for *6x* the price, and *20x* more boilerplate to overwhelm developers. Additionally, each Next Inject plugin has an optimized docs page to…

    2024 · nextinject.pro

  20. 20

    Turn any URL into LLM-ready Markdown.

    Dec 2025

  21. 21IW

    Hey HN, I built browser-use, an open-source alternative to OpenAI’s Operator for browser-use systems, and here’s why I think it’s better: Flexibility: You can use any LLM with our tool – Gemini, Anthropic, Qwen, Llama, DeepSeek, and more. As new models improve, so does your agent. Open Source: No need to pay $200/month or endure long waitlists – it’s free and accessible to everyone today. Custom Automation: Our Python package allows you to build actual web automations. Your LLM can gain new tools, like file uploads. Cost: Our system is 30x cheaper than Operator, e.g., when used with…

    2025 · github.com

  22. 22LR

    Hi HN, I'm new to Rust and, after half of `The Rust Programming Language` I decided to delve into a project I would actually use: a markdown to html compiler that actually serves my micro-blog (I started just right after publishing the project hehe). The project is intentionally small and one-file contained: I wanted to have the full picture in mind. I'm open to comments, suggestions and PRs. If you asked me more convincing arguments to "why did you do it?" rather than "to learn Rust" I would respond with: LLMs are effectively a new type of web users today and will be more and more present…

    Jul 2026 · andreadimatteo.com

  23. 23
    MDify3

    Clean Markdown for LLMs—cut tokens by 50-60%

    Feb 2026

  24. 24NJ

    Hey y'all! Jared Palmer here... Me, @shadcn, and @shuding_ just an open-sourced a new Next.js AI chatbot app template built with Next.js, the Vercel AI SDK, and Vercel KV. Source Code: https://github.com/vercel-labs/ai-chatbot

    2023 · chat.vercel.ai

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