HackerTrans
TopNewTrendsCommentsPastAskShowJobs

opiniateddev

no profile record

Submissions

Code Review by Dines and Gilfoyle

github.com
3 points·by opiniateddev·21 dni temu·2 comments

Dynamic ReACT Loop with Conductor

conductor-oss.github.io
3 points·by opiniateddev·w zeszłym miesiącu·0 comments

HttpBin Service

github.com
1 points·by opiniateddev·w zeszłym miesiącu·0 comments

Show HN: Six legendary marketers walk into a workflow

github.com
5 points·by opiniateddev·2 miesiące temu·1 comments

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

medium.com
2 points·by opiniateddev·2 miesiące temu·0 comments

Show HN: Native agent runtime for Conductor OSS

github.com
1 points·by opiniateddev·2 miesiące temu·0 comments

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

medium.com
3 points·by opiniateddev·3 miesiące temu·1 comments

Conductor – Durable Execution Engine

conductor-oss.github.io
3 points·by opiniateddev·3 miesiące temu·0 comments

Code review skill inspierd by Gilfoyle and Dinesh

github.com
2 points·by opiniateddev·4 miesiące temu·0 comments

Show HN: Markitdown in Go

github.com
4 points·by opiniateddev·4 miesiące temu·0 comments

Show HN: Tool for Testing MCP Servers

mcp-workbench.ai
5 points·by opiniateddev·6 miesięcy temu·0 comments

Fast – Speedtest

fast.com
2 points·by opiniateddev·12 miesięcy temu·0 comments

comments

opiniateddev
·w zeszłym miesiącu·discuss
[dead]
opiniateddev
·2 miesiące temu·discuss
[flagged]
opiniateddev
·2 miesiące temu·discuss
for our production we use Redis for queues but have seen users using both Postgres and MySQL for queues as well.
opiniateddev
·2 miesiące temu·discuss
Conductor OSS does this quite well https://docs.conductor-oss.org/devguide/ai/index.html

https://github.com/agentspan-ai/agentspan which is essentially an agentic SDK layer for Conductor can convert any of your langgraph, openAI, vercel, or ADK agent and makes it durable and adds orchestration with no code changes.
opiniateddev
·2 miesiące temu·discuss
[flagged]
opiniateddev
·2 miesiące temu·discuss
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.
opiniateddev
·2 miesiące temu·discuss
Do you want to work on distributed systems? We are building the stack for running agents in production.

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

Apply: https://job-boards.greenhouse.io/orkes/jobs/4998231008

https://job-boards.greenhouse.io/orkes/jobs/4894213008

https://job-boards.greenhouse.io/orkes/jobs/5203462008

All the roles are in in-office in Sunnyvale, CA
opiniateddev
·2 miesiące temu·discuss
Why not just use https://github.com/conductor-oss/python-sdk provide durability, distributed and orchestration.
opiniateddev
·3 miesiące temu·discuss
Agentic guardrails should be deterministic and algorithmic as opposed to using LLM or relying on LLMs.

The moment you rely on LLM to be a guardrail, well you are risking it to fail.
opiniateddev
·3 miesiące temu·discuss
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
opiniateddev
·3 miesiące temu·discuss
Runtime for agents https://github.com/agentspan-ai/agentspan Built on top of Conductor OSS - https://github.com/conductor-oss/conductor