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.
- package/backend/.env +2 -2
- package/backend/.eslintrc.js +5 -0
- package/backend/dist/src/application-state/application-state.controller.d.ts +5 -0
- package/backend/dist/src/application-state/application-state.controller.js +22 -0
- package/backend/dist/src/application-state/application-state.controller.js.map +1 -1
- package/backend/dist/src/application-state/application-state.service.d.ts +2 -0
- package/backend/dist/src/application-state/application-state.service.js +11 -0
- package/backend/dist/src/application-state/application-state.service.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-history-compression-enabled.dto.d.ts +3 -0
- package/backend/dist/src/application-state/dto/set-history-compression-enabled.dto.js +21 -0
- package/backend/dist/src/application-state/dto/set-history-compression-enabled.dto.js.map +1 -0
- package/backend/dist/src/core-entities/ai-action.entity.d.ts +1 -0
- package/backend/dist/src/core-entities/ai-action.entity.js +4 -0
- package/backend/dist/src/core-entities/ai-action.entity.js.map +1 -1
- package/backend/dist/src/interactive-chat/chat.module.js +2 -1
- package/backend/dist/src/interactive-chat/chat.module.js.map +1 -1
- package/backend/dist/src/interactive-chat/chat.service.d.ts +5 -1
- package/backend/dist/src/interactive-chat/chat.service.js +42 -4
- package/backend/dist/src/interactive-chat/chat.service.js.map +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/apply-diff.handler.d.ts +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/apply-diff.handler.js +14 -11
- package/backend/dist/src/llm-orchestration/action-handlers/apply-diff.handler.js.map +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/create-file.handler.d.ts +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/create-file.handler.js +15 -10
- package/backend/dist/src/llm-orchestration/action-handlers/create-file.handler.js.map +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/delete-file.handler.js +15 -2
- package/backend/dist/src/llm-orchestration/action-handlers/delete-file.handler.js.map +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/execute-code.handler.js +8 -3
- package/backend/dist/src/llm-orchestration/action-handlers/execute-code.handler.js.map +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/final.handler.js +8 -2
- package/backend/dist/src/llm-orchestration/action-handlers/final.handler.js.map +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/get-session-history.handler.js +0 -5
- package/backend/dist/src/llm-orchestration/action-handlers/get-session-history.handler.js.map +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/invoke-subagent.handler.js +41 -16
- package/backend/dist/src/llm-orchestration/action-handlers/invoke-subagent.handler.js.map +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/list-sub-agents.handler.d.ts +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/list-sub-agents.handler.js +1 -7
- package/backend/dist/src/llm-orchestration/action-handlers/list-sub-agents.handler.js.map +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/new-session.handler.d.ts +2 -2
- package/backend/dist/src/llm-orchestration/action-handlers/new-session.handler.js +10 -10
- package/backend/dist/src/llm-orchestration/action-handlers/new-session.handler.js.map +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/overwrite-file.handler.d.ts +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/overwrite-file.handler.js +13 -7
- package/backend/dist/src/llm-orchestration/action-handlers/overwrite-file.handler.js.map +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/patch.handler.d.ts +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/patch.handler.js +19 -15
- package/backend/dist/src/llm-orchestration/action-handlers/patch.handler.js.map +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/quick-edit.handler.d.ts +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/quick-edit.handler.js +16 -19
- package/backend/dist/src/llm-orchestration/action-handlers/quick-edit.handler.js.map +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/request-context.handler.d.ts +8 -2
- package/backend/dist/src/llm-orchestration/action-handlers/request-context.handler.js +75 -17
- package/backend/dist/src/llm-orchestration/action-handlers/request-context.handler.js.map +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/run-command.handler.d.ts +4 -1
- package/backend/dist/src/llm-orchestration/action-handlers/run-command.handler.js +34 -10
- package/backend/dist/src/llm-orchestration/action-handlers/run-command.handler.js.map +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/use-mcp-tool.handler.d.ts +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/use-mcp-tool.handler.js +8 -7
- package/backend/dist/src/llm-orchestration/action-handlers/use-mcp-tool.handler.js.map +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/write-todo.handler.js +11 -2
- package/backend/dist/src/llm-orchestration/action-handlers/write-todo.handler.js.map +1 -1
- package/backend/dist/src/llm-orchestration/history-compression.service.d.ts +12 -0
- package/backend/dist/src/llm-orchestration/history-compression.service.js +128 -0
- package/backend/dist/src/llm-orchestration/history-compression.service.js.map +1 -0
- package/backend/dist/src/llm-orchestration/hooks/follow-up-post-execution.hook.d.ts +1 -16
- package/backend/dist/src/llm-orchestration/hooks/follow-up-post-execution.hook.js +14 -155
- package/backend/dist/src/llm-orchestration/hooks/follow-up-post-execution.hook.js.map +1 -1
- package/backend/dist/src/llm-orchestration/hooks/invalid-tool-feedback.hook.js +14 -0
- package/backend/dist/src/llm-orchestration/hooks/invalid-tool-feedback.hook.js.map +1 -1
- package/backend/dist/src/llm-orchestration/hooks/yolo-mode-post-execution.hook.js +4 -2
- package/backend/dist/src/llm-orchestration/hooks/yolo-mode-post-execution.hook.js.map +1 -1
- package/backend/dist/src/llm-orchestration/llm-orchestration.interfaces.d.ts +0 -28
- package/backend/dist/src/llm-orchestration/llm-orchestration.interfaces.js +0 -11
- package/backend/dist/src/llm-orchestration/llm-orchestration.interfaces.js.map +1 -1
- package/backend/dist/src/llm-orchestration/llm-orchestration.module.js +5 -0
- package/backend/dist/src/llm-orchestration/llm-orchestration.module.js.map +1 -1
- package/backend/dist/src/llm-orchestration/llm-turn-processor.service.js +20 -25
- package/backend/dist/src/llm-orchestration/llm-turn-processor.service.js.map +1 -1
- package/backend/dist/src/llm-provider/alibaba-llm.provider.js +17 -8
- package/backend/dist/src/llm-provider/alibaba-llm.provider.js.map +1 -1
- package/backend/dist/src/llm-provider/llm-provider.interface.d.ts +1 -1
- package/backend/dist/src/llm-provider/openrouter-llm.provider.js +7 -0
- package/backend/dist/src/llm-provider/openrouter-llm.provider.js.map +1 -1
- package/backend/dist/src/llm-provider/zai-llm.provider.js +7 -0
- package/backend/dist/src/llm-provider/zai-llm.provider.js.map +1 -1
- package/backend/dist/src/seeding/data/tool-hooks/eslint-hook.d.ts +1 -1
- package/backend/dist/src/seeding/data/tool-hooks/eslint-hook.js +23 -10
- package/backend/dist/src/seeding/data/tool-hooks/eslint-hook.js.map +1 -1
- package/backend/dist/src/session-inputs/dto/session-input.dto.d.ts +1 -0
- package/backend/dist/src/session-inputs/dto/session-input.dto.js +5 -0
- package/backend/dist/src/session-inputs/dto/session-input.dto.js.map +1 -1
- package/backend/dist/src/session-inputs/session-inputs.service.d.ts +1 -1
- package/backend/dist/src/session-inputs/session-inputs.service.js +10 -0
- package/backend/dist/src/session-inputs/session-inputs.service.js.map +1 -1
- package/backend/dist/src/tool-hooks/tool-hooks.service.js +0 -5
- package/backend/dist/src/tool-hooks/tool-hooks.service.js.map +1 -1
- package/backend/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1