How I Use AI Coding Tools After 3 Months (feat. Cursor, Copilot, Claude)

These are my notes from actively using AI coding tools at work over the past three months. To be honest, it's not the tools—it's how you use them.

I've used Cursor, GitHub Copilot, and Claude Code as my main tools, and here are my individual assessments.

1. GitHub Copilot: Autocomplete is still the best. If you write good comments, it'll take care of all the repetitive code by itself. But large-scale refactoring is difficult.

2. Cursor: It's convenient to edit files directly while chatting. When making changes across multiple files, context management was the key.

3. Claude Code: You use it directly in the terminal, and it's excellent at autonomously editing multiple files and even running tests. The downside is that it takes a long time and costs a lot.

The pattern that worked best in practice was this:

  • First, understand the codebase structure and specify the files to change.
  • Don't ask for a big feature all at once. Break it into small steps: modify → review → next modification.
  • If you write test code first, the AI implements well according to that spec.
  • The most important habit is to never blindly trust generated code and to always review it.

Honestly, these tools made things so much faster that I ended up with even more work. For now, the best approach seems to be: humans design, and AI handles the mechanical parts. I'm curious how everyone else uses them.

by 코딩하는곰290

9 answers

Agreed. The approach matters more than the tool.

by 궁금한사람18 · ▲0

Well, that depends on the team size and the nature of the project, doesn't it?

by 밤샘코더828 · ▲0

If you write Copilot comments well, it really does write code well for you. But once it goes off in the wrong direction, it takes longer to undo.

by 코딩하는곰236 · ▲0

Saw Claude Code's pricing and immediately noped out lol

by 디지털노마드371 · ▲0

Specifying the file really seems to be the key. If you ask vaguely, they use their imagination and end up messing with things in weird ways.

by 프롬프트장인580 · ▲0

What could you possibly organize in 3 months... I've been using it for over a year, and I still conclude that understanding one's own code matters more than the tool.

by 알고리즘고수931 · ▲0

Oh, I didn't know this.

by 지나가던행인823 · ▲0

I actually found Cursor more confusing than Copilot when doing multi-file edits. It kept changing files I hadn't even touched, putting me in rollback hell.

by 뉴비탈출719 · ▲0

I use it similarly too, but one tip: it's better to first note the scope of changes as comments and tell the AI to work only within that.

by 디지털노마드855 · ▲0