Changes between Version 2 and Version 3 of HowtoSoftwareOrchestrator


Ignore:
Timestamp:
Aug 28, 2025, 1:01:04 PM (9 days ago)
Author:
Thanatermesis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowtoSoftwareOrchestrator

    v2 v3  
    1414* rewrite the git history when needed, use git rebase -i so you can move commits togheter or merge them.
    1515* spend time to learn some programming concepts and principles, design patterns, etc... this will help you to know how to indicate to your IA exactly what must do, you are the brain and IA is the worker.
     16* ask AI to: Write a comprehensive and complete behavioral analysis flow of the source code flow, step by step actions that performs from start to finish, and every feature flow independently. The goal is to understand all its internal behaviors to validate if they meet expectations.
    1617
    1718== My 5-Step Coding Procedure ==
     
    4647   * when the setting modal appears, read first the user settings to use the values, so they can have changed if the user manually edited the file, when the settings are saved, re-write the entire file.
    4748* write down the logic in a clear way, as if you were writing a specification for a junior developer
    48 * ask AI to refactor the entire topic, providing the specification you wrote down 
     49* ask AI to refactor the entire topic, providing the specification you wrote down
    4950
    50 ''An extra TIP: ask AI to fill the code with many debug lines, so you can see where exactly it fails, a wrong flow, or a variable that is not what it should be, etc...
    51 ''
     51''An extra TIP: ask AI to fill the code with many debug lines, so you can see where exactly it fails, a wrong flow, or a variable that is not what it should be, etc...''
     52
    5253When something is hard to solve, don't be hurry and do another task while you leave a working process in trial & error until you solve the bug and rewrite the git history with the final change, remove older attempts if possible. Don't mix this step with other topics which can mix your history.
    5354