Misc changes

Update gitignore + adding some agent skills and tweaking workflows.
Also updated some scipts
This commit is contained in:
2026-01-20 22:14:54 -05:00
parent f11f02d0c7
commit d2b91c46d4
7 changed files with 18 additions and 12 deletions

View File

@@ -10,4 +10,5 @@ Types are CamelCase
Functions are CamelCase.
Add Assert to make sure all assumptions are good. Parameters of functions for example should be verified with Assert.
Code should be self commented using proper variable names, types and functions. No need to add comments most of the time, unless the algorithm is very complex and hard to read.
When creating a new system framework, make a unit test. To make the unit test we should not modify the framework code for special unit test case.
When creating a new system framework, make a unit test. To make the unit test we should not modify the framework code for special unit test case.
Always put braces for if,else,for,while etc.