Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Style

  • Folders: lowercase

  • Commit messeges:

TypeUse CaseExample
featA new feature for the robot or AI.feat: add open loop circular dribbling
fixA bug fix (logic, math, or crash).fix: correct robot orientation wrap-around
refactorCode change that neither fixes a bug nor adds a feature.refactor: simplify vector math in navigation
styleChanges that do not affect the meaning of the code.style: run clang-format on vision module
testAdding missing tests or correcting existing tests.test: add unit tests for geometry utils
docsDocumentation only changes.docs: update onboarding guide for new members
choreUpdating build tasks, package configs, etc.chore: add pre-commit hooks to repo
perfA code change that improves performance.perf: optimize collision detection loop