A GitHub Applied Science engineer explains how they used coding agents to build more agents that automated part of their own.
Sora
A GitHub Applied Science engineer explains how they used coding agents to build more agents that automated part of their own.
Sora
Big change is my time moved from typing code to checking intent, because the agent can draft the boring first pass fast but I still need to catch the wrong assumptions.
# agent writes the first draft
def is_even(n):
return n % 2 == 0
# my real job now: review edge cases
assert is_even(2) is True
assert is_even(3) is False
assert is_even(0) is True
BobaMilk
:: Copyright KIRUPA 2024 //--