nowfound

Alternatives

Products that do what Julie update – local LLMs, CUA, installers and perf gains does

The biggest shift is that Julie now supports fully local LLMs and agentic workflows. It’s no longer limited to answering questions about what’s on screen. It can now run writing and coding agents, and optionally take concrete actions on your computer under supervision. What’s new: - Local LLM support. Julie can now run entirely on-device, - Agentic computer use. I added a computer-use mode with demos showing multi-step actions like clicking, typing, and navigation. - Writing and coding agents. Draft, refactor, and iterate in-place without moving into a separate workspace. - Installers are…

  1. 1
    LM Studio209

    Discover, download, and run local LLMs (incl. DeepSeek R1)

    2025

  2. 2WW

    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

  3. 3

    Any process to AI with all LLM models

    2024

  4. 4

    Prompt, run, and deploy agents across Social Media and LLMs

    2025

  5. 5WU

    Hey HN – Gregor & Magnus here again. A few months ago, we launched Browser Use (https://news.ycombinator.com/item?id=43173378), which let LLMs perform tasks in the browser using natural language prompts. It was great for one-off tasks like booking flights or finding products—but we soon realized enterprises have somewhat different needs: They typically have one workflow with dynamic variables (e.g., filling out a form and downloading a PDF) that they want to reliably run a million times without breaking. Pure LLM agents were slow, expensive, and unpredictable for these…

    2025 · github.com

  6. 6CI

    One of the most frequent questions one faces while running LLMs locally is: I have xx RAM and yy GPU, Can I run zz LLM model ? I have vibe coded a simple application to help you with just that. Update: A lot of great feedback for me to improve the app. Thank you all.

    2025 · can-i-run-this-llm-blue.vercel.app

  7. 7AR

    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

  8. 8JZ

    I’ve posted here before about Julie, an open-source desktop AI assistant I’ve been building in public. The OSS version is local-first and powerful, but it assumes you’re comfortable bringing your own models or API keys. A lot of people told me the same thing: “I just want to install it and have it work.” So I built Julie Zero. Julie Zero is the premium tier that works straight out of the box. No API keys, no setup. Install it and start using it immediately. What Julie Zero does: Sees your screen and understands what you’re looking at in real time Helps across apps by clicking, typing,…

    Jan 2026 · github.com

  9. 9

    Connect AI agents to browser through raw CDP

    Apr 2026 · openbrowser.me

  10. 10

    The fastest workflow for developing with AI

    26d ago · agent-manager.dev

  11. 11

    Virtual assistant using AI to schedule your meetings

    2015

  12. 12
    Perssua61

    Real-time guidance from any LLM (including local ones)

    Nov 2025

  13. 132C

    Single-agent LLMs suck at long-running complex tasks. We’ve open-sourced a multi-agent orchestrator that we’ve been using to handle long-running LLM tasks. We found that single LLM agents tend to stall, loop, or generate non-compiling code, so we built a harness for agents to coordinate over shared context while work is in progress. How it works: 1. Orchestrator agent that manages task decomposition 2. Sub-agents for parallel work 3. Subscriptions to task state and progress 4. Real-time sharing of intermediate discoveries between agents We tested this on a Putnam-level math problem, but the…

    Feb 2026 · github.com

  14. 14
    Harbor75

    CLI + companion App to spin up complete local LLM stacks

    May 2026 · github.com

  15. 151C

    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

  16. 16CA

    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

  17. 17NC

    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

  18. 18RA

    Hi HN folks, I have been building AI agents for quite some time now. The shift has gone from LLM + Tools → LLM Workflows → Agent + Tools + Memory, and now we are finally seeing true agency emerge: agents as systems composed of tools, command-line access, fine-grained system capabilities, and memory. This way of building agents is powerful, and I believe it is here to stay. But the real question is: are the systems powering these agents ready for that future? I do not think so. Using Docker for a single agent is not going to scale well, because agents need to be lightweight and fast. LLMs…

    Mar 2026 · github.com

  19. 19CK

    Hi HN, for quite some time I've been thinking how LLMs are missing the knowledge base, where I can dump CSVs, PDFs, and most important, inline web app. running on Claude Code (bring your own agent) with agents with heartbeats and jobs https://runcabinet.com It runs locally and is installable via npm. GitHub (open source): https://github.com/hilash/cabinet This is still very early. I put the first version together quickly after seeing a post by Andrej Karpathy about LLM knowledge bases, which matched closely with what I’d been building. Some people have already…

    Apr 2026 · runcabinet.com

  20. 20LS

    Hi HN! Stefan here from superglue and today I’d like to share a new benchmark we’ve just open sourced: an Agent-API Benchmark, in which we test how well LLMs handle APIs. We gave LLMs API documentation and asked them to write code that makes actual API calls. Things like "create a Stripe customer" or "send a Slack message". We're not testing if they can use SDKs; we're testing if they can write raw HTTP requests (with proper auth, headers, body formatting) that actually work when executed against real API endpoints and can extract relevant information from that response. tl:dr: LLMs suck at…

    2025 · github.com

  21. 21LR

    I built localLLLM: a small community project for running local models. Live: https://locallllm.fly.dev The goal is simple: if someone has model + OS + GPU + RAM, they should get steps that actually work (ideally one liner) I need help populating and validating guides. If you run local models, please submit one working recipe (or report what failed). Would love to hear general feedback as well!

    Apr 2026 · locallllm.fly.dev

  22. 22IB

    Built a simple web app that tells you which open-source LLMs will work on your hardware. It auto-detects your specs, shows compatible models from Hugging Face, gives realistic performance estimates (tokens/sec), and recommends quantization settings. You can also manually input specs to see "what if I upgraded my RAM?" Made this after wasting time downloading giant models only to find they crawled on my hardware. Hope it saves you some frustration!

    2025 · caniusellm.com

  23. 23IB

    Hi HN, I’m the creator of Cordum. I’ve been working in DevOps and infrastructure for years (currently in the fintech/security space), and as I started playing with AI agents, I noticed a scary pattern. Most "safety" mechanisms rely on system prompts ("Please don't do X") or flimsy Python logic inside the agent itself. If we treat agents as autonomous employees, giving them root access and hoping they listen to instructions felt insane to me. I wanted a way to enforce hard constraints that the LLM cannot override, no matter how "jailbroken" it gets. So I built Cordum. It’s an open-source…

    Jan 2026 · github.com

  24. 24

    Local-first notebooks for executable LLM workflows.

    Jul 2026 · icc-go.com

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