Alternatives
Products that do what WebToSlide does
byok to generate ppts in agentic way
- 1

- 2
- 3

- 4AJ
Hey HN, we’re building an open specification that lets agents discover and invoke APIs with natural language, built on the OpenAPI standard. agents.json clearly defines the contract between LLMs and API as a standard that's open, observable, and replicable. Here’s a walkthrough of how it works: https://youtu.be/kby2Wdt2Dtk?si=59xGCDy48Zzwr7ND. There’s 2 parts to this: 1. An agents.json file describes how to link API calls together into outcome-based tools for LLMs. This file sits alongside an OpenAPI file. 2. The agents.json SDK loads agents.json files as tools for an LLM that…
2025 · github.com
- 5

- 6

- 7

Let AI create a full-stack web app based on your description
2023
- 8BW
Hey HN, We’ve been building browser agents for a while. In production, we kept converging on the same pattern: deterministic scripts for the happy path, agents only for edge cases. So we built Demonstrate Mode. The idea is simple: You perform your workflow once in a remote browser. Notte records the interactions and generates deterministic automation code. How it works: - Record clicks, inputs, navigations in a cloud browser - Compile them into deterministic code (no LLM at runtime) - Run and deploy on managed browser infrastructure Closest analog is Playwright codegen but: - Infrastructure…
Jan 2026 · notte.cc
- 9IW
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
- 10

- 11

- 12

- 13AG
npx agentseed init AGENTS.md (https://agents.md) is a standard file used by AI coding agents to understand a repo (stack, commands, conventions). Agentseed generates it directly from the codebase using static analysis. Optional LLM augmentation is supported by bringing your own API key. Extracts languages, frameworks, dependencies, build/test commands, directory structure, and monorepo boundaries.
Feb 2026 · github.com
- 14AR
So, it feels like this should exist. But I couldn't find it. So I tried to build it. Agentflow lets you run complex LLM workflows from a simple JSON file. This can be as little as a list of tasks. Tasks can include variables, so you can reuse workflows for different outputs by providing different variable values. They can also include custom functions, so you can go beyond text generation to do anything you want to write a function for. Someone might say: "Why not just use ChatGPT?" Among other reasons, I'd say that you can't template a workflow with ChatGPT, trigger it with different…
2023 · github.com
- 15IB
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…
2024 · github.com
- 16AM
I built a browser-only studio for designing and orchestrating MCP agent systems for development and experimental purposes. The whole stack — tool authoring, multi-agent orchestration, RAG, code execution — runs from a single static HTML file via WebAssembly. No backend. The bet: WASM is a hard sandbox for free. When you generate tools with an LLM (or write them by hand), the studio AST-validates the source, registers it lazily, and JIT-compiles into Pyodide on first call. SQL tools run in DuckDB-WASM in a Web Worker. The built-in RAG uses Xenova/all-MiniLM-L6-v2 via Transformers.js for…
Apr 2026 · agentmcp.studio
- 17

- 18WS
I built a collection of webhook skills because AI coding agents are surprisingly bad at webhook integrations. The generated code looks reasonable until you run it, then signature verification fails, raw body handling is wrong, or the middleware order breaks everything. PostHog's research on LLM code generation (https://posthog.com/blog/correct-llm-code-generation) found that agents produce more reliable code when referencing known-working examples rather than reconstructing from training data. That's the approach here. `webhook-skills` is a collection of provider-specific…
Feb 2026 · github.com
- 19WB
Hi HN, I'm one of the creators of Nanobrowser, an open-source Chrome extension that lets you automate web tasks using AI agents. We were inspired by the potential of tools like OpenAI's Operator, but we wanted something that was: -Open-Source:You can see the code, modify it, and contribute to the project. -Browser-Based:No complex setups or server deployments. It runs directly in your browser. -Customizable:You can tailor the agent's behavior to your specific needs. -BYO LLM:Bring your own large language model API key (OpenAI, Anthropic,or even local models), No vendor lock-in. -Privacy…
2025 · github.com
- 20GA
Hi HN, I’m Sarafina, an engineer at Gamma, and I’m here to share something we’ve been building the Gamma API, now in public beta. We originally built Gamma as a way to turn rough content into shareable decks and documents, a kind of design layer for non-designers. Over time, we got more automation requests to enable quickly creating new sales pitches, lesson plans, or meeting summaries. The Generate API takes in raw input like text, meeting notes, or CRM data and returns polished content. You can generate: Slide decks Docs Social carousels (LinkedIn-style) All fully designed, brandable, and…
Sep 2025 · developers.gamma.app
- 21NC
There's been some interesting work lately with BrowserAI (runs LLMs in the browser using WebGPU) enabling local, private AI processing. Now, the team has released BrowserAgent - a no-code tool built on top of it. BrowserAgent lets you create custom AI workflows using a drag-and-drop interface, all within your browser. This means personalized web summarizers, research assistants, or content generators can all run locally with no cloud costs and full data privacy. Check it out here - https://browseragent.dev Key features include: - No-Code Workflow Builder: Design custom AI agents…
2025 · browseragent.dev
- 221C
We’ve just released Berri AI - a Python package https://github.com/ClerkieAI/berri_ai that makes it easy for developers to quickly deploy their LLM Agent from Google Colab to production (Web App and API Endpoint). Building LLM Apps can require working in online coding environments, like Colab, due to local environment limitations (e.g. running pytorch on older Macs). This can cause long dev cycles when deploying the app to production, as ported changes can only be tested once it is deployed after lengthy (>20min+) Docker builds. Berri lets you deploy directly from your…
2023 · github.com
- 23GS
I created this tool after writing a few agent skills by hand and noticing this pattern was repetitive. Paste a documentation URL, enter your own model API key, and it gets the page content client-side to create a reusable SKILL.md. There is no backend/proxy, so it stays as secure as possible. I would like feedback on the structure of the output and the edge cases.
May 2026 · getskillify.dev
- 24BB
Hi HN – we're the founders of BrowserOS.com (YC S24), and we're building an open-source agentic web browser. We're a fork of Chromium and our goal is to let non-developers create and run useful agents locally on their browser. --- When we launched a month ago, we thought we had the right approach: a "one-shot" agent where you give it a high-level task like "order toothpaste from Amazon," and it would figure out the plan and execute it. But we quickly ran into a problem that we've been struggling with ever since: the user experience was completely hit-or-miss. Sometimes agent worked like…
2025 · github.com
Ranked by how close each launch is in meaning, then by votes. Refine with a description →