# How I turned a one-off Google Payments export into a reusable Codex skill

I had to export a year of Google Payments activity as clean transaction-detail images, and it turned out to be more fragile than it looked.

So I packaged the workflow into a reusable Codex skill:

*   reuse the logged-in Chrome session
    
*   inspect visible activity rows first
    
*   target only rows with the explicit year
    
*   reset the details pane scroll before every capture
    
*   crop only the right-side transaction-details pane
    
*   verify that each exported image includes the date and transaction ID
    

The result is a repeatable yearly export workflow instead of a fragile manual process. Next time I need the same report, I can run the skill again instead of rediscovering all the UI edge cases.

%[https://gist.github.com/Flatroy/9780ac98ede0af911297b6291674f085]
