nowfound

Alternatives

Products that do what AetherGrid does

Open-source AI workload orchestrator, lease-based execution

  1. 1

    The narrow control plane for AI agent tool and API calls.

    Aug 2026 · aegisora-ai.vercel.app

  2. 2IB

    Demo: https://aether.saphal.me GitHub: https://github.com/saphalpdyl/Aether Aether is a multi-BNG (Broadband Network Gateway) ISP infrastructure lab built almost from scratch that emulates IPoE IPv4 subscriber management end-to-end. It supports IPoE/Ipv4 networks and runs a python-based vBNG with RADIUS AAA, per-subscriber traffic shaping, and traffic simulation emulated on Containerlab. It is also my first personal networking project, built roughly over a month. Motivations behind the project I'm a CS sophomore. About three years ago, I was assigned, as an…

    Mar 2026 · aether.saphal.me

  3. 3

    Run AI jobs from your IDE with a one-click workflow

    Mar 2026 · oncompute.ai

  4. 4
    Clawther378

    Give your OpenClaw agent a real task board

    Mar 2026 · clawther.com

  5. 5
    Dagster+302

    Ship data pipelines with extraordinary velocity

    2024

  6. 6

    Deploy AI apps instantly with a single shot

    2025

  7. 7
    Epho156

    Hey folks, Burak here. Epho is an API that allows running Claude Code, Codex or Opencode in a sandbox in the cloud. It abstracts away sandboxes, and allows running coding agents with a single HTTP request. Epho came out of our own struggles with building our own AI analyst: - Sandboxes give you bare machines; you need to configure them for agentic workloads. - Each agent behaves differently, and you need to build integrations with each of them. - Sandbox providers are not very reliable, which means you need to figure out a multi-provider strategy to avoid failures. - Logging, artifacts,…

    17d ago · epho.io

  8. 8
    Finyuus81

    A code-first language for durable, governed AI workflows

    Aug 2026 · github.com

  9. 9
    Aether26

    Not a black box, a devbox

    Jul 2026 · runaether.dev

  10. 10EM

    Eve is an AI agent harness that runs in an isolated Linux sandbox (2 vCPUs, 4GB RAM, 10GB disk) with a real filesystem, headless Chromium, code execution, and connectors to 1000+ services. You give it a task and it works in the background until it's done. I built this because I wanted OpenClaw without the self-hosting, pointed at actual day-to-day work. I’m thinking less personal assistant and more helpful colleague. Here’s a short demo video: https://www.loom.com/share/00d11bdbe804478e8817710f5f53ac61 The main interface is a web app where you can watch work happen in…

    Apr 2026 · eve.new

  11. 11
    Parallax109

    Local-first AI orchestrator for software development tasks.

    Mar 2026 · parallax.maxigimenez.xyz

  12. 12GA

    Hey HN! Wanted to show our open source agent harness called Gambit. If you’re not familiar, agent harnesses are sort of like an operating system for an agent... they handle tool calling, planning, context window management, and don’t require as much developer orchestration. Normally you might see an agent orchestration framework pipeline like: compute -> compute -> compute -> LLM -> compute -> compute -> LLM we invert this so with an agent harness, it’s more like: LLM -> LLM -> LLM -> compute -> LLM -> LLM -> compute -> LLM Essentially you describe each agent in either a self contained…

    Jan 2026 · github.com

  13. 13
    AEVS131

    proof-of-execution for AI agents

    Jun 2026 · aevs.fetch.ai

  14. 14

    Cron jobs for AI agents w/ one command, zero infrastructure

    May 2026 · clawtick.com

  15. 15
    Aether2

    AI-powered intelligent task prioritisation and planning

    27d ago · aether.agentwave.in

  16. 16

    A kill switch and hard budgets for runaway AI agents

    Jun 2026 · github.com

  17. 17

    The open-source AI workstation for coding, ops, and life

    Apr 2026 · lukan.ai

  18. 18

    Hi HN, I’m Michael, I built AgentGrid with my friend Souren because we were tired of losing our coding sessions and couldn't keep track of what was actually being built across our many projects. Our approach was to use an infinite canvas desktop app for the TUIs we already know and love, mainly claude + codex. We drew inspiration from Figma and Railway. Overtime we added image nodes, notes, terminals, coding editors, source control, etc. I wasn't sure about it at first. It took me a month to give the first version Souren built a real try. What got me was an Apple System Update I've been…

    Jul 2026 · agentgrid.sh

  19. 19OA

    Hi HN. I've been running AI coding agents (Claude Code, Codex, etc.) on real repos for a while now. The dirty secret of "autonomous coding" is that agents stop all the time — quota limits, test failures, policy violations, bad judgement calls. You end up babysitting them. So I asked a different question: what if the system was designed around the assumption that agents WILL fail, and the job of the infrastructure is to never let that failure become a dead end? openTiger is a "non-human-first" orchestration system that runs multiple AI agents in parallel — planner, workers, testers, judge —…

    Feb 2026 · github.com

  20. 20

    Autonomous spatial computing & self-healing engine

    20d ago · aether-nexus-engine-87rj.vercel.app

  21. 21AO

    Hi HN! My name is Abhishek. I've spent my career working on Operating Systems and Infrastructure at places like Replit, Google, and Microsoft. Today, I'm excited to launch Arrakis: an open-source and self-hostable sandboxing service designed to let AI Agents execute code and operate a GUI securely. GitHub: https://github.com/abshkbh/arrakis Watch Claude build a live Google Docs clone using Arrakis via MCP – with no re-prompting or interruption. https://www.youtube.com/watch?v=IZ5cAnhAdPQ Key Features - Self-hostable: Run it on your own infra or Linux…

    2025 · github.com

  22. 222C

    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

  23. 23AB

    Hey HN, I've been building Aether, a background agent that takes production errors from Sentry and attempts to turn them into verified pull requests. When a new error hits your Sentry project: 1. Sentry webhook fires with the stack trace, breadcrumbs, and context 2. Aether spins up an isolated Fly.io VM and clones the repo at the relevant commit 3. Agent analyzes the stack trace, reproduces the issue, proposes a fix 4. Starts the dev server, re-runs tests, and can verify the running app with Playwright (headless Chromium is pre-installed in every VM) 5. A review pass evaluates the diff…

    Feb 2026

  24. 24

    Enforceable Fleet Intelligence for EPC Teams

    May 2026 · aetheriot.com

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