repoburg 1.3.69 → 1.3.71

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 (98) hide show
  1. package/backend/.env +2 -2
  2. package/backend/.eslintrc.js +5 -0
  3. package/backend/dist/src/application-state/application-state.controller.d.ts +5 -0
  4. package/backend/dist/src/application-state/application-state.controller.js +22 -0
  5. package/backend/dist/src/application-state/application-state.controller.js.map +1 -1
  6. package/backend/dist/src/application-state/application-state.service.d.ts +2 -0
  7. package/backend/dist/src/application-state/application-state.service.js +11 -0
  8. package/backend/dist/src/application-state/application-state.service.js.map +1 -1
  9. package/backend/dist/src/application-state/dto/set-history-compression-enabled.dto.d.ts +3 -0
  10. package/backend/dist/src/application-state/dto/set-history-compression-enabled.dto.js +21 -0
  11. package/backend/dist/src/application-state/dto/set-history-compression-enabled.dto.js.map +1 -0
  12. package/backend/dist/src/core-entities/ai-action.entity.d.ts +1 -0
  13. package/backend/dist/src/core-entities/ai-action.entity.js +4 -0
  14. package/backend/dist/src/core-entities/ai-action.entity.js.map +1 -1
  15. package/backend/dist/src/interactive-chat/chat.module.js +2 -1
  16. package/backend/dist/src/interactive-chat/chat.module.js.map +1 -1
  17. package/backend/dist/src/interactive-chat/chat.service.d.ts +5 -1
  18. package/backend/dist/src/interactive-chat/chat.service.js +42 -4
  19. package/backend/dist/src/interactive-chat/chat.service.js.map +1 -1
  20. package/backend/dist/src/llm-orchestration/action-handlers/apply-diff.handler.d.ts +1 -1
  21. package/backend/dist/src/llm-orchestration/action-handlers/apply-diff.handler.js +14 -11
  22. package/backend/dist/src/llm-orchestration/action-handlers/apply-diff.handler.js.map +1 -1
  23. package/backend/dist/src/llm-orchestration/action-handlers/create-file.handler.d.ts +1 -1
  24. package/backend/dist/src/llm-orchestration/action-handlers/create-file.handler.js +15 -10
  25. package/backend/dist/src/llm-orchestration/action-handlers/create-file.handler.js.map +1 -1
  26. package/backend/dist/src/llm-orchestration/action-handlers/delete-file.handler.js +15 -2
  27. package/backend/dist/src/llm-orchestration/action-handlers/delete-file.handler.js.map +1 -1
  28. package/backend/dist/src/llm-orchestration/action-handlers/execute-code.handler.js +8 -3
  29. package/backend/dist/src/llm-orchestration/action-handlers/execute-code.handler.js.map +1 -1
  30. package/backend/dist/src/llm-orchestration/action-handlers/final.handler.js +8 -2
  31. package/backend/dist/src/llm-orchestration/action-handlers/final.handler.js.map +1 -1
  32. package/backend/dist/src/llm-orchestration/action-handlers/get-session-history.handler.js +0 -5
  33. package/backend/dist/src/llm-orchestration/action-handlers/get-session-history.handler.js.map +1 -1
  34. package/backend/dist/src/llm-orchestration/action-handlers/invoke-subagent.handler.js +41 -16
  35. package/backend/dist/src/llm-orchestration/action-handlers/invoke-subagent.handler.js.map +1 -1
  36. package/backend/dist/src/llm-orchestration/action-handlers/list-sub-agents.handler.d.ts +1 -1
  37. package/backend/dist/src/llm-orchestration/action-handlers/list-sub-agents.handler.js +1 -7
  38. package/backend/dist/src/llm-orchestration/action-handlers/list-sub-agents.handler.js.map +1 -1
  39. package/backend/dist/src/llm-orchestration/action-handlers/new-session.handler.d.ts +2 -2
  40. package/backend/dist/src/llm-orchestration/action-handlers/new-session.handler.js +10 -10
  41. package/backend/dist/src/llm-orchestration/action-handlers/new-session.handler.js.map +1 -1
  42. package/backend/dist/src/llm-orchestration/action-handlers/overwrite-file.handler.d.ts +1 -1
  43. package/backend/dist/src/llm-orchestration/action-handlers/overwrite-file.handler.js +13 -7
  44. package/backend/dist/src/llm-orchestration/action-handlers/overwrite-file.handler.js.map +1 -1
  45. package/backend/dist/src/llm-orchestration/action-handlers/patch.handler.d.ts +1 -1
  46. package/backend/dist/src/llm-orchestration/action-handlers/patch.handler.js +19 -15
  47. package/backend/dist/src/llm-orchestration/action-handlers/patch.handler.js.map +1 -1
  48. package/backend/dist/src/llm-orchestration/action-handlers/quick-edit.handler.d.ts +1 -1
  49. package/backend/dist/src/llm-orchestration/action-handlers/quick-edit.handler.js +16 -19
  50. package/backend/dist/src/llm-orchestration/action-handlers/quick-edit.handler.js.map +1 -1
  51. package/backend/dist/src/llm-orchestration/action-handlers/request-context.handler.d.ts +8 -2
  52. package/backend/dist/src/llm-orchestration/action-handlers/request-context.handler.js +75 -17
  53. package/backend/dist/src/llm-orchestration/action-handlers/request-context.handler.js.map +1 -1
  54. package/backend/dist/src/llm-orchestration/action-handlers/run-command.handler.d.ts +4 -1
  55. package/backend/dist/src/llm-orchestration/action-handlers/run-command.handler.js +34 -10
  56. package/backend/dist/src/llm-orchestration/action-handlers/run-command.handler.js.map +1 -1
  57. package/backend/dist/src/llm-orchestration/action-handlers/use-mcp-tool.handler.d.ts +1 -1
  58. package/backend/dist/src/llm-orchestration/action-handlers/use-mcp-tool.handler.js +8 -7
  59. package/backend/dist/src/llm-orchestration/action-handlers/use-mcp-tool.handler.js.map +1 -1
  60. package/backend/dist/src/llm-orchestration/action-handlers/write-todo.handler.js +11 -2
  61. package/backend/dist/src/llm-orchestration/action-handlers/write-todo.handler.js.map +1 -1
  62. package/backend/dist/src/llm-orchestration/history-compression.service.d.ts +12 -0
  63. package/backend/dist/src/llm-orchestration/history-compression.service.js +128 -0
  64. package/backend/dist/src/llm-orchestration/history-compression.service.js.map +1 -0
  65. package/backend/dist/src/llm-orchestration/hooks/follow-up-post-execution.hook.d.ts +1 -16
  66. package/backend/dist/src/llm-orchestration/hooks/follow-up-post-execution.hook.js +14 -155
  67. package/backend/dist/src/llm-orchestration/hooks/follow-up-post-execution.hook.js.map +1 -1
  68. package/backend/dist/src/llm-orchestration/hooks/invalid-tool-feedback.hook.js +14 -0
  69. package/backend/dist/src/llm-orchestration/hooks/invalid-tool-feedback.hook.js.map +1 -1
  70. package/backend/dist/src/llm-orchestration/hooks/yolo-mode-post-execution.hook.js +4 -2
  71. package/backend/dist/src/llm-orchestration/hooks/yolo-mode-post-execution.hook.js.map +1 -1
  72. package/backend/dist/src/llm-orchestration/llm-orchestration.interfaces.d.ts +0 -28
  73. package/backend/dist/src/llm-orchestration/llm-orchestration.interfaces.js +0 -11
  74. package/backend/dist/src/llm-orchestration/llm-orchestration.interfaces.js.map +1 -1
  75. package/backend/dist/src/llm-orchestration/llm-orchestration.module.js +5 -0
  76. package/backend/dist/src/llm-orchestration/llm-orchestration.module.js.map +1 -1
  77. package/backend/dist/src/llm-orchestration/llm-turn-processor.service.js +20 -25
  78. package/backend/dist/src/llm-orchestration/llm-turn-processor.service.js.map +1 -1
  79. package/backend/dist/src/llm-provider/alibaba-llm.provider.js +17 -8
  80. package/backend/dist/src/llm-provider/alibaba-llm.provider.js.map +1 -1
  81. package/backend/dist/src/llm-provider/llm-provider.interface.d.ts +1 -1
  82. package/backend/dist/src/llm-provider/openrouter-llm.provider.js +7 -0
  83. package/backend/dist/src/llm-provider/openrouter-llm.provider.js.map +1 -1
  84. package/backend/dist/src/llm-provider/zai-llm.provider.js +7 -0
  85. package/backend/dist/src/llm-provider/zai-llm.provider.js.map +1 -1
  86. package/backend/dist/src/seeding/data/tool-hooks/eslint-hook.d.ts +1 -1
  87. package/backend/dist/src/seeding/data/tool-hooks/eslint-hook.js +23 -10
  88. package/backend/dist/src/seeding/data/tool-hooks/eslint-hook.js.map +1 -1
  89. package/backend/dist/src/session-inputs/dto/session-input.dto.d.ts +1 -0
  90. package/backend/dist/src/session-inputs/dto/session-input.dto.js +5 -0
  91. package/backend/dist/src/session-inputs/dto/session-input.dto.js.map +1 -1
  92. package/backend/dist/src/session-inputs/session-inputs.service.d.ts +1 -1
  93. package/backend/dist/src/session-inputs/session-inputs.service.js +10 -0
  94. package/backend/dist/src/session-inputs/session-inputs.service.js.map +1 -1
  95. package/backend/dist/src/tool-hooks/tool-hooks.service.js +0 -5
  96. package/backend/dist/src/tool-hooks/tool-hooks.service.js.map +1 -1
  97. package/backend/dist/tsconfig.build.tsbuildinfo +1 -1
  98. package/package.json +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repoburg",
3
- "version": "1.3.69",
3
+ "version": "1.3.71",
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",