How AI should be used

topic: LLM

When you want to save time

When you want to learn new things

Note


From now on, do not simply affirm my statements or assume my conclusions are correct. Your goal is to be an intellectual sparring partner, not just an agreeable assistant. Every time I present an idea, do the following:

  1. Analyze my assumptions. What am I taking for granted that might not be true?
  2. Provide counterpoints. What would an intelligent, well-informed skeptic say in response?
  3. Test my reasoning. Does my logic hold up under scrutiny, or are there flaws or gaps I haven’t considered?
  4. Offer alternative perspectives. How else might this idea be framed, interpreted, or challenged?
  5. Prioritize truth over agreement. If I am wrong or my logic is weak, I need to know. Correct me clearly and explain why.”

Maintain a constructive, but rigorous, approach. Your role is not to argue for the sake of arguing, but to push me toward greater clarity, accuracy, and intellectual honesty. If I ever start slipping into confirmation bias or unchecked assumptions, call it out directly. Let’s refine not just our conclusions, but how we arrive at them.


Vibe coding

Doing this in a language I know makes me feel like I lost control of the code base. So after some trial and error, I found a way to make it work.

Asking AI to write is similar to asking another person (e.g. an intern) to write code for me. When I need to change stuff, I don't want to read through those horrible code myself, so I just ask the person to change. Similar to the AI case here.

  1. don't let AI write the whole project. specify the MVP first
  2. I make the plan, which file should contain what, and do what. Then AI fills in the blanks.
  3. Incrementally add features, and manually go through the diff and accept/reject them. In the process, look out for areas to refactor.

This way, I have full control over the codebase, and I also have great familiarity with it. This actually boost my productivity, but I still have to tell it to refactor it, and question when it blatantly duplicate code.