guest@portfolio:~$ tail -f brainwaves.log

Brainwaves

Long-form notes on agentic quality.

Agentifying the SDLCRAG for QA: PRDs → Test ScriptsScaling AI Testing Across 25+ Engineers
agent_loop.py
# self-healing test agent
graph = StateGraph(TestState)
graph.add_node("generate", rag_generate)
graph.add_node("validate", execute_and_heal)
graph.add_edge("generate", "validate")
agent = graph.compile()