repoburg 1.3.19 → 1.3.21
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/.repoburg/hooks/README.md +53 -0
- package/backend/.repoburg/hooks/eslint-hook.ts +46 -0
- package/backend/.repoburg/hooks/example-hook.ts +62 -0
- package/backend/dist/src/app.module.js +4 -0
- package/backend/dist/src/app.module.js.map +1 -1
- package/backend/dist/src/core-entities/index.d.ts +1 -0
- package/backend/dist/src/core-entities/index.js +1 -0
- package/backend/dist/src/core-entities/index.js.map +1 -1
- package/backend/dist/src/core-entities/tool-hook.entity.d.ts +7 -0
- package/backend/dist/src/core-entities/tool-hook.entity.js +37 -0
- package/backend/dist/src/core-entities/tool-hook.entity.js.map +1 -0
- package/backend/dist/src/llm-orchestration/action-handlers/execute-shell.handler.d.ts +1 -0
- package/backend/dist/src/llm-orchestration/action-handlers/execute-shell.handler.js +16 -3
- package/backend/dist/src/llm-orchestration/action-handlers/execute-shell.handler.js.map +1 -1
- package/backend/dist/src/llm-orchestration/action-handlers/run-command.handler.d.ts +1 -0
- package/backend/dist/src/llm-orchestration/action-handlers/run-command.handler.js +18 -1
- package/backend/dist/src/llm-orchestration/action-handlers/run-command.handler.js.map +1 -1
- package/backend/dist/src/llm-orchestration/llm-orchestration.interfaces.d.ts +1 -1
- package/backend/dist/src/llm-orchestration/llm-orchestration.module.js +87 -50
- package/backend/dist/src/llm-orchestration/llm-orchestration.module.js.map +1 -1
- package/backend/dist/src/llm-orchestration/llm-turn-processor.service.d.ts +3 -1
- package/backend/dist/src/llm-orchestration/llm-turn-processor.service.js +70 -2
- package/backend/dist/src/llm-orchestration/llm-turn-processor.service.js.map +1 -1
- package/backend/dist/src/seeding/data/system-prompts/default_master-agent.d.ts +1 -1
- package/backend/dist/src/seeding/data/system-prompts/default_master-agent.js +2 -2
- package/backend/dist/src/seeding/data/tool-hooks/eslint-hook.d.ts +2 -0
- package/backend/dist/src/seeding/data/tool-hooks/eslint-hook.js +52 -0
- package/backend/dist/src/seeding/data/tool-hooks/eslint-hook.js.map +1 -0
- package/backend/dist/src/seeding/data/tool-hooks/example-hook.d.ts +2 -0
- package/backend/dist/src/seeding/data/tool-hooks/example-hook.js +68 -0
- package/backend/dist/src/seeding/data/tool-hooks/example-hook.js.map +1 -0
- package/backend/dist/src/seeding/data/tool-hooks/readme.d.ts +2 -0
- package/backend/dist/src/seeding/data/tool-hooks/readme.js +59 -0
- package/backend/dist/src/seeding/data/tool-hooks/readme.js.map +1 -0
- package/backend/dist/src/tool-hooks/dto/create-tool-hook.dto.d.ts +6 -0
- package/backend/dist/src/tool-hooks/dto/create-tool-hook.dto.js +36 -0
- package/backend/dist/src/tool-hooks/dto/create-tool-hook.dto.js.map +1 -0
- package/backend/dist/src/tool-hooks/dto/update-tool-hook.dto.d.ts +6 -0
- package/backend/dist/src/tool-hooks/dto/update-tool-hook.dto.js +38 -0
- package/backend/dist/src/tool-hooks/dto/update-tool-hook.dto.js.map +1 -0
- package/backend/dist/src/tool-hooks/tool-hooks.controller.d.ts +27 -0
- package/backend/dist/src/tool-hooks/tool-hooks.controller.js +123 -0
- package/backend/dist/src/tool-hooks/tool-hooks.controller.js.map +1 -0
- package/backend/dist/src/tool-hooks/tool-hooks.module.d.ts +2 -0
- package/backend/dist/src/tool-hooks/tool-hooks.module.js +27 -0
- package/backend/dist/src/tool-hooks/tool-hooks.module.js.map +1 -0
- package/backend/dist/src/tool-hooks/tool-hooks.service.d.ts +31 -0
- package/backend/dist/src/tool-hooks/tool-hooks.service.js +337 -0
- package/backend/dist/src/tool-hooks/tool-hooks.service.js.map +1 -0
- package/backend/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repoburg",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.21",
|
|
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": "
|
|
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": "^
|
|
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",
|