| | | |
Show HN: Optio – Orchestrate AI coding agents in K8s to go from ticket to PR
11–20 of 77 posts
Re: Show HN: Optio – Orchestrate AI coding agents in K8s to go from ticket to PR
#12What’s the most complicated, finished project you’ve done with this?
I started tasking subagents for each remaining chunk of work, and then found I was really just repeating the need for a normal sprint tasking cycle but where subagents completed the tasks with the unit tests as exit criteria. So optio came to my mind, where I asked an agent to run the test suite, see what was failing, and make tickets for each group of remaining failures. Then I use optio to manage instances of agents working on and closing out each ticket.
Re: Show HN: Optio – Orchestrate AI coding agents in K8s to go from ticket to PR
#13the misaligned columns in the claude made ASCII diagrams on the README really throw me off, why not fix them? | | | |
Re: Show HN: Optio – Orchestrate AI coding agents in K8s to go from ticket to PR
#14And what stops it making total garbage that wrecks your codebase?
There are a few things: a) you can create CI/build checks that run in github and the agents will make sure pass before it merges anything b) you can configure a review agent with any prompt you'd like to make sure any specific rules you have are followed c) you can disable all the auto-merge settings and review all the agent code yourself if you'd like.
you've really got to be careful with absolute language like this in reference to LLMs. A review agent provides no guarantees whatsoever, just shifts the distribution of acceptable responses, hopefully in a direction the user prefers.
Re: Show HN: Optio – Orchestrate AI coding agents in K8s to go from ticket to PR
#15Earlier quoted context omitted.
There are a few things: a) you can create CI/build checks that run in github and the agents will make sure pass before it merges anything b) you can configure a review agent with any prompt you'd like to make sure any specific rules you have are followed c) you can disable all the auto-merge settings and review all the agent code yourself if you'd like.
> to make sure you've really got to be careful with absolute language like this in reference to LLMs. A review agent provides no guarantees whatsoever, just shifts the distribution of acceptable responses, hopefully in a direction the user prefers.
Re: Show HN: Optio – Orchestrate AI coding agents in K8s to go from ticket to PR
#16Re: Show HN: Optio – Orchestrate AI coding agents in K8s to go from ticket to PR
#17Re: Show HN: Optio – Orchestrate AI coding agents in K8s to go from ticket to PR
#18Re: Show HN: Optio – Orchestrate AI coding agents in K8s to go from ticket to PR
#19I'm working on something a little similar but mines more a dev tool vs process automation but I love where yours is headed. The biggest issue I've run into is handling retries with agents. My current solution is I have them set checkpoints so they can revert easily and when they can't make an edit or they can't get a test passing, they just restart from earlier state. Problem is this uses up lots of tokens on retries…