▲ | DevDesmond 8 hours ago | |
I like to keep a personal recipe book of prompt modifiers. For bash scripting I often write my prompt and then copy-paste the following to prompt: ``` When making edits to the script, ensure the script remains - Idempotent - Functional after a fresh install of a virtual machine Additionally, keep things stupid simple and avoid: - Unnecessary error checks - Defining colors and custom logging functions - Bells and wistles - Backups - Branching Paths - Script Arguments ``` I find it helps cull back the LLM 's overenthusiasm for abstractions. |