30 lines
2.3 KiB
Markdown
30 lines
2.3 KiB
Markdown
# Platform and documentation
|
|
|
|
If this is a linux environment, read `AGENTS.linux.md`.
|
|
If this is a windows environment, read `AGENTS.windows.md`.
|
|
Also see the other related technical documentation in the docs folder.
|
|
|
|
## Rules
|
|
|
|
- Prefer extracting code to a shared helper to be reused instead of duplicating code. Always keep high maintainability standards.
|
|
- If a class is to be used only once, consider nesting it inside of another class. Otherwise place each newly created class into its own file. The file name must match the class name.
|
|
- When asked to begin working on a task, create a detailed implementation plan first, present the plan to the user, and ask for approval before beginning with the actual implementation.
|
|
- Don't make assumptions in the plan. If necessary, ask all clarifying questions before presenting the final plan.
|
|
- When an task is finished, perform a code review to evaluate if the change is clean and maintainable with high software engineering standards. Iterate on the code and repeat the review process until satisfied.
|
|
- If there's documnentation present, always keep it updated.
|
|
- After every iteration, evaluate if the test coverage would fall below 100%, and write tests if necessary.
|
|
|
|
### Git
|
|
|
|
- Never change the .gitignore file without consent.
|
|
- Keep changes small with minimal churn and commit often. If one iteration encompasses many smaller tasks with more than one commit, create a git branch and do the commits there. Let me review the branch before merging it back to master.
|
|
- When multiple commits are necessary, pause after every commit and ask the user to give a command to proceed.
|
|
- After every iteration, do a git commit with a brief summary of the changes as a commit message.
|
|
- If you find unexpected changes in the code (deletions, changes, diff results that were not communicated), never revert them and never restore the old state. Assume that those changes happened with intent.
|
|
- Never use `git restore`, `git checkout --`, reset commands, or equivalent rollback actions to discard local changes unless the user explicitly asks for that exact rollback.
|
|
|
|
### Dotnet CLI
|
|
|
|
- If you need a separate output directory, use a subfolder under `artifacts`, and clean it up afterwards.
|
|
- Avoid running `dotnet build` and `dotnet test` in parallel in this repo; that can cause file-lock failures in `obj\Debug\net10.0`.
|