Thank you all for sharing your experience. Cursor was a real game changer for me. Microsoft had unfortunately restricted its use with .Net. I also use Claude Code a lot now and its terminal based and works more as an independent assistant. My process often looks like:
I'll often give it a few documents of context before giving it a task like
MyBrLanguageDefinition.md
SystemOverview.md
CurrentProjectGuidlines.md
then ask it to make a plan to complete a task like adding a feature.
We have a short conversation to refine the plan.
Then I give it permission to complete the plan.
It goes to work for a few minutes

. I review it's work and and suggest changes or ask for explanation.
Continue this process until I'm satisfied with the results.
So for example I tried the example prompt:
> @notes\BR_Language_Grammar_Complete.md Please create a BR function to convert Celsius to Fahrenheit
Code: Select all
00100 ! Function: ConvertTemp
00110 ! Purpose: Convert Celsius to Fahrenheit
00120 ! Author: Claude
00130 ! Date: 2025-07-27
00140 !
00200 DEF FNFAHRENHEIT(CELSIUS)
00210 ! Formula: F = (C * 9/5) + 32
00220 LET FNFAHRENHEIT = (CELSIUS * 9 / 5) + 32
00230 FNEND
00240 !
00300 ! Example usage:
00310 ! LET TEMP_C = 25
00320 ! LET TEMP_F = FNFAHRENHEIT(TEMP_C)
00330 ! PRINT "Temperature: "; TEMP_C; "C = "; TEMP_F; "F"