Update mcp tool universe

This commit is contained in:
shahondin1624
2026-02-14 11:09:37 +01:00
parent 3da5013cbc
commit 3030088124
26 changed files with 1268 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
---
apply: always
---
What to adhere to:
- Classes should only have on responsibility, split large ones up into separate components
- Try to declare as much as immutable as possible
- Avoid explanatory comments; the code itself should be explanatory enough, by structure and names
- Avoid coupling, use interfaces to keep the structure exchangeable
- Keep the code modular
- Refactor often to keep the code as clean as possible
- Develop test-driven - define a public "api," usually interfaces and write tests for that api, then develop the code providing the functionality