multiple agents are working simultaneously in single branch.
- do not reset code not written by you.
- try to structure codebase to allow parallel agents to work without conflicts
- create (multiple) atomic conventional commit after given task is achieved
follow https://docs.deno.com/runtime/contributing/style_guide, EXCEPT:
- double quotes, no semicolons
- use arrow function where possible
- FP where performance doesn't matter
- follow TDD
- NEVER write pointless tests
- like
assertEquals(addOne(1), 2)
- like