Commit and Track
After completing any task:
- npm run format:check — fix with npm run format if fails
- npm run build:renderer — must pass 0 errors
- npm run lint
- List the files you changed during the task, then stage them by name:
git add <file1> <file2> ...Never usegit add -A/git add .— they sweep in untracked secrets, lock files, or unrelated work. - git commit -m "[type]: [description]" Types: feat, fix, chore, docs, style, refactor
- Push to the CURRENT feature branch — never master (it's branch-protected):
git push origin HEADThis pushes the checked-out branch by name. NEVERgit push origin master. - Report: files changed, errors fixed, status
Source: antropos17/Aegis — distributed by TomeVault.