nowfound

Alternatives

Products that do what StripFeed does

Convert any URL to clean Markdown for AI agents

  1. 1

    RAG-ready web scraping that cuts your LLM token costs

    Apr 2026 · geekflare.com

  2. 2HT

    Hey HN! I originally built “html-to-markdown” back in 2018 (while still in high school) to handle complex HTML conversions where other libraries struggled. Now, I’ve released v2 — a complete rewrite designed to handle even more edge cases. It supports entire websites with a high accuracy. Example use: I’ve used it in my RSS reader to strip HTML down to clean Markdown, similar to the "Reader Mode" in your Browser. It can be used as a Golang package or as an CLI. Give it a try & tell me what edge cases you encounter!

    2024 · github.com

  3. 3IM

    My partner usually writes substack posts which I then mirror to our website’s blog section. To automate this, I made a simple tool to scrape the post and clean it so that I can drop it to our blog easily. This might be useful to others as well. Oh and ofcourse you can instruct GPT to make any final edits :D

    2024 · markdowndown.vercel.app

  4. 4

    Convert text to markdown for LLMs like ChatGPT

    2025

  5. 5

    Turn websites into LLM-ready data.

    2024

  6. 6SA

    Alright so if you run a self-hosted blog, you've probably noticed AI companies scraping it for training data. And not just a little (RIP to your server bill). There isn't much you can do about it without cloudflare. These companies ignore robots.txt, and you're competing with teams with more resources than you. It's you vs the MJs of programming, you're not going to win. But there is a solution. Now I'm not going to say it's a great solution...but a solution is a solution. If your website contains content that will trigger their scraper's safeguards, it will get dropped from their data…

    Dec 2025 · github.com

  7. 7

    Get the content of any URL as clean Markdown

    Jul 2026 · converturltomarkdown.com

  8. 8

    Turn any website into LLM-ready Markdown

    Aug 2026 · exabase.io

  9. 9

    Markdown conversion tool for the AI era.

    2025

  10. 10CA

    Built this after realizing I was spending ~$1400/week on Claude Code with almost no visibility into what was actually consuming tokens. Tools like ccusage give a cost breakdown per model and per day, but I wanted to understand usage at the task level. CodeBurn reads the JSONL session transcripts that Claude Code stores locally (~/.claude/projects/) and classifies each turn into 13 categories based on tool usage patterns (no LLM calls involved). One surprising result: about 56% of my spend was on conversation turns with no tool usage. Actual coding (edits/writes) was…

    Apr 2026 · github.com

  11. 11AT

    While building mendable - we found that feeding LLMs well-structured markdown improved accuracy. We also found it surprisingly hard. We found some great tools online, but none reliably handled the entire process. We wanted an API that took a URL, crawled the pages in the URL, and gave us an easy-to-use, up-to-date markdown we could feed into our index. So, we released an open-source repo and an API that crawls and turns entire websites into a markdown with just a few lines of code The API handles: - Crawling without consistent sitemaps - Infra to handle running many crawling jobs - Proxying,…

    2024 · firecrawl.dev

  12. 12

    Markdown editor built for the AI workflow era

    Dec 2025

  13. 13

    Convert any file to AI-ready Markdown — 82% fewer tokens

    Aug 2026 · inktomd.com

  14. 14

    Connect AI agents to browser through raw CDP

    Apr 2026 · openbrowser.me

  15. 15RL

    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

  16. 16DD

    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

  17. 17

    Turn any URL into LLM-ready Markdown.

    Dec 2025

  18. 18IB

    Hey HN -- I'm a solo dev. Built this because I got tired of AI crawlers reading my HTML in plain text while robots.txt did nothing. The core trick: shuffle characters and words in your HTML using a seed, then use CSS (flexbox order, direction: rtl, unicode-bidi) to put them back visually. Browser renders perfectly. textContent returns garbage. On top of that: email/phone RTL obfuscation with decoy characters, AI honeypots that inject prompt instructions into LLM scrapers, clipboard interception, canvas-based image rendering (no img src in DOM), robots.txt blocking 30+ AI crawlers, and…

    Mar 2026 · obscrd.dev

  19. 19

    One-click webpage to markdown — built for AI workflows

    Mar 2026 · chromewebstore.google.com

  20. 20SC

    Shmauthor here. Built this for myself, putting it out in case it's useful. Needed any URL as clean Markdown for LLM context — including Cloudflare/anti-bot sites. curl gets HTTP 403 on those, raw HTML is 80%+ nav noise eating context, paid SaaS (Firecrawl, Jina) wasn't an option for me. It's a Docker wrapper around two existing OSS tools — CloakBrowser (stealth Chromium that passes Cloudflare) and rs-trafilatura (HTML → Markdown). No new scraper, just glue. Runs locally, my URLs stay on my box Token reduction (raw curl HTML vs snitchmd, tiktoken cl100k_base): -…

    Apr 2026 · github.com

  21. 21MA
  22. 22SC

    Hey HN. I built this because my Anthropic API bills were getting out of hand (spoiler: they remain high even with this, batch is not a magic bullet). I use Claude Code daily for software design and infra work (terraform, code reviews, docs). Many Terminal tabs, many questions. I realised some questions are ok to wait on and with that comes some cost savings. So here is a small MCP that lets you send work directly to Anthropic's Batch API from inside Claude Code, for the same quality responses just 50% cheaper, results come back in ~30min-1hr. How it works: you type /batch review this…

    Feb 2026 · github.com

  23. 23RL

    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

  24. 24

    Bulk-convert HTML to Markdown for AI — private, in-browser

    27d ago · html-to-markdown-ai.com

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