repoburg 1.3.20 → 1.3.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/backend/.env +2 -2
  2. package/backend/.repoburg/hooks/README.md +53 -0
  3. package/backend/.repoburg/hooks/eslint-hook.ts +46 -0
  4. package/backend/.repoburg/hooks/example-hook.ts +62 -0
  5. package/backend/dist/src/app.module.js +6 -0
  6. package/backend/dist/src/app.module.js.map +1 -1
  7. package/backend/dist/src/core-entities/index.d.ts +1 -0
  8. package/backend/dist/src/core-entities/index.js +1 -0
  9. package/backend/dist/src/core-entities/index.js.map +1 -1
  10. package/backend/dist/src/core-entities/tool-hook.entity.d.ts +7 -0
  11. package/backend/dist/src/core-entities/tool-hook.entity.js +37 -0
  12. package/backend/dist/src/core-entities/tool-hook.entity.js.map +1 -0
  13. package/backend/dist/src/interactive-chat/chat.module.js +2 -0
  14. package/backend/dist/src/interactive-chat/chat.module.js.map +1 -1
  15. package/backend/dist/src/interactive-chat/chat.service.d.ts +3 -1
  16. package/backend/dist/src/interactive-chat/chat.service.js +9 -2
  17. package/backend/dist/src/interactive-chat/chat.service.js.map +1 -1
  18. package/backend/dist/src/llm-orchestration/llm-orchestration.interfaces.d.ts +1 -1
  19. package/backend/dist/src/llm-orchestration/llm-orchestration.module.js +87 -50
  20. package/backend/dist/src/llm-orchestration/llm-orchestration.module.js.map +1 -1
  21. package/backend/dist/src/llm-orchestration/llm-turn-processor.service.d.ts +3 -1
  22. package/backend/dist/src/llm-orchestration/llm-turn-processor.service.js +70 -2
  23. package/backend/dist/src/llm-orchestration/llm-turn-processor.service.js.map +1 -1
  24. package/backend/dist/src/message-bus/dto/submit-message.dto.d.ts +4 -0
  25. package/backend/dist/src/message-bus/dto/submit-message.dto.js +22 -0
  26. package/backend/dist/src/message-bus/dto/submit-message.dto.js.map +1 -0
  27. package/backend/dist/src/message-bus/message-bus.controller.d.ts +13 -0
  28. package/backend/dist/src/message-bus/message-bus.controller.js +50 -0
  29. package/backend/dist/src/message-bus/message-bus.controller.js.map +1 -0
  30. package/backend/dist/src/message-bus/message-bus.module.d.ts +2 -0
  31. package/backend/dist/src/message-bus/message-bus.module.js +23 -0
  32. package/backend/dist/src/message-bus/message-bus.module.js.map +1 -0
  33. package/backend/dist/src/message-bus/message-bus.service.d.ts +7 -0
  34. package/backend/dist/src/message-bus/message-bus.service.js +32 -0
  35. package/backend/dist/src/message-bus/message-bus.service.js.map +1 -0
  36. package/backend/dist/src/seeding/data/system-prompts/default_master-agent.d.ts +1 -1
  37. package/backend/dist/src/seeding/data/system-prompts/default_master-agent.js +2 -2
  38. package/backend/dist/src/seeding/data/tool-hooks/eslint-hook.d.ts +2 -0
  39. package/backend/dist/src/seeding/data/tool-hooks/eslint-hook.js +52 -0
  40. package/backend/dist/src/seeding/data/tool-hooks/eslint-hook.js.map +1 -0
  41. package/backend/dist/src/seeding/data/tool-hooks/example-hook.d.ts +2 -0
  42. package/backend/dist/src/seeding/data/tool-hooks/example-hook.js +68 -0
  43. package/backend/dist/src/seeding/data/tool-hooks/example-hook.js.map +1 -0
  44. package/backend/dist/src/seeding/data/tool-hooks/readme.d.ts +2 -0
  45. package/backend/dist/src/seeding/data/tool-hooks/readme.js +59 -0
  46. package/backend/dist/src/seeding/data/tool-hooks/readme.js.map +1 -0
  47. package/backend/dist/src/sessions/sessions.module.js +2 -0
  48. package/backend/dist/src/sessions/sessions.module.js.map +1 -1
  49. package/backend/dist/src/sessions/sessions.service.d.ts +3 -1
  50. package/backend/dist/src/sessions/sessions.service.js +6 -2
  51. package/backend/dist/src/sessions/sessions.service.js.map +1 -1
  52. package/backend/dist/src/tool-hooks/dto/create-tool-hook.dto.d.ts +6 -0
  53. package/backend/dist/src/tool-hooks/dto/create-tool-hook.dto.js +36 -0
  54. package/backend/dist/src/tool-hooks/dto/create-tool-hook.dto.js.map +1 -0
  55. package/backend/dist/src/tool-hooks/dto/update-tool-hook.dto.d.ts +6 -0
  56. package/backend/dist/src/tool-hooks/dto/update-tool-hook.dto.js +38 -0
  57. package/backend/dist/src/tool-hooks/dto/update-tool-hook.dto.js.map +1 -0
  58. package/backend/dist/src/tool-hooks/tool-hooks.controller.d.ts +27 -0
  59. package/backend/dist/src/tool-hooks/tool-hooks.controller.js +123 -0
  60. package/backend/dist/src/tool-hooks/tool-hooks.controller.js.map +1 -0
  61. package/backend/dist/src/tool-hooks/tool-hooks.module.d.ts +2 -0
  62. package/backend/dist/src/tool-hooks/tool-hooks.module.js +27 -0
  63. package/backend/dist/src/tool-hooks/tool-hooks.module.js.map +1 -0
  64. package/backend/dist/src/tool-hooks/tool-hooks.service.d.ts +31 -0
  65. package/backend/dist/src/tool-hooks/tool-hooks.service.js +337 -0
  66. package/backend/dist/src/tool-hooks/tool-hooks.service.js.map +1 -0
  67. package/backend/dist/tsconfig.build.tsbuildinfo +1 -1
  68. package/package.json +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repoburg",
3
- "version": "1.3.20",
3
+ "version": "1.3.22",
4
4
  "description": "A local AI-powered software developer assistant that runs on your own machine.",
5
5
  "author": "Celal Ertug",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -38,7 +38,7 @@
38
38
  "dependencies": {
39
39
  "@anthropic-ai/sdk": "^0.36.3",
40
40
  "@google/genai": "1.16.0",
41
- "@modelcontextprotocol/sdk": "^1.5.0",
41
+ "@modelcontextprotocol/sdk": "1.23.1",
42
42
  "@nestjs/common": "^10.0.0",
43
43
  "@nestjs/core": "^10.0.0",
44
44
  "@nestjs/platform-express": "^10.0.0",
@@ -64,7 +64,7 @@
64
64
  "eta": "^3.5.0",
65
65
  "express": "^4.19.2",
66
66
  "fs-extra": "^11.2.0",
67
- "glob": "^10.3.10",
67
+ "glob": "^11.1.0",
68
68
  "google-auth-library": "^9.11.0",
69
69
  "gpt-tokenizer": "^3.0.1",
70
70
  "http-proxy-middleware": "^3.0.0",