HN user

opiniateddev

72 karma
Posts23
Comments18
View on HN
github.com 29d ago

Code Review by Dines and Gilfoyle

opiniateddev
3pts2
conductor-oss.github.io 1mo ago

Dynamic ReACT Loop with Conductor

opiniateddev
3pts0
github.com 1mo ago

HttpBin Service

opiniateddev
1pts0
github.com 2mo ago

Show HN: Six legendary marketers walk into a workflow

opiniateddev
5pts1
medium.com 2mo ago

Workflow Engine Is Durable. Your Agent's Decisions Aren't

opiniateddev
2pts0
github.com 2mo ago

Show HN: Native agent runtime for Conductor OSS

opiniateddev
1pts0
medium.com 3mo ago

Late-Bound Sagas: Why Your Agent Is Not an LLM in a Loop

opiniateddev
3pts1
conductor-oss.github.io 3mo ago

Conductor – Durable Execution Engine

opiniateddev
3pts0
github.com 3mo ago

Code review skill inspierd by Gilfoyle and Dinesh

opiniateddev
2pts0
github.com 4mo ago

Show HN: Markitdown in Go

opiniateddev
4pts0
www.mcp-workbench.ai 6mo ago

Show HN: Tool for Testing MCP Servers

opiniateddev
5pts0
fast.com 11mo ago

Fast – Speedtest

opiniateddev
2pts0
github.com 3y ago

Framework used by Netflix to orchestrate microservices

opiniateddev
1pts0
www.youtube.com 3y ago

Conductor at Netflix – Managing ML Infra for Personalized Recommendations [video]

opiniateddev
6pts0
github.com 3y ago

Netflix Conductor Version 3.13.7

opiniateddev
4pts0
orkes.io 3y ago

Handling Failures in Distributed Applications

opiniateddev
1pts0
www.meetup.com 3y ago

Meetup: How Does Conductor Power ML and Security Infrastructure

opiniateddev
1pts0
news.ycombinator.com 3y ago

Ask HN: What business problems are you solving with LLMs?

opiniateddev
1pts0
orkes.io 3y ago

Long Running Workflows and Transactions

opiniateddev
2pts0
github.com 3y ago

Netflix Conductor

opiniateddev
2pts0
medium.com 3y ago

Workflows as a Distributed Transactional Back End

opiniateddev
3pts0
a16z.com 3y ago

Modern Transactional Stack

opiniateddev
115pts83
techzone.vmware.com 3y ago

VMware's Freestyle Automations

opiniateddev
8pts0

I'm working on Agentspan: https://github.com/agentspan-ai/agentspan

It's a durable runtime for AI agents.

The thesis: agents should not just be an LLM loop running inside one Python process. Once agents touch real systems, you need crash recovery, retries, human approval, distributed tool execution, cancellation, observability, and execution history.

Agentspan is basically applying the Conductor OSS execution model to agents. Conductor made long-running distributed workflows durable. Agentspan tries to do the same thing for agent executions: give every run an ID, persist the state, let it survive process death, pause for approval, resume later, and inspect what happened.

Author here, built Netflix Conductor.

The post is three arguments that together form a new framing for agent runtimes:

The LLM shouldn't execute anything (planning and execution belong on strictly separated planes), signals are the primitive that makes out-of-band cancellation and replanning possible, and the workflow's graph should be synthesized by the LLM at runtime rather than declared by a programmer at commit time. That last one is the load-bearing idea - a Late-Bound Saga.

Agentspan is the runtime that implements it on top of Conductor. Happy to answer about any of these and why I think the `while` loop is the wrong primitive.

Repo: https://github.com/agentspan-ai/agentspan

Orkes | Backed and Front-end Engineers | Full Time | Remote or Bay Area | https://orkes.io/careers/

Orkes offers cloud hosted version of Netflix Conductor (https://github.com/Netflix/conductor). We are the core developers and founders of Conductors prior to founding Orkes.

We are looking for engineers who are interested in building the platform used by many fortune 100 companies to build their distributed stateful applications.

In this role, you will constantly push the boundaries of what is possible in a distributed system and developer experience.

Linux from Scratch 4 years ago

This is/was an awesome resource which helped me understand the basics of Linux installations, distributions. Used it to build really minimal distros.

We use Airflow at scale, I am kind of wondering why do we need something different to manage workflows. The advantage I see with Airflow is that its simple, BashOperator allows me to execute my code in any language that I have written and the DAG is very simple to understand and reason about. Not to mention the dependency management aspect of it.