Coding with AI: How to Get the Results You Actually Want

You can’t talk about software right now without talking about AI or, more accurately, LLMs. These are helping us write software faster. But can they help us be much faster?

The common way they help us is by autocompleting code for us. I start writing a method called upsertUser, and then the AI will automatically fill in the code. Or at least that is how most people try and use it.

Using things such as the cursor editor, or if you are using VS Code with GitHub Copilot you can use the new GitHub Copilot Edits feature. With this feature, you can tell the AI what you want to create. It will attempt to create what you want. Then, you will have the option to accept what it came up with or reject it. So instead of auto-complete, you get more than just a single line of text. You can get entire methods or, with GitHub Copilot Edits, you can get changes to multiple files.

A screenshot of a code editor interface showing a "Working Set" with two files: "user-access.service.ts" (open) and "README.md". Below the file list, there is an option to "Add Files..." and a file named "jwt.guard.ts" with a close button next to it. At the bottom, a prompt box contains the text "Generate me a method to upsert a user."

If you use these prompts to generate code, you will often get a result that aligns with what you wanted. But LLMs are often off. They will often generate not quite what we want.

The best solution for that is giving the AI/LLMs more rules. We can do this by putting these rules in the prompts themselves. But this can become tedious. Instead, we can put the rules in our solutions. I have an example of one of these in a Readme file.

AI Code Generation Guidelines

When generating a new Access Service, use the following guidelines.

  1. Create the entity in the access/entities folder.
  2. Create the service in the access/services folder.
  3. Create the DTO in the common/dto folder.
  4. Update access.module.ts to include the entity and service.
  5. Update database.config.ts to include the entity.
  6. Create the tests for the service in the access/services/ folder.
  7. Tests should live right next to the service file.

We can now generate code with these rules, and the AI will more likely generate what we want.

author avatar
Chad Michel Senior Software Architect
Chad is a lifelong Nebraskan. He grew up in rural Nebraska and now lives in Lincoln. Chad and his wife have a son and daughter.

Related posts