It does. I used to be an ahk "script kiddie" and know it front and back. It's sort of burnt into my brains. As a result, I can prompt really really well, notice issues at a glance, and I have a sheer volume of scripts locally for all sorts of tasks some from as far back as 2014. From tiling window managers to OCR all the way to simple hotkeys/hotstrings. I let it grep in that folder and build out whatever I want using those primitives. This gives actually 1-shot immediately usable 100% working scripts even with GPT3.5 level models, as opposed to the iterations needed for typical development.

Example: adding copyright text box to bottom of every slide

  F3::
    pres := ComObjActive("PowerPoint.Application").ActivePresentation
    Loop % pres.Slides.Count {
      slide := pres.Slides.Item(A_Index)
      box := slide.Shapes.AddTextbox(1, 100, 500, 500, 30)
    box.TextFrame.TextRange.Text := "Copyright 2026. All Rights Reserved."
    }

  return