Alternatives
Products that do what BaaS to build agents as data, not code does
Agents and workflows as data instead of code. Julep is a backend-as-a-service to build agents and workflows. Main features: 1. Experimentation Velocity: With most agent frameworks, agents are code that need to be deployed. To iterate on the prompts or update the agent, you need to make changes to the code and deploy it to your server. This makes agents hard to iterate on quickly. But with agents and tasks declared as data, all that happens in the background is make an api call to update or make a new entry in the database. This increases the experimentation velocity. 2. Scalability and…
- 1

- 2

- 3

- 4

- 5

- 6

- 7

- 8

- 9
- 10CA
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
- 11

- 12KD
Agent runs often fail after expensive model calls and executing tools that have real-world side effects. This problem is made even worse by how common it is to deploy agents to serverless environments. When your agent dies, it needs to be restarted, but doing so safely isn't easy and everyone building agents has to solve this same problem of durability. The stack you're running probably already has half of what you need for durable execution already though, ie, a queue or job runner that can invoke work at least once. kassette gives you the other half by journaling completed steps to object…
Jul 2026 · github.com
- 13AF
Hi HN — I’m Abhi. We built Agint so PMs and engineers can design and edit software as a graph — architecture first — iterate with fast visual feedback, then generate deployable code from it when it’s ready. We presented underlying approach at NeurIPS (Deep Learning for Codegen) as an Agentic Graph Compiler: The graph (structure + types + semantic annotations) is the source of truth, and code is a compilation/export target. Paper: Agentic Graph Compilation for Software Engineering Agents: https://arxiv.org/abs/2511.19635 Live Demo: https://flow.agintai.com…
Jan 2026 · flow.agintai.com
- 14WC
A friend and I built this as a side project to help us collaborate on files with our agents. Claude / Codex kept outputting .md and .html files which are great until we needed to share them, so we built this small website to help with that. Agent can either use an HTTP + Skill or an MCP which also uses MCP Apps to add widgets to Claude Desktop / Mobile chat. Would love any feedback and hopefully this helps someone else as it did us!
Jun 2026 · workplane.co
- 15HA
Hi HN, I am Umer. I recently built an experimental framework called HyperFlow to explore the idea of self-improving AI agents. Usually, when an agent fails a task, we developers step in to manually tweak the prompt or adjust the code logic. I wanted to see if an agent could automate its own improvement loop. Built on LangChain and LangGraph, HyperFlow uses two agents: - A TaskAgent that solves the domain problem. - A MetaAgent that acts as the improver. The MetaAgent looks at the TaskAgent's evaluation logs, rewrites the underlying Python code, tools, and prompt files, and then tests the new…
Apr 2026
- 16EB
Hi HN — I built Elf0, a command-line tool to define and run AI agent workflows in YAML. It helps you iterate on small multi-step "agents" without scaffolding a whole codebase. The agent patterns described in Anthropic's article was an inspiration: https://www.anthropic.com/engineering/building-effective-age... I then used Nvidia's AgentIQ YAML spec as inspiration. Why: I keep bumping into tasks where a single prompt isn’t enough (e.g., extracting quote data from an insurance PDF). Defining the workflow in YAML makes it easy to version prompts, parameters and logic, and to…
2025 · elf0.com
- 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
- 18AF
I’ve been working on a temporal database for agents that combines graphs, tables, and compute. While building it, I ended up needing an agent framework that could handle both simple tool-use tasks and more graph-based execution, so I pulled that out into a separate project, Agent Forge. Agent Forge uses a two-tier execution model: * a heuristic router decides whether a request is simple or complex * simple requests go through a lightweight agent loop with a single system prompt and tool-calling loop * more complex requests can use memory retrieval, reflection constraints, tree search, and…
Mar 2026 · github.com
- 19

- 20UA
Three months ago, we started developing an open source agent framework. We previously tried existing frameworks in our enterprise product but faced challenges in certain areas. Problems we experienced: * We risked our stateless architecture when we wanted to add an agented feature to our existing system. Current frameworks lack server-client architecture, requiring significant effort to maintain statelessness when adding an agent framework to your application. * Scaling problem - needed to write Docker configurations as existing frameworks lack official Docker support. Each agent in my…
2025 · github.com
- 21AN
Hi HN! I'm building Ano because I was tired of Slack's bloat and sluggishness, and never got any value out of their agent implementation. Ano is built local-first for speed (using Rocicorp Zero), focused on communication, and lets you use your own code agent as an assistant (Claude in my case, but it works with Codex too). I use the code agent to summarize anything unread (linking back to what matters), respond with context, and share data to and from connected tools (GitHub, Posthog, Attio, etc). Using your code agent for this might sound counter-intuitive, but to me it's the most powerful…
Jun 2026 · ano.chat
- 22AE
I’ve spent the past 10 years working on AI in finance, with much of that time focused on building evaluation systems for production environments. As agents become more widely adopted, more software engineering and product people have start building them. But I’ve noticed that many teams are not yet fluent in systematic evaluation, or in the processes needed to keep agent quality high over time. For large organizations, that gap is rarely the bottleneck due to dedicated teams. But after speaking with a number of startups, it became clear that building strong, up-to-date evals is much harder…
May 2026 · github.com
- 23AL
Hi HN, I built agentspace because I kept seeing tmux recommended for keeping Claude Code sessions alive over SSH. I find multiplexers painful because they subtly change shell behavior in ways I always forget. They also do not offer a standardized way to run highly permissive agents in a safe way. I also tried worktrees, but it just feels awkward to manage work in that way. Docker can help with all of this, so I thought up a workflow and used some shell aliases to automate spawning Claude/Codex agents into docker containers. I ended up creating a cli to wrap all these methods and would…
Jun 2026 · github.com
- 24TA
We’ve been seeing more and more developers use AI coding agents directly in their GraphQL workflows. The problem is the agents tend to fall back to generic or outdated GraphQL patterns. After correcting the same issues over and over, we ended up packaging the GraphQL best practices and conventions we actually want agents to follow as reusable “Skills,” and open-sourced them here: https://github.com/apollographql/skills Install with `npx skills add apollographql/skills` and the agent starts producing named operations with variables, `[Post!]!` list patterns, and more…
Feb 2026 · skills.sh
Ranked by how close each launch is in meaning, then by votes. Refine with a description →