Agentic Engineering: Working With AI, Not Just Using It — Brendan O'Leary
AI Engineer · 2026-04-07 · 27м 3с · 109 486 просмотров · YouTube ↗
Топики: ai-loop-engineering, ai-agent-orchestration
🎧 Аудио
📝 Summary
model=deepseek-v4-flash · prompt=summary-v7 · 7 774→2 527 tokens · 2026-07-20 11:48:04
🎯 Главная суть
Современные AI-кодинг-агенты — не просто автодополнение или ускорение написания кода. Это коллеги-разработчики, которые не знают бизнес-контекста и архитектурных причин, но могут быстро выполнять рутинную работу. Умение эффективно работать с ними — «агентная инженерия» — требует нового ментального подхода: управлять контекстом, тщательно проектировать задачи и разделять работу на фазы исследования, планирования и реализации.
Разница между «использованием» и «работой»
Большинство инженеров не могут внятно описать свой реальный workflow с AI — что они передают агенту, что оставляют себе, как принимают решения. Это тревожно, потому что 90% инженеров уже пробовали AI-инструменты. Проблема не в том, использует ли команда AI — использует, — а в том, извлекают ли они максимум. Создатель Flask Арман сформулировал точно: «Мы больше не просто используем машины — мы работаем с ними». Инструменты вроде молотка берут и кладут, а с AI-агентом взаимодействуют как с другим инженером, который прочитал все ответы на Stack Overflow.
Ментальная модель: младший разработчик без эго
Оптимальный способ думать об AI-агенте — как об энергичном, начитанном, но часто самоуверенном джуниоре. Он невероятно быстр, не устаёт, не переживает за свой код и может переписать его шесть раз без возражений. Его кругозор огромен — он видел множество языков, фреймворков и паттернов. Но у него нет суждения: он не понимает, почему три месяца назад было принято конкретное архитектурное решение. Он напишет технически корректный, но контекстуально неверный код. Арман заявил, что благодаря агенту выиграл 30% времени — именно потому, что знает, что можно отдать, а что оставить себе.
Контекстная инженерия — главный навык
Управление контекстом — «деликатное искусство и наука заполнения контекстного окна только тем, что нужно агенту для следующего шага» (Андрей Карпати). Есть две ключевые проблемы: контекст стоит денег (каждый токен добавляет затраты), и больше контекста не всегда лучше — качество может даже ухудшиться при превышении ~50% заполнения. Кроме того, плохой контекст «отравляет» вывод: если смешать две не связанные задачи, или вставить устаревшие комментарии, или пытаться «направлять» агента после серии ошибок, он может вернуться к старым неверным паттернам. Поэтому лучший подход — начинать новую сессию, как только осознали, что что-то пошло не так.
Как управлять контекстом на практике
Четыре принципа:
- Сохранять информацию вне контекстного окна — scratch-pad, memory files, agents.md. Эти файлы можно подгружать по мере необходимости.
- Выбирать контекст избирательно: брать только то, что релевантно текущему шагу — конкретные app mentions файлов, отключать ненужные MCP-серверы.
- Сжимать контекст после больших сессий отладки: если уже поняли проблему и решение, суммируйте и сфокусируйте агента на исправлении, а не на всей истории.
- Изолировать контекст: разделять работу между несколькими агентами или сессиями, чтобы избежать накопления. Это напоминает управление младшим разработчиком: как-то Брендан дал стажёрам wireframe в Comic Sans с улыбками-плейсхолдерами, и через несколько недель получил работающий прототип в том же стиле — это была его ошибка как менеджера, не объяснившего, что важно, а что нет.
Цикл Research → Plan → Implement
Самый простой и эффективный workflow для агентной инженерии. Ошибка новичков — сразу прыгать в реализацию («напиши код для X»). Модели отлично выдают много кода, но это часто ведёт к неверным предположениям и потраченному времени. Цитата Dex Horthy: «Одна плохая строка исследования может обернуться сотнями строк плохого кода». Поэтому:
- Research — используйте режим «ask», который может только читать и общаться, но не менять файлы. Анализируйте текущую систему: какие файлы задействованы, какие паттерны использовать, как пойдут данные, какие edge-случаи учесть. Результат — документ с выводами.
- Plan — после того как человек проверил исследование, составьте пошаговый план: какие файлы создать/изменить, как верифицировать изменения (тесты), что входит в scope, что нет. План — это чёткий файл в папке
plansс конкретными шагами и командами для проверки. - Implement — начните новую сессию, передав только план. Контекст минимален, модель (возможно, более дешёвая) чётко следует инструкциям. Каждый коммит — маленький и частый, Git служит как первая ревью перед тем, как отправить pull request коллегам.
Настройка агентов: режимы, правила, навыки
Для эффективной работы агенту нужна конфигурация. Три основных «режима»: ask (только исследование), architect (планирование), code (реализация). Поведение настраивается через глобальные или репозиторные rules (например, conventions, команды сборки/тестов). Ключевые файлы:
- agents.md — де-факто стандарт для always-on инструкций о проекте: минимальные сведения о конвенциях, командах, требованиях к тестам. Загружается почти всегда.
- skills.md — многоразовые «плейбуки» для частых workflow (ежедневные changelog’и, создание motion-графики). Активируются по запросу.
Расширение контекста: MCP и внутренние API
Model Context Protocol (MCP) даёт агенту дополнительные инструменты — например, GitHub API для работы с issue/PR или Context7 для поиска свежей документации. Но каждый MCP-сервер добавляет токены в системный промпт. Если вы работаете с фронтендом, не подключайте Postgres MCP — он будет отвлекать и тратить контекст. В корпоративной среде есть четыре способа интеграции с внутренними API: использовать OpenAPI/Swagger-спецификацию, конвертировать её в Markdown, ссылаться на URL документации, или построить собственный MCP-сервер для сложных многошаговых процессов.
Практические приёмы в IDE и за её пределами
Полезные фичи: упоминание файлов/коммитов/выводов терминала через @mention для быстрого добавления контекста. Slash-команды для старта новой задачи или сжатия контекста. Возможность выделить код, кликнуть правой кнопкой и добавить в инструмент для вопроса или изменения. Автокомплит полезен не только в коде, но и при промптинге. За пределами редактора агенты всё чаще доступны в CLI, на мобильном, в Slack — как коллега, который всегда рядом.
Как начать и наработать репсы
Агентная инженерия — одновременно искусство и наука, поэтому нужна практика. Выберите один инструмент (например, Kilo), получите много повторений, попробуйте цикл «Research → Plan → Implement». Опытные инженеры отмечают, что после освоения такого подхода программирование снова становится увлекательным — рутина перепоручается агентам, а человеческий мозг занимается сложными инженерными задачами.
📜 Transcript
en · 5 014 слов · 58 сегментов · clean
Показать текст транскрипта
Let's talk a little bit about what I mean by agentic engineering. And let's maybe start with a question. If I were to ask you right now, how are you using AI in your work? Could you actually really explain it? Not just, you know, it helps me code faster, it can write code really fast, but like the real workflow, what you hand off, what you keep, how you decide in between. Most engineers can't, and that's a little wild to me because 90% of engineers are already using AI tools or have used them. Maybe only half of them are using them on a regular basis, but that's a number that's definitely growing all the time. And that's the current state. So the question isn't whether your team is using AI, they are. The question is whether you're getting the most out of it or you're just kind of auto completing your way through the day. That gap between using AI and being able to articulate how you work with it, that's what this talk is all about. And really, I think it represents a paradigm shift of how we think about AI. And, you know, the history of AI and software engineering is moving very fast. It's also very surprisingly short, right? In the early 2020s, we got tools that could finish the lines for you. You'd type, you know, half of a function signature and the model would guess the rest of it. You know, kind of like autocomplete on steroids. It's a neat trick. And then in 2022, models started to be able to suggest entire functions, right? You could describe what you wanted and chat with a model and maybe get a working implementation back. And this is where GitHub Copilot first came on the scene and broke through and millions of developers started using it. And for the first time, it was starting to seem like maybe AI wasn't a novelty, maybe it was generally useful. But then in 2025, something really broke. you know, what we're living in now in 2026. The models don't just suggest they can execute. They can take a task and break it down and figure out which files need to be touched and make the changes and run the tests themselves and then come back with an actual pull request. And so that's not just fancy autocomplete. It's not just a faster horse. It's a collaborator. It's a different way of working. And Armand, the creator of Flask for those Python folks here, put it I think, perfectly. We're no longer just using machines. We're now working with them. And that framing, I think, captures this real shift, right? Tools are things that you pick up and put down. You use a hammer. You don't work with a hammer. But the AI coding agents we have today, they're kind of somewhere more in between. And there may be a little bit more like working with another engineer. Now it just happens to be an engineer who's read every Stack Overflow answer ever written. And I think that needs a mental model shift. And this is the mental model I want you to carry through the rest of this video and honestly through the rest of your next couple years of your career and working with these tools. I do think they're still tools, but we have to think about them differently. You kind of have to think about your AI agent as an energetic, enthusiastic, extremely well-read, often confidently wrong junior developer. That junior developer is incredibly fast. Don't easily get tired. They don't have any ego about their code. They'll happily rewrite something six times if you ask them to. And they have an astonishing breadth of knowledge. They've seen lots of languages. They've seen lots of frameworks. They've seen lots of patterns. But, and this is critical, what they don't have is judgment. They don't know your business context. They don't understand the reasons why you made that very specific architectural decision three months ago. And they'll confidently write code that is technically correct and contextually wrong. Armand also said that he's gained more than 30% of time in his day because the machine is doing a lot of the work. That's a real gain, but he's getting that 30% because he knows what he can hand off and what he has to keep for himself. He's not just blindly accepting every suggestion, he's directing the work. And that's the difference between using AI and working with AI, and that's what agentic engineering actually means. And so let's get tactical. If you're an engineer, how do we really get good at this? I think the number one thing to think about is context engineering. And here, Carpathie says, you know, context engineering is a delicate art and science of, you know, filling the context window with just what needs to happen for the agent to have the right context for the right iteration for the next step. And I think that's really critical for a couple of reasons. First, context is expensive, right? Every token you add into the context is going to add cost because all of those things, that whole chat history is sent back in as input tokens every time that you send it. And that, you know, can add up pretty quickly. And the other key is that more context doesn't always mean better results. And in fact, it can make the model actually dumber, right? it's not just about the money the quality can degrade as you get over about 50 full and there's lots of things that can trap you here and not the least of which are you know the facts that fact that mcp servers became so popular that we have a lot of these enabled all the time now well each one of those loads more and more context uh you know more and more input tokens in the context and and that can be a real problem if you start to get into this dumb zone around 50 context and That also isn't the only problem because not only can more context be a problem, but bad context can be a problem and can poison everything. Right? So this happens when you're maybe mixing two different tasks that didn't really overlap, or you've kind of got some outdated comments either in the code or that you've made to the agent. Or even worse, what I've seen a lot of people do is they start walking down the road with an agent and then realize, hey, We're down the wrong path. We've made a lot of wrong decisions. And they try to steer the agent back. But the problem is, again, the agent is not doing real reasoning like you and I as a human, right? It's taking all that context every time. And it may get lost in the middle or even see some of those negative things that you had before as still part of the context. And you see those negative patterns creeping back in if you're not careful. That's why it's better, you know, to not let these things kind of compound, but also, you know, always start a new session once you realize things are kind of off the rails, right? Because not only is context expensive, the more we have doesn't always mean better quality. In fact, at a certain point, there's a tipping point where it means worse quality. And bad context can corrupt the output. So the real critical thing for engineers is to manage the context. And what does that mean? Well, one, I think it means persisting a lot of information outside of the context window so that we can bring it in, right? So this is things like scratch pads for things we're working on, memory files, the agents MD, those kinds of files that help the agents have context to what you're working on. We also need to be very selective when we're selecting that context. So that means only pull in what's relevant for this step of the problem, right? Don't just pull in everything that might be useful. And so that could mean, you know, things like bringing in the right app mentions for files that we're referencing. That could mean making sure we don't have unnecessary MCP servers enabled. And it means, you know, making sure that the agent has the right data and that we as a human have curated that data for the agent. And then as it's getting bigger and that window gets bigger, we want to summarize and trim and compress that context, right? If we've gone through a whole big... deep dive and debugging session with the agent and now we think we have the problem and the solution, well that's great. It might be time to compress that context and just focus the agent back in on, okay, now we understand this problem, we're going to go fix it. And then the other most important thing is to isolate context. And I think this is why we've seen this huge rise in the past six or eight months of parallel agents because splitting work across several agents or several sessions can help things not accumulate. and really drive this kind of task separation. And again, if you think about it, aren't these all of the same things that I would tell a brand new engineering manager about managing a junior engineer? Like the story I tell here is when I was early in my career, I spent a lot of time as an engineering manager and product manager before I went into the dark arts of developer relations. And In my first job ever as an engineer manager, I was at a healthcare software company. And there was this new thing coming out called an iPad. And that dates me a little bit. But it was released in the market. And we thought this could be a great place to collect patient history. You know, that form you have to fill out every year at the doctor. It's very critical to assessing a lot of your, you know, risk of disease. But having to fill out from scratch every time is not fun. And so I designed in this other... archaic tool that some people may have heard of called balsamic basically a wireframing tool a wireframe of what this would look like now that wireframing tool used things like comic sans and like silly smiley face icons as placeholders and a lot of other stuff like that that you'd expect from just a wireframe and i handed that to a set of interns that we had working for us that summer thinking this is a great greenfield project for them to take some time on and you know a few weeks later i got back a working prototype and the font was Comic Sans and there were silly emoji placeholders and that's because that's what the spec had in it and so so whose fault was that obviously it was not the intern's fault it was my fault as an engineering manager for not giving the right context to those junior engineers as to what's important what's not and what we really need to focus on and what problem we're solving and so I think the habits that can tie all of that together You don't need to think about all four of those things for every task. You just need to think about doing one task per session. Keep an eye on your context meter. And if you're in doubt and it feels like things are off the rails, you're probably right. So start a new session. Ask it to summarize the session for a new agent. Turns out that AI is really great at writing prompts for AI. So if you've worked on something with an agent for a while, have that agent summarize where you're at. You can now read it. make sure it matches with your understanding and then start a new session with just that right context. Again, it's a little bit of art and a little bit of science. So how do we put this into practice? Well, I think there's a lot of workflows. There's lots of things written out there that you can read. I've even compiled a lot of them at path.kilo.ai. It's where you can find like all of these kinds of trends and ideas and workflow patterns that have been talked about. But what I think I keep coming back to is maybe one of the simpler ones, and that's the research plan implement loop, right? And I think this really helps us solve for a lot of like classic mistakes that people do when they pick up agentic engineering for the first time or pick up AI to help them try to do some engineering. And what most people do is say, hey, help me implement this feature. I want it to do X and Y. And, you know, these... large language models are very good at outputting lots of code. In fact, when I joined KiloCode over a year ago, I made a pronouncement that we would never have our website be just prompt and a whole lot of code flying by. Makes for a great demo and you've seen lots and lots of coding agents that maybe that's how they show it off. But I think the reality is jumping straight into code like that can cause a lot of wrong assumptions, it can waste even more time rather than saving time and just create a lot of frustration. And it really creates that kind of paradigm that we've seen where people are kind of anti-AI or think that AI is not a useful tool because they've jumped right in and gotten, you know, put garbage in and gotten garbage out. Or maybe it's been a while since they've used it, right? I mean, think of the... The Will Smith eating spaghetti when it comes to AI videos that's come a long way in just the past 2, 3, 4 years. You know, the same is true of the coding models, but you have to do what works to give them the best chance at getting a great result. And what that is is 1st, understanding the problem really well and making sure you and the agent can understand the problem really well, then laying out explicit steps for implementing that. Uh, that. those changes or fixing that problem and only then do we jump to the implementation phase where we're writing code and Dex Horthy has a great phrase that he says here which is a bad line of research can potentially be hundreds of lines of bad code and so we're really going to focus in on how do we get the research and the plan in place in order to make give ourselves the best chance of having great code come out so in that first phase we're going to use a tool that is only going to be focused in on research and so for kilo we call that ask mode and the reason we call it that is because the ask mode can't actually do anything it can only chat it can't write files it can maybe read files if you let it but it can't you know start trying to code a solution and so instead of trying to code a solution from the beginning we're going to first try to understand the system you know how does it actually work today where are the right files that are going to be involved what are the right paradigms that we want to mirror Or how does this differ from something that we have already? And, you know, just kind of learn where in the code base this is going to go and, you know, how the data is going to flow through the system and how it's going to change with our change, as well as like any edge cases we can need to consider, right? AI is really great at brainstorming. And so it can help you kind of brainstorm those things and make sure you've really covered all of your bases. And then once you've done that research, what's going to come out of that is an actual output document that shows the details of that research that you can then read and basically agree with and understand, hey, this matches my understanding of the problem, I think we're ready to move on to the plan. And so then once we've reviewed that as a human, now we can say, okay, let's outline the next steps. What kind of, you know, files are we going to create or change? Maybe there's some code snippets, but not always is it a good idea to have a code snippet in the plan. We're definitely going to include like how is how we're going to verify know this change is correct. What are the test either changes or additions that we're going to make to know that. And we're also going to be really explicit at the planning phase about what is in and out of scope, what is going to change, what isn't going to change. And again, the output of that is going to be a very clear plan file, right? You'll see a lot of repositories nowadays have a folder called plans, right? And we want to have that plan file be step by step instructions. with specific changes that we're going to make that have test commands to verify it, that has a strategy for understanding how it's going to change the system. And it's going to be very clear so that we can even use maybe a smaller, faster, or cheaper model to implement it because we've spent the time in the research and plan phase to really understand what we're going to be doing once we get to implementing the change. And when we come to implementing the change, we now can start over a new session and give it just the planned execution. It allows us to keep the context in that session very low. It allows us to carefully review each change and I think commit very frequently. Now, I used to work at a company called GitLab for many, many years. So maybe I'm a little biased towards Git, but I think Git can be a huge helper here when it comes to helping you slowly iterate and understand the changes that the agents are making. I treat Git on my local machine kind of like my own first pull request review. with my agents before I maybe put up an actual pull request for my colleagues to look at. But I think again, it's critical to understand here that human research at the planning, or sorry, human time at the planning and research phases is really the highest leverage use of your time. By the time you're implementing, you want to have all that hard thinking done. And that's really critical because, again, going back to Dex Horthy, who's spoken a lot on this subject, and I highly recommend you check out his videos of him on YouTube talking about this. He says very aptly that AI can't replace thinking. It can only amplify the thinking you've done or the lack of thinking you haven't done or the fact that you haven't thought it through. And so let's talk about how we configure our agents, kind of like one more step down from this. this paradigm of research plan implement to really make sure we do this. So first we talked about modes and customizations. We already talked about these modes, ask, code, architect, these modes that are specialized and focused on the thing that we're trying to get done, right? Architect is maybe for planning, ask mode is for research, code mode is for actually implementing. Then we also wanna have, you know, a set of rules that make sense for our workspace, right? For the the repository we're in or maybe globally on our machine so that we understand you know that we have a certain set of rules that we always want to adhere to and agents are pretty good at loading in and understanding those rules but we have to have them written down for them to have those in their context right and so i think a lot of the agent behavior then are things that we want to tweak as we're learning right How many do we want to do multiple agents at a time? Do we want those agents to use work trees so that we can then again merge them back in to our local repository locally before committing them to to a pull request? How much do we want to auto approve right? So most agents have the ability to tune, you know, what are the things that it can do independently? What are the tools it can use independently? Can it read files? Can it read files inside or outside of the workspace? Can it run tests? You know, what can the agent do autonomously without your intervention versus what do you need to approve? And I think this is something that you have to set up to be comfortable with in the beginning. And then also you need to be comfortable changing as you learn how to use these tools. And I think a good mental model. for this agent configuration is maybe kind of three distinct buckets, right? We talked about modes, right? This is that role-based configuration, you know, a behavior of an agent that we want. But there's two other really key things, and that is the agents.md and then skills.md that you'll hear about. And so what's the difference between the two? Well, the agents.md is now quickly becoming the de facto standard for where all agents go. kind of for their readme for the like always on rules and details about the project so i think it's critical that your project has an agent's md with a minimal amount of information that an agent needs to know about you know what are the conventions that we're using what are the commands that we're using to get it built or tested and like what are the requirements around testing or requirements that we need to be sure to check off before committing and then skills are kind of more of a specific workflow right so there's reusable kind of playbooks for agents. So if there's something that you're doing a lot, you're making motion graphics with your motion often, or you're, you know, doing some sort of like daily or weekly or monthly change log compiling, those kinds of things are great to put in as skills that an agent can then pick up when it needs it to do those specific kinds of workflows. And so typically those are on demand and you say, hey, let's use this skill for this task versus the agents is almost always loaded into the context for the agent so it knows what's going on. And then, of course, I work at KiloCode and so I've got some power user tips there. But I think some of these, many of these apply, you know, regardless of which agent you're using. But I think they're critical as you. kind of get comfortable with those first kinds of paradigms. How do I now customize this and make it work for me? And one is at mentioning for context. So mentioning files or commits or, you know, things from the terminal that output, those kinds of things and bringing them into the context quickly are really helpful. Using slash commands to do things like starting a new task when we need to or condensing the context when it's getting too full. Those kind of quick commands can help us move a lot faster. We also can, if we're working in VS Code with Kilo Code, we can select a section of code and right-click and say add to Kilo Code, and then that context is brought right in there, and I can then talk or ask questions about that code or ask the agent to change a certain part about that code. And then, of course, we have autocomplete built in as well, which I think is still useful, especially because we also have it not just in code, but as you're prompting. And then kind of beyond the IDE, I think we're seeing, you know, also this shift this year in, you know, where else do I want to be able to use this? In the CLI, from my mobile phone, in a cloud agent, directly in Slack, right? The ability to kind of use these agents wherever you are is something that's becoming more expected of everyone and everyone's agents. And I think that's a good thing. I think that means that we're starting to learn how. we can use this these agents again more like a collaborator that's everywhere that we need to be and then one other thing that i want to talk about um are is getting other context things in first of all model context protocol right context is right in the name um the idea of this is you know fundamentally these models originally can only like receive input tokens and create output tokens right uh and slowly but surely we've been enabling them to use tools where they can you know make tool calls out and affect things in the environment like running tests the mcp the concept of mcp basically expands this to say hey i want to give the agent other tools right for instance the github mcp gives the agent a lot of tools to interact with the github api look up pull requests look up comments look up issues and understand a lot more about your your github environment right um or context 7 helps it look for up-to-date framework documentation because of course as you know the llms kind of have a cutoff date where their knowledge cuts off and then anything that's improved since then they don't know about um so these mcp servers can be very helpful and there's there's thousands of them out there but the concern is that every one of them is going to add at least some information right details about those tools that it has to the system prompt that gets sent every time you're having an interaction with an agent. And so you want to make sure if you're not actually using that to disable it, right? Let's say I have a Postgres MCP that connects to my database and I'm doing a whole bunch of front-end work that doesn't involve the database at all. Well, that Postgres MCP is just going to be wasted tokens and maybe even worse, tokens that help kind of confuse the agent and not understand that it's not supposed to touch the database right now. So we want to be really careful to not like overuse mcps and then another thing we hear from um enterprises a lot is how do we work with internal platform apis and i think that you know there's kind of four different ways of doing that one if there's already an open ai open api spec for it or swagger spec use that if there's not then convert it to markdown so that you can save that markdown you know in the agents.md or somewhere else in the repository to reference it And if it's something that changes a little bit more frequently, maybe you do need to have like a reference URL that you can pull in and have the agent go pull every time to see the latest and greatest. And then we've seen some customers who, you know, have complex multi-step, multi-system workflows where building their own MCP server might be the right choice. But, you know, one way or another, I think the key is to when working alongside Kilo or any of these agents, you know. isolate your work from the agent's work and then review that agent's work as a pull request right that helps you understand you know how can i um best review the code just like i would review a junior engineer's code and so that's really the presentation that i have on kilo we've got some exciting new features coming up we've got you know expanded across all these surfaces uh we also have a big focus on OpenClaw and KeloClaw and making a very safe way to use OpenClaw agents. And so if you haven't taken a look at Kelo, just a little plug at the end here, visit Kelo.ai and we'd love to get your feedback on what we're building. And, you know, just kind of to give you, you know, where we go from here. Again, I think you've kind of got to pick a tool and get lots of reps, right? We said earlier on that, you know, it's part art and part science. And I think that just means you need a lot of reps, right, to kind of get the feel for what can I trust the models to do and what can I trust the models to do. And then try this research plan, implement feedback loop, see how that works for you. And I think maybe you'll end up like some of these other senior engineers who have said, hey, look, I'm having more fun programming now than I've had in years and years as we, you know, farm out some of this tedious work to AI agents and let our brains work on the harder engineering problems. Thanks.
⚙️ Pipeline jobs
| Stage | Status | Att. | Updated | Error |
|---|---|---|---|---|
| download | done | 1/3 | 2026-07-20 11:47:15 | |
| transcribe | done | 1/3 | 2026-07-20 11:47:34 | |
| summarize | done | 1/3 | 2026-07-20 11:48:04 | |
| embed | done | 1/3 | 2026-07-20 11:48:07 |
📄 Описание YouTube
Показать
Coding agents are quickly moving from novelty to necessity, but most teams are still stuck between demos that feel magical and systems that break down in real-world engineering environments. In this session, Brendan O’Leary explores what it takes to make coding agents reliable collaborators rather than unpredictable copilots. Drawing from hands-on experience building and scaling AI coding agents, Brendan can unpack where agents succeed, where they fail, and how engineers can design workflows that balance speed with control. Attendees will learn how to think about agent autonomy, context management, and human-in-the-loop design so AI can meaningfully accelerate development without sacrificing code quality, security, or trust. This talk is for engineers ready to move past “vibe coding” and into production-grade agent-driven software development. Brendan O'Leary - Developer Relations Engineer, Kilo Code As conversations shift from AI demos to real engineering and coding agents begin moving into production environments, Brendan is passionate about helping teams understand not just what’s possible, but what’s practical. He’s especially energized by audiences who are grappling with the same questions he sees every day: how much autonomy to give agents, how to keep humans meaningfully in the loop, and how to move beyond “vibe coding” into reliable software development. Brendan is a builder and practitioner at Kilo Code, working hands-on with AI coding agents and the realities of deploying them in serious engineering contexts. He’s mastered the role of choreographer, successfully balancing the collaborative dance between human creativity and machine capability. His perspective of coding agents is rooted in lived experience, combining a deep technical understanding with a clear-eyed view of where agents succeed, where they fail, and why trust is the missing layer most tools overlook. Brendan brings a candid, engineer-first approach that resonates with technical audiences and leaves them with concrete ways to rethink how humans and coding agents collaborate in production systems. Socials: https://www.linkedin.com/in/olearycrew/ https://boleary.dev/ https://x.com/olearycrew https://gitlab.com/brendan/boleary-dot-dev https://kilo.ai/