Skip to main content
hhow09's Blog

AI productivity boost is real

Since Skills came out, I can really feel the power of the agentic workflow. My workflow is still heavily human-in-the-loop, but certain parts can be highly automated.

Workflow breakdown #

Legend #

flowchart
    HITL[Human-in-the-loop]
    style HITL fill:#CCFF00
    HA[Highly Automated]
    style HA fill:#5CE65C
    Doc[text file]@{ shape: doc}  
    Skill[[Skill]]

Requirements #

flowchart
    Ticket@{ shape: doc} --> Specification@{ shape: doc}
    style Specification fill:#CCFF00
    Clarification@{ shape: diamond}
    Specification --ask for--> Clarification
    Clarification --improve--> Specification
    Clarification <----> cd[[Code Trace]]
    style cd fill:#CCFF00
    Clarification <----> dl[[Doc Lookup]]
    style dl fill:#CCFF00
    Clarification <----> PM_discussion

Good requirements start with asking the right questions. I use AI to clarify implicit requirements understand how existing code actually behaves, which often reveals constraints no spec document mentions.

Keep the spec files reuse it for decision-making reference, QA instructions, tech sharing, and work logs.

Useful references / skills

Implementation #

flowchart
    Specification@{ shape: doc} --> Implementation_Plan@{ shape: doc}
    style Implementation_Plan fill:#CCFF00
    Specification --> Technical_Design@{ shape: doc}
    Technical_Design <--> dd[Design Decision]
    Technical_Design <--> ca[[Complexity Analysis]]
    style ca fill:#CCFF00
    Implementation_Plan <--> ros[[Re-order steps]]
    style ros fill:#5CE65C
    Implementation_Plan --execute--> Code_Change@{ shape: doc}
    Code_Change --> cm[[Commit Message]]
    style Code_Change fill:#CCFF00
    style cm fill:#5CE65C
    Code_Change --> ut[[Unit Tests]]
    style ut fill:#CCFF00
    cm --> ps[[PR Submission]]
    style ps fill:#5CE65C

Writing code #

Code Review #

flowchart
    PR --> acr[[AI Code Review]]
    style acr fill:#5CE65C
    acr --> pcr[Peer Code Review]

Further Usages #

flowchart
    Specification@{ shape: doc} --> QA_Instructions@{ shape: doc}
    style QA_Instructions fill:#CCFF00
    Specification@{ shape: doc} --> Internal_Documentation@{ shape: doc}
    style Internal_Documentation fill:#CCFF00
    

reuse the spec and implementation plan to generate QA instructions. The same artifact that guided development doubles as a testing guide for QA.


Why are there still so many human-involved steps? #

Thoughts: The Bottleneck Shifted #

The bottleneck of delivery has shifted from coding to review and other processes — testing, external dependencies, release pipelines — as noted in several posts (1, 2). New challenges have already emerged: high volumes of low-quality PRs from less experienced engineers, and human QA becoming a release bottleneck.

Ref #