Close Menu
SkytikSkytik

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    At Least 32 People Dead After a Mine Bridge Collapsed Due to Overcrowding

    November 17, 2025

    Here’s how I turned a Raspberry Pi into an in-car media server

    November 17, 2025

    Beloved SF cat’s death fuels Waymo criticism

    November 17, 2025
    Facebook X (Twitter) Instagram
    • About Us
    • Contact Us
    SkytikSkytik
    • Home
    • AI Tools
    • Online Tools
    • Tech News
    • Guides
    • Reviews
    • SEO & Marketing
    • Social Media Tools
    SkytikSkytik
    Home»AI Tools»4 Techniques to Optimize AI Coding Efficiency
    AI Tools

    4 Techniques to Optimize AI Coding Efficiency

    AwaisBy AwaisDecember 25, 2025No Comments8 Mins Read0 Views
    Facebook Twitter Pinterest LinkedIn Telegram Tumblr Email
    4 Techniques to Optimize AI Coding Efficiency
    Share
    Facebook Twitter LinkedIn Pinterest Email

    In a previous article, I of the most important techniques I utilize to code effectively with AI agents. In this article, I’m continuing with four additional techniques, all of which I use on a daily basis.

    I believe that in order to be an efficient programmer today, you have to heavily utilize AI tools. If you’re not coding using AI agents, you’re falling behind. Furthermore, agents can be used for so much more than coding as well:

    • Agents can read and create Linear issues
    • Agents can perform deep research on a topic you’re interested in
    • Agents can review log messages from production code

    All of which are important tasks, programmers have to perform on a regular basis.

    Effective AI Engineering Infographic
    This infographic highlights the main highlights of this article. I’ll cover four techniques I use daily when programming. I’ll discuss how to be faster with prompting using Macwhisper for transcription. Then I’ll discuss how I run Claude Code blind PR reviews and run parallel agents for maximum efficiency. Lastly, I’ll highlight how I interact with GitHub through Cursor, instead of writing commands myself or interacting with the GitHub UI. Image by Gemini.

    Thus, I’m advocating for heavy use of AI agents to be as efficient as possible. In this article, I’ll cover, on a high level, four more techniques I utilize that I believe make me a more efficient programmer.

    1. Macwhisper for faster agent prompting
    2. Claude Code review
    3. Parallel agents
    4. Interacting with GitHub using agents

    I’m also very interested in hearing if you have any techniques that are important in your programming workflows. If you have specific techniques in mind, feel free to reach out, as I’d love to hear about it.

    Why you should code with AI agents

    I’ve previously described how coding with AI agents make me a lot more effective as a programmer. I’ve multiplied my programming output many times through the use of AI, and it simply allows me to do much more than I did previously.

    A typical counterargument to AI agents is that you need to understand your code before pushing it to production. I agree with this assessment to some extent if you’re working with critical systems that are hard to perform end-to-end tests on.

    However, most websites and applications are not like this. First of all, they’re not as critical, and secondly, most tasks you work on as a programmer are verifiable. This means you can often test behaviour simply by literally testing if the feature works when you interact with it.

    Thus, I’m advocating for more use of AI agents and for using them for all programming-related tasks. For example:

    • Create Linear issues
    • Fix bugs by simply linking to the Linear issue
    • Planning and developing new features

    4 Techniques for coding efficiency

    In this section, I’ll cover four techniques that I use for my AI-native programming workflows. These are specific techniques that I literally use every day I program.

    Macwhisper

    MacWhisper is a great transcription tool available on Mac. Simply put, Macwhisper allows you to press a button, talk to your computer, and the text is automatically transcribed and pasted wherever your mouse cursor is.

    This is helpful because a lot of my programming workflows have moved from pure code to natural language. Using a transcription tool for coding would naturally be hard because coding requires a lot of special characters like colons, parentheses, and tabs, which are faster to type on a keyboard.

    With AI agents, more and more work is done in natural langauge, instead of coding language.

    Thus, whenever I prompt my Cursor agent, I usually just hold down the button and say out loud whatever I want to prompt my agent. I might, for example, ask:

    Check the logs for this document id, was it processed correctly 

    In this example, I paste in the document id after saying the sentence out loud.


    The reason I use Macwhisper is simply that I talk faster than I can type. The average talking speed is around 150 words per minute, while most people can’t type 100 words per minute at maximum speed. Furthermore, you’re rarely able to type at max speed when you have to think as well.

    Claude Code review

    This step is split into two parts:

    1. After implementing a feature, I ask Cursor if the code is production-ready, and only push when Cursor is satisfied
    2. Whenever I make a PR, I have Claude Code to a code review as well, with no other context than the PR description, and the Git diff file to the branch I’m merging to.

    This works very well. Asking Cursor if the code is production-ready makes Cursor do a review of my changes and fix any small issues that might not work as intended.

    Furthermore, having a completely separate LLM review the code with no context of how the implementation was done is super helpful. This often discovers other errors that I (or Cursor) didn’t think about when implementing the code in the PR. This also significantly lowers the amount of bugs experienced in production, and is a relatively cheap addition you can make to your CICD pipeline.

    Parallel agents (fire and forget)

    Another important technique is to use parallel agents. Whenever I’m blocked by an agent doing some work, I always start a new agent. This could be a coding agent implementing another feature, or it could be Gemini deep research, researching a topic I’m interested in. The point is that I never simply wait on my agent without doing anything else.

    When running parallel agents, you might start struggling with context switching. Switching contexts often is very taxing for your brain, and is definitely something you want to minimize.

    Thus, I always make sure that I work on a task until I’m fully blocked. I try to minimize the number of times I switch context, and only start a parallel task once I’m sure I have to wait some time for my coding agent to finish its implementation.

    Another important point here is that you give your coding agents enough permissions to run for an extended period of time. If you’re interrupted all the time with the cursor asking for permissions, the parallel workflow doesn’t work well.

    You have to give your coding agents enough permissions. If you’re always interrupted with a permission request, it’s hard to work effectively.

    Commit and PR with agents

    Lastly, I want to highlight how I always interact with GitHub using my coding agents, instead of writing the commands myself. The reason I do this is that it’s simply faster, and I can do something else while my agent runs precommit hooks, commits, pushes, and makes pull requests.

    Writing commit messages, pull request titles, and descriptions takes a surprising amount of time. Especially when you’re performing quick actions, such as adding translations or moving a button in the UI. Therefore, I always utilize Claude to write my commit messages, PR titles, and descriptions.

    Not only does this save me time, but I also think Claude does a better job at writing these messages for me. With pull requests, for example, it’s often hard for a human to remember all of the changes made and to summarize them in a nice manner. It’s much easier for Claude to look at the Git diff and provide a summary of all the changes made.

    Thus, I’ve given Cursor permission to interact with GitHub for me. Instead of performing all of the GitHub actions myself, such as:

    • Pulling
    • Rebasing
    • Commiting
    • Amending
    • Pushing
    • Creating PR’s

    I simply prompt Cursor to do it for me. Thus, I can just fire and forget. My workflow after implementing a new feature is simply to provide the following prompt to Cursor:

    Run all precommit checks (black, mypy, pytest), commit and push. 
    Then create a PR on this branch  and give me 
    the link to the PR

    This is so much faster than writing the GitHub commands yourself. Not having to write pull requests myself is probably the most important bit, as this was super time-consuming previously when I made my pull requests in the GitHub UI. Now I simply click the link my agent provides me, and the PR is ready. Then I check out the Claude Code review provided to me, and fix any potential issues.

    Conclusion

    In this article, I’ve discussed four specific techniques I use every single day when I’m coding. I discussed Macwhisper for transcription, Claude Code reviews, parallel agents, and interacting with GitHub using my agent. Together, I estimate that these techniques save me at least 1 hour each day, which is a significant amount of time. Freeing up this time allows me to complete so many more tasks over the course of a project. I believe that being effective with AI agents is a super important skill, and definitely a topic you should spend time becoming good at.

    👉 My Free Resources

    🚀 10x Your Engineering with LLMs (Free 3-Day Email Course)

    📚 Get my free Vision Language Models ebook

    💻 My webinar on Vision Language Models

    👉 Find me on socials:

    📩 Subscribe to my newsletter

    🧑‍💻 Get in touch

    🔗 LinkedIn

    🐦 X / Twitter

    ✍️ Medium

    Coding Efficiency optimize Techniques
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Awais
    • Website

    Related Posts

    [2603.19461] Hyperagents

    March 23, 2026

    [2603.04803] Guiding Diffusion-based Reconstruction with Contrastive Signals for Balanced Visual Representation

    March 23, 2026

    Building a Navier-Stokes Solver in Python from Scratch: Simulating Airflow

    March 22, 2026

    Prompt Caching with the OpenAI API: A Full Hands-On Python tutorial

    March 22, 2026

    Escaping the SQL Jungle | Towards Data Science

    March 21, 2026

    A Gentle Introduction to Nonlinear Constrained Optimization with Piecewise Linear Approximations

    March 21, 2026
    Leave A Reply Cancel Reply

    Top Posts

    At Least 32 People Dead After a Mine Bridge Collapsed Due to Overcrowding

    November 17, 20250 Views

    Here’s how I turned a Raspberry Pi into an in-car media server

    November 17, 20250 Views

    Beloved SF cat’s death fuels Waymo criticism

    November 17, 20250 Views
    Don't Miss

    Why Technical Expertise Alone Won’t Cut It Anymore

    March 23, 2026

    The SEO industry has spent the last couple of decades perfecting the art of looking…

    Answer engine optimization case studies that prove the ROI of AEO in 2026

    March 23, 2026

    Green Eggs and Ham Frittata Recipe

    March 23, 2026

    Asparagus and Marinated Artichoke Galette Recipe

    March 23, 2026
    Stay In Touch
    • Facebook
    • YouTube
    • TikTok
    • WhatsApp
    • Twitter
    • Instagram
    Latest Reviews

    Google Tested AI Headlines In Discover. Now It’s Testing Them In Search

    March 23, 2026

    47 Easter Dinner Ideas: Mains, Sides, and Salads for Your Holiday Feast

    March 22, 2026
    Most Popular

    13 Trending Songs on TikTok in Nov 2025 (+ How to Use Them)

    November 18, 20257 Views

    How to watch the 2026 GRAMMY Awards online from anywhere

    February 1, 20263 Views

    Corporate Reputation Management Strategies | Sprout Social

    November 19, 20252 Views
    Our Picks

    At Least 32 People Dead After a Mine Bridge Collapsed Due to Overcrowding

    November 17, 2025

    Here’s how I turned a Raspberry Pi into an in-car media server

    November 17, 2025

    Beloved SF cat’s death fuels Waymo criticism

    November 17, 2025

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    Facebook X (Twitter) Instagram Pinterest YouTube Dribbble
    • About Us
    • Contact Us
    • Privacy Policy
    • Terms & Conditions
    • Disclaimer

    © 2025 skytik.cc. All rights reserved.

    Type above and press Enter to search. Press Esc to cancel.