repoburg 1.0.48 → 1.0.50
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/dist/application-state/application-state.controller.d.ts +5 -0
- package/backend/dist/application-state/application-state.controller.js +22 -0
- package/backend/dist/application-state/application-state.controller.js.map +1 -1
- package/backend/dist/application-state/application-state.service.d.ts +2 -0
- package/backend/dist/application-state/application-state.service.js +11 -0
- package/backend/dist/application-state/application-state.service.js.map +1 -1
- package/backend/dist/application-state/dto/set-orchestration-timeout.dto.d.ts +3 -0
- package/backend/dist/application-state/dto/set-orchestration-timeout.dto.js +21 -0
- package/backend/dist/application-state/dto/set-orchestration-timeout.dto.js.map +1 -0
- package/backend/dist/orchestration/orchestration.service.d.ts +0 -1
- package/backend/dist/orchestration/orchestration.service.js +4 -3
- package/backend/dist/orchestration/orchestration.service.js.map +1 -1
- package/backend/dist/orchestration/orchestration.types.d.ts +1 -0
- package/backend/dist/seeding/data/system-prompts/default_multi-file-action-generator-with-requester.d.ts +1 -1
- package/backend/dist/seeding/data/system-prompts/default_multi-file-action-generator-with-requester.js +2 -0
- package/backend/dist/seeding/data/system-prompts/default_multi-file-action-generator-with-requester.js.map +1 -1
- package/backend/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import { ApplicationStateService } from './application-state.service';
|
|
|
2
2
|
import { SetWebsocketEnabledDto } from './dto/set-websocket-enabled.dto';
|
|
3
3
|
import { SetThemeDto } from './dto/set-theme.dto';
|
|
4
4
|
import { SetAutoContextFetchEnabledDto } from './dto/set-auto-context-fetch-enabled.dto';
|
|
5
|
+
import { SetOrchestrationTimeoutDto } from './dto/set-orchestration-timeout.dto';
|
|
5
6
|
export declare class ApplicationStateController {
|
|
6
7
|
private readonly applicationStateService;
|
|
7
8
|
constructor(applicationStateService: ApplicationStateService);
|
|
@@ -17,4 +18,8 @@ export declare class ApplicationStateController {
|
|
|
17
18
|
theme: string;
|
|
18
19
|
}>;
|
|
19
20
|
setTheme(dto: SetThemeDto): Promise<void>;
|
|
21
|
+
getOrchestrationTimeout(): Promise<{
|
|
22
|
+
timeout_ms: number;
|
|
23
|
+
}>;
|
|
24
|
+
setOrchestrationTimeout(dto: SetOrchestrationTimeoutDto): Promise<void>;
|
|
20
25
|
}
|
|
@@ -18,6 +18,7 @@ const application_state_service_1 = require("./application-state.service");
|
|
|
18
18
|
const set_websocket_enabled_dto_1 = require("./dto/set-websocket-enabled.dto");
|
|
19
19
|
const set_theme_dto_1 = require("./dto/set-theme.dto");
|
|
20
20
|
const set_auto_context_fetch_enabled_dto_1 = require("./dto/set-auto-context-fetch-enabled.dto");
|
|
21
|
+
const set_orchestration_timeout_dto_1 = require("./dto/set-orchestration-timeout.dto");
|
|
21
22
|
let ApplicationStateController = class ApplicationStateController {
|
|
22
23
|
constructor(applicationStateService) {
|
|
23
24
|
this.applicationStateService = applicationStateService;
|
|
@@ -43,6 +44,13 @@ let ApplicationStateController = class ApplicationStateController {
|
|
|
43
44
|
async setTheme(dto) {
|
|
44
45
|
await this.applicationStateService.setTheme(dto.theme);
|
|
45
46
|
}
|
|
47
|
+
async getOrchestrationTimeout() {
|
|
48
|
+
const timeout_ms = await this.applicationStateService.getOrchestrationTimeoutMs();
|
|
49
|
+
return { timeout_ms };
|
|
50
|
+
}
|
|
51
|
+
async setOrchestrationTimeout(dto) {
|
|
52
|
+
await this.applicationStateService.setOrchestrationTimeoutMs(dto.timeout_ms);
|
|
53
|
+
}
|
|
46
54
|
};
|
|
47
55
|
exports.ApplicationStateController = ApplicationStateController;
|
|
48
56
|
__decorate([
|
|
@@ -87,6 +95,20 @@ __decorate([
|
|
|
87
95
|
__metadata("design:paramtypes", [set_theme_dto_1.SetThemeDto]),
|
|
88
96
|
__metadata("design:returntype", Promise)
|
|
89
97
|
], ApplicationStateController.prototype, "setTheme", null);
|
|
98
|
+
__decorate([
|
|
99
|
+
(0, common_1.Get)('orchestration-timeout'),
|
|
100
|
+
__metadata("design:type", Function),
|
|
101
|
+
__metadata("design:paramtypes", []),
|
|
102
|
+
__metadata("design:returntype", Promise)
|
|
103
|
+
], ApplicationStateController.prototype, "getOrchestrationTimeout", null);
|
|
104
|
+
__decorate([
|
|
105
|
+
(0, common_1.Post)('orchestration-timeout'),
|
|
106
|
+
(0, common_1.HttpCode)(common_1.HttpStatus.NO_CONTENT),
|
|
107
|
+
__param(0, (0, common_1.Body)()),
|
|
108
|
+
__metadata("design:type", Function),
|
|
109
|
+
__metadata("design:paramtypes", [set_orchestration_timeout_dto_1.SetOrchestrationTimeoutDto]),
|
|
110
|
+
__metadata("design:returntype", Promise)
|
|
111
|
+
], ApplicationStateController.prototype, "setOrchestrationTimeout", null);
|
|
90
112
|
exports.ApplicationStateController = ApplicationStateController = __decorate([
|
|
91
113
|
(0, common_1.Controller)('application-state'),
|
|
92
114
|
__metadata("design:paramtypes", [application_state_service_1.ApplicationStateService])
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"application-state.controller.js","sourceRoot":"","sources":["../../src/application-state/application-state.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAOwB;AACxB,2EAAsE;AACtE,+EAAyE;AACzE,uDAAkD;AAClD,iGAAyF;
|
|
1
|
+
{"version":3,"file":"application-state.controller.js","sourceRoot":"","sources":["../../src/application-state/application-state.controller.ts"],"names":[],"mappings":"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"}
|
|
@@ -15,6 +15,8 @@ export declare class ApplicationStateService {
|
|
|
15
15
|
getAutoContextFetchEnabled(): Promise<boolean>;
|
|
16
16
|
setTheme(theme: string): Promise<void>;
|
|
17
17
|
getTheme(): Promise<string>;
|
|
18
|
+
setOrchestrationTimeoutMs(timeout: number): Promise<void>;
|
|
19
|
+
getOrchestrationTimeoutMs(): Promise<number>;
|
|
18
20
|
setOrchestrationRunState(state: OrchestrationRunState | null): Promise<void>;
|
|
19
21
|
getOrchestrationRunState(): Promise<OrchestrationRunState | null>;
|
|
20
22
|
}
|
|
@@ -22,6 +22,7 @@ const WEBSOCKET_ENABLED_KEY = 'websocketEnabled';
|
|
|
22
22
|
const AUTO_CONTEXT_FETCH_ENABLED_KEY = 'autoContextFetchEnabled';
|
|
23
23
|
const THEME_KEY = 'theme';
|
|
24
24
|
const ACTIVE_ORCHESTRATION_RUN_KEY = 'activeOrchestrationRun';
|
|
25
|
+
const ORCHESTRATION_TIMEOUT_MS_KEY = 'orchestrationTimeoutMs';
|
|
25
26
|
let ApplicationStateService = class ApplicationStateService {
|
|
26
27
|
constructor(applicationStateRepository) {
|
|
27
28
|
this.applicationStateRepository = applicationStateRepository;
|
|
@@ -74,6 +75,16 @@ let ApplicationStateService = class ApplicationStateService {
|
|
|
74
75
|
const theme = await this.getState(THEME_KEY);
|
|
75
76
|
return theme || 'system';
|
|
76
77
|
}
|
|
78
|
+
async setOrchestrationTimeoutMs(timeout) {
|
|
79
|
+
await this.setState(ORCHESTRATION_TIMEOUT_MS_KEY, String(timeout));
|
|
80
|
+
}
|
|
81
|
+
async getOrchestrationTimeoutMs() {
|
|
82
|
+
const value = await this.getState(ORCHESTRATION_TIMEOUT_MS_KEY);
|
|
83
|
+
if (value === null) {
|
|
84
|
+
return 360000;
|
|
85
|
+
}
|
|
86
|
+
return parseInt(value, 10);
|
|
87
|
+
}
|
|
77
88
|
async setOrchestrationRunState(state) {
|
|
78
89
|
if (state) {
|
|
79
90
|
await this.setState(ACTIVE_ORCHESTRATION_RUN_KEY, JSON.stringify(state));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"application-state.service.js","sourceRoot":"","sources":["../../src/application-state/application-state.service.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"application-state.service.js","sourceRoot":"","sources":["../../src/application-state/application-state.service.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAA4C;AAC5C,6CAAmD;AACnD,qCAAqC;AACrC,oDAAoD;AAGpD,MAAM,kBAAkB,GAAG,iBAAiB,CAAC;AAC7C,MAAM,qBAAqB,GAAG,kBAAkB,CAAC;AACjD,MAAM,8BAA8B,GAAG,yBAAyB,CAAC;AACjE,MAAM,SAAS,GAAG,OAAO,CAAC;AAC1B,MAAM,4BAA4B,GAAG,wBAAwB,CAAC;AAC9D,MAAM,4BAA4B,GAAG,wBAAwB,CAAC;AAGvD,IAAM,uBAAuB,GAA7B,MAAM,uBAAuB;IAClC,YAEU,0BAAwD;QAAxD,+BAA0B,GAA1B,0BAA0B,CAA8B;IAC/D,CAAC;IAEI,KAAK,CAAC,QAAQ,CAAC,GAAW,EAAE,KAAa;QAC/C,MAAM,IAAI,CAAC,0BAA0B,CAAC,IAAI,CAAC;YACzC,GAAG,EAAE,GAAG;YACR,KAAK,EAAE,KAAK;SACb,CAAC,CAAC;IACL,CAAC;IAEO,KAAK,CAAC,QAAQ,CAAC,GAAW;QAChC,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,0BAA0B,CAAC,SAAS,CAAC;YAC5D,GAAG,EAAE,GAAG;SACT,CAAC,CAAC;QACH,OAAO,KAAK,EAAE,KAAK,IAAI,IAAI,CAAC;IAC9B,CAAC;IAEO,KAAK,CAAC,WAAW,CAAC,GAAW;QACnC,MAAM,IAAI,CAAC,0BAA0B,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC;IACxD,CAAC;IAED,KAAK,CAAC,kBAAkB,CAAC,SAAiB;QACxC,MAAM,IAAI,CAAC,QAAQ,CAAC,kBAAkB,EAAE,SAAS,CAAC,CAAC;IACrD,CAAC;IAED,KAAK,CAAC,kBAAkB;QACtB,OAAO,IAAI,CAAC,QAAQ,CAAC,kBAAkB,CAAC,CAAC;IAC3C,CAAC;IAED,KAAK,CAAC,mBAAmB,CAAC,OAAgB;QACxC,MAAM,IAAI,CAAC,QAAQ,CAAC,qBAAqB,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC;IAC9D,CAAC;IAED,KAAK,CAAC,mBAAmB;QACvB,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,QAAQ,CAAC,qBAAqB,CAAC,CAAC;QAEzD,IAAI,KAAK,KAAK,IAAI,EAAE,CAAC;YACnB,OAAO,IAAI,CAAC;QACd,CAAC;QACD,OAAO,KAAK,KAAK,MAAM,CAAC;IAC1B,CAAC;IAED,KAAK,CAAC,0BAA0B,CAAC,OAAgB;QAC/C,MAAM,IAAI,CAAC,QAAQ,CAAC,8BAA8B,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC;IACvE,CAAC;IAED,KAAK,CAAC,0BAA0B;QAC9B,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,QAAQ,CAAC,8BAA8B,CAAC,CAAC;QAElE,IAAI,KAAK,KAAK,IAAI,EAAE,CAAC;YACnB,OAAO,IAAI,CAAC;QACd,CAAC;QACD,OAAO,KAAK,KAAK,MAAM,CAAC;IAC1B,CAAC;IAED,KAAK,CAAC,QAAQ,CAAC,KAAa;QAC1B,MAAM,IAAI,CAAC,QAAQ,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;IACxC,CAAC;IAED,KAAK,CAAC,QAAQ;QACZ,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;QAE7C,OAAO,KAAK,IAAI,QAAQ,CAAC;IAC3B,CAAC;IAED,KAAK,CAAC,yBAAyB,CAAC,OAAe;QAC7C,MAAM,IAAI,CAAC,QAAQ,CAAC,4BAA4B,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC;IACrE,CAAC;IAED,KAAK,CAAC,yBAAyB;QAC7B,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,QAAQ,CAAC,4BAA4B,CAAC,CAAC;QAEhE,IAAI,KAAK,KAAK,IAAI,EAAE,CAAC;YACnB,OAAO,MAAM,CAAC;QAChB,CAAC;QACD,OAAO,QAAQ,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC;IAC7B,CAAC;IAED,KAAK,CAAC,wBAAwB,CAC5B,KAAmC;QAEnC,IAAI,KAAK,EAAE,CAAC;YACV,MAAM,IAAI,CAAC,QAAQ,CAAC,4BAA4B,EAAE,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAC;QAC3E,CAAC;aAAM,CAAC;YACN,MAAM,IAAI,CAAC,WAAW,CAAC,4BAA4B,CAAC,CAAC;QACvD,CAAC;IACH,CAAC;IAED,KAAK,CAAC,wBAAwB;QAC5B,MAAM,SAAS,GAAG,MAAM,IAAI,CAAC,QAAQ,CAAC,4BAA4B,CAAC,CAAC;QACpE,IAAI,CAAC,SAAS,EAAE,CAAC;YACf,OAAO,IAAI,CAAC;QACd,CAAC;QACD,IAAI,CAAC;YACH,OAAO,IAAI,CAAC,KAAK,CAAC,SAAS,CAA0B,CAAC;QACxD,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,OAAO,CAAC,KAAK,CAAC,0CAA0C,EAAE,KAAK,CAAC,CAAC;YACjE,OAAO,IAAI,CAAC;QACd,CAAC;IACH,CAAC;CACF,CAAA;AAvGY,0DAAuB;kCAAvB,uBAAuB;IADnC,IAAA,mBAAU,GAAE;IAGR,WAAA,IAAA,0BAAgB,EAAC,gCAAgB,CAAC,CAAA;qCACC,oBAAU;GAHrC,uBAAuB,CAuGnC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.SetOrchestrationTimeoutDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class SetOrchestrationTimeoutDto {
|
|
15
|
+
}
|
|
16
|
+
exports.SetOrchestrationTimeoutDto = SetOrchestrationTimeoutDto;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsInt)(),
|
|
19
|
+
__metadata("design:type", Number)
|
|
20
|
+
], SetOrchestrationTimeoutDto.prototype, "timeout_ms", void 0);
|
|
21
|
+
//# sourceMappingURL=set-orchestration-timeout.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"set-orchestration-timeout.dto.js","sourceRoot":"","sources":["../../../src/application-state/dto/set-orchestration-timeout.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAwC;AAExC,MAAa,0BAA0B;CAGtC;AAHD,gEAGC;AADC;IADC,IAAA,uBAAK,GAAE;;8DACW"}
|
|
@@ -16,7 +16,6 @@ export declare class OrchestrationService {
|
|
|
16
16
|
private readonly logger;
|
|
17
17
|
private activeRun;
|
|
18
18
|
private timeoutTimer;
|
|
19
|
-
private readonly TIMEOUT_MS;
|
|
20
19
|
constructor(fsService: OrchestrationFsService, appStateService: ApplicationStateService, eventsGateway: EventsGateway, parserService: OrchestrationParserService, sessionInputsService: SessionInputsService, sessionsService: SessionsService);
|
|
21
20
|
private loadStateFromPersistence;
|
|
22
21
|
private setState;
|
|
@@ -34,7 +34,6 @@ let OrchestrationService = OrchestrationService_1 = class OrchestrationService {
|
|
|
34
34
|
this.logger = new common_1.Logger(OrchestrationService_1.name);
|
|
35
35
|
this.activeRun = null;
|
|
36
36
|
this.timeoutTimer = null;
|
|
37
|
-
this.TIMEOUT_MS = 6 * 60 * 1000;
|
|
38
37
|
this.loadStateFromPersistence();
|
|
39
38
|
}
|
|
40
39
|
async loadStateFromPersistence() {
|
|
@@ -111,6 +110,7 @@ let OrchestrationService = OrchestrationService_1 = class OrchestrationService {
|
|
|
111
110
|
await this.fsService.cloneScriptForRun(dto.scriptName);
|
|
112
111
|
const runScriptContent = await this.fsService.readRunScript(dto.scriptName);
|
|
113
112
|
const initialChunks = await this.parserService.parseScript(runScriptContent);
|
|
113
|
+
const timeoutMs = await this.appStateService.getOrchestrationTimeoutMs();
|
|
114
114
|
this.activeRun = {
|
|
115
115
|
runId: (0, crypto_1.randomUUID)(),
|
|
116
116
|
status: orchestration_types_1.OrchestrationStatus.RUNNING,
|
|
@@ -123,9 +123,10 @@ let OrchestrationService = OrchestrationService_1 = class OrchestrationService {
|
|
|
123
123
|
waitingOnInputId: null,
|
|
124
124
|
error: null,
|
|
125
125
|
log: [],
|
|
126
|
+
timeoutMs,
|
|
126
127
|
};
|
|
127
128
|
await this.persistState();
|
|
128
|
-
this.log(`Orchestration started in ${dto.mode} mode with ${initialChunks.length} total steps.`);
|
|
129
|
+
this.log(`Orchestration started in ${dto.mode} mode with ${initialChunks.length} total steps. Timeout is ${timeoutMs / 1000}s.`);
|
|
129
130
|
this.emitStatus();
|
|
130
131
|
this.execute().catch((error) => {
|
|
131
132
|
this.logger.error(`Unhandled error in orchestration execution: ${error.message}`, error.stack);
|
|
@@ -186,7 +187,7 @@ let OrchestrationService = OrchestrationService_1 = class OrchestrationService {
|
|
|
186
187
|
});
|
|
187
188
|
this.timeoutTimer = setTimeout(() => {
|
|
188
189
|
this.fail('Orchestration timed out waiting for LLM response.');
|
|
189
|
-
}, this.
|
|
190
|
+
}, this.activeRun.timeoutMs);
|
|
190
191
|
}
|
|
191
192
|
else {
|
|
192
193
|
this.logger.warn(`[onPromptPrepared] Called but active run status is not 'RUNNING'. Current status: ${this.activeRun?.status}`);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"orchestration.service.js","sourceRoot":"","sources":["../../src/orchestration/orchestration.service.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAOwB;AACxB,yEAAoE;AACpE,8FAAyF;AACzF,+DAI+B;AAE/B,mCAAoC;AACpC,6DAAyD;AACzD,qFAAgF;AAChF,mEAA+D;AAC/D,iFAA4E;AAGrE,IAAM,oBAAoB,4BAA1B,MAAM,oBAAoB;
|
|
1
|
+
{"version":3,"file":"orchestration.service.js","sourceRoot":"","sources":["../../src/orchestration/orchestration.service.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const name = "Multi-file Action Generator Assistant- Request Context\n";
|
|
2
|
-
export declare const content = "You are a Multi\u2011File Edit Coder Agent. Analyze context, determine changes, and execute them across files sequentially.\n\n**Core Principles:**\n\n* **Analyze Requirements:** Understand the requested changes. Request clarification if needed.\n* **Plan Actions:** Generate a numbered, sequential list of actions using the format below.\n* **Atomic File Changes:** Each file path must appear in **at most one** action item. All modifications for a single file occur within that action.\n* **Inter-File Dependencies:** Ensure changes in one action (e.g., creating a file) are correctly referenced in subsequent actions (e.g., importing from it).\n* **Code Quality:** Follow standard coding practices. Ensure overall functionality remains intact.\n\n---\n\n**Output Generation Strategy**\n\nBased on the user request, you must generate a numbered list of action items. Each action item represents the *complete* set of modifications for a *single* file. Action items are ordered sequentially. Each action item should be enclosed within `\u00A7ACTION_ITEM_START\u00A7` and `\u00A7ACTION_ITEM_END\u00A7` markers and include the following details using the `\u00A6FieldName\u00A6 Value` format:\n\n\u00A7TITLE_START\u00A7 very brief title for entire chat history including previous prompt, if current title is fine then leave it (max 4 words) \u00A7TITLE_END\u00A7\n\n* `\u00A6ActionNumber\u00A6`: The sequential identifier for the task.\n* `\u00A6TaskDescription\u00A6`: A concise description of **all** changes to be made to this particular file.\n* `\u00A6FilePath\u00A6`: The file path where the modification will occur (ensure it aligns with the *Project Files from Structure*).\n* `\u00A6FileAction\u00A6`: The operation to perform: `create_file`, `edit_file`, `delete_file` or `request_context`.\n* `\u00A6Files\u00A6`: (optional, use only for `request_context`) A comma-separated list of file paths that are relevant to the `request_context` action.\n* `\u00A6Folders\u00A6`: (optional, use only for `request_context`) A comma-separated list of folder paths that are relevant to the `request_context` action.\n* `\u00A6Code\u00A6`:\n * For `create_file`: Provide the complete content of the new file within a code block.\n * For `edit_file`: Provide the complete content with modifications of the new file within a code block.\n * For `delete_file`: Leave this section empty or provide an empty code block.\n\n**Edit Diff Format:**\n\nFOR EDITS: GENERATE WHOLE CONTENT WITH MODIFICATIONS, DO NOT GENERATE PARTIAL CONTENT.\ndo not use + or - for diff, just use the whole content of the file.\n\n**Create or Edit File Action:**\n\nThe `\u00A6Code\u00A6` section should contain the full file content within a Markdown code block.\n\n```typescript\n// Full content of the new file or full modified content of the existing file\n```\n\n\n**Delete File Action:**\n\nThe `\u00A6Code\u00A6` section should contain an empty Markdown code block.\n\n```diff\n\n```\n\n\n**Requesting More Context:**\n\nIf you don't have lack sufficient context to fulfill the request, you can ask for more files or folders using the `request_context` command.\nDo not try to edit a file content you don't know just ask\n\n* `\u00A6FileAction\u00A6`: `request_context`\n* `\u00A6Files\u00A6`: (Optional) A comma-separated list of file paths.\n* `\u00A6Folders\u00A6`: (Optional) A comma-separated list of folder paths.\n* `\u00A6Reason\u00A6`: (Optional) A brief explanation of why you need more context. This reason will be shown to the user.\n\n`request_context` should be the only action in a response. Do not mix it with other file modification actions.\n\nExample:\n```\n\u00A7ACTION_ITEM_START\u00A7\n\u00A6ActionNumber\u00A6 1\n\u00A6TaskDescription\u00A6 Requesting more context for UI component creation.\n\u00A6FileAction\u00A6 request_context\n\u00A6Files\u00A6 src/components/ui/button.tsx,src/components/ui/card.tsx\n\u00A6Folders\u00A6 src/hooks\n\u00A6Reason\u00A6 I need to see the existing UI components and custom hooks to maintain consistency.\n\u00A7ACTION_ITEM_END\u00A7\n```\n\n**Example Output (Conceptual)**\n\n<EXAMPLE OUTPUT STARTS HERE>\n\n\u00A7ACTION_ITEM_START\u00A7\n\u00A6ActionNumber\u00A6 1\n\u00A6TaskDescription\u00A6 Create `ErrorBanner.tsx` component in `src/components/common` to display error messages.\n\u00A6FilePath\u00A6 src/components/common/ErrorBanner.tsx\n\u00A6FileAction\u00A6 create_file\n\u00A6Code\u00A6\n```typescript\nimport React from 'react';\n\ninterface ErrorBannerProps {\n message: string;\n}\n\nconst ErrorBanner: React.FC<ErrorBannerProps> = ({ message }) => {\n return (\n <div className=\"bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded relative\" role=\"alert\">\n <strong className=\"font-bold\">Error!</strong>\n <span className=\"block sm:inline\"> {message}</span>\n </div>\n );\n};\n\nexport default ErrorBanner;\n```\n\u00A7ACTION_ITEM_END\u00A7\n-------------------------------------------------\n\u00A7ACTION_ITEM_START\u00A7\n\u00A6ActionNumber\u00A6 2\n\u00A6TaskDescription\u00A6 Modify `ErrorBoundary.tsx` component in `src/components/common` to catch unrecoverable errors and prevent UI crashes.\n\u00A6FilePath\u00A6 src/components/common/ErrorBoundary.tsx\n\u00A6FileAction\u00A6 edit_file\n\u00A6Code\u00A6\n```typescript\nimport React, { Component, ReactNode } from 'react';\n\ninterface Props {\n children: ReactNode;\n}\n\ninterface State {\n hasError: boolean;\n error: Error | null;\n errorInfo: React.ErrorInfo | null;\n}\n\nclass ErrorBoundary extends Component<Props, State> {\n constructor(props: Props) {\n super(props);\n this.state = { hasError: false, error: null, errorInfo: null };\n }\n\n static getDerivedStateFromError(error: Error): State {\n // Update state so the next render will show the fallback UI.\n return { hasError: true, error: error, errorInfo: null };\n }\n\n componentDidCatch(error: Error, errorInfo: React.ErrorInfo): void {\n // You can also log the error to an error reporting service\n console.error(\"Caught error in ErrorBoundary\", error, errorInfo);\n this.setState({errorInfo: errorInfo});\n }\n\n render() {\n if (this.state.hasError) {\n // You can render any custom fallback UI\n return (\n <div style={{ padding: '20px', border: '1px solid red', backgroundColor: '#f8d7da', color: '#721c24' }}>\n <h2>Something went wrong.</h2>\n <p>Please try again later.</p>\n {process.env.NODE_ENV === 'development' && this.state.errorInfo && (\n <>\n <h3>Error Details:</h3>\n <pre style={{ backgroundColor: '#f5f5f5', padding: '10px', overflow: 'auto' }}>\n {this.state.error?.stack}\n </pre>\n </>\n )}\n </div>\n );\n }\n\n return this.props.children;\n }\n}\n\nexport default ErrorBoundary;\n```\n\u00A7ACTION_ITEM_END\u00A7\n\n</EXAMPLE OUTPUT ENDS HERE>\n\n\n<REQUEST CONTEXT EXAMPLE OUTPUT STARTS HERE>\n\n\u00A7ACTION_ITEM_START\u00A7\n\u00A6ActionNumber\u00A6 1\n\u00A6TaskDescription\u00A6 Requesting context for backend service files to add logging for workspace commands.\n\u00A6FileAction\u00A6 request_context\n\u00A6Files\u00A6 backend/src/workspace/workspace.service.ts,backend/src/context-generation/context-generation.service.ts\n\u00A6Reason\u00A6 You are correct, I apologize for making assumptions about files I haven't seen. To correctly add logging to the backend workspace commands, I need to see the content of the relevant services. Based on the file structure, workspace.service.ts and context-generation.service.ts seem to be the most relevant files.\n\u00A7ACTION_ITEM_END\u00A7\n\n</REQUEST CONTEXT EXAMPLE OUTPUT ENDS HERE>\n\n\n**Important Guidelines:**\n\n* **One Action Per File:** Each file path (`\u00A6FilePath\u00A6`) must appear in **at most one** action item. All modifications for a single file must be contained within that file's single action item.\n* **Sequential Actions:** Actions are still ordered sequentially (`ActionNumber`). Changes made in earlier actions (e.g., creating a file, exporting a new function) should be correctly referenced or utilized in later actions where necessary.\n* IMPORTANT: always generate whole content of a file, do not generate partial content.\n* Always generate code within the `\u00A6Code\u00A6` section unless the action is a deletion.\n* The entire output should follow the specified template format.\n* Be concise and focus only on generating the action items as per the template.\n";
|
|
2
|
+
export declare const content = "You are a Multi\u2011File Edit Coder Agent. Analyze context, determine changes, and execute them across files sequentially.\n\n**Core Principles:**\n\n* **Analyze Requirements:** Understand the requested changes. Request clarification if needed.\n* **Plan Actions:** Generate a numbered, sequential list of actions using the format below.\n* **Atomic File Changes:** Each file path must appear in **at most one** action item. All modifications for a single file occur within that action.\n* **Inter-File Dependencies:** Ensure changes in one action (e.g., creating a file) are correctly referenced in subsequent actions (e.g., importing from it).\n* **Code Quality:** Follow standard coding practices. Ensure overall functionality remains intact.\n* **Keep Files Small:** Avoid making existing files unnecessarily large. If a file is growing too big, prefer creating a new file and referencing it instead of adding more code to the same file.\n* **Encourage Modularity:** Break down large features into smaller, focused files. Favor composition and imports over monolithic files.\n\n---\n\n**Output Generation Strategy**\n\nBased on the user request, you must generate a numbered list of action items. Each action item represents the *complete* set of modifications for a *single* file. Action items are ordered sequentially. Each action item should be enclosed within `\u00A7ACTION_ITEM_START\u00A7` and `\u00A7ACTION_ITEM_END\u00A7` markers and include the following details using the `\u00A6FieldName\u00A6 Value` format:\n\n\u00A7TITLE_START\u00A7 very brief title for entire chat history including previous prompt, if current title is fine then leave it (max 4 words) \u00A7TITLE_END\u00A7\n\n* `\u00A6ActionNumber\u00A6`: The sequential identifier for the task.\n* `\u00A6TaskDescription\u00A6`: A concise description of **all** changes to be made to this particular file.\n* `\u00A6FilePath\u00A6`: The file path where the modification will occur (ensure it aligns with the *Project Files from Structure*).\n* `\u00A6FileAction\u00A6`: The operation to perform: `create_file`, `edit_file`, `delete_file` or `request_context`.\n* `\u00A6Files\u00A6`: (optional, use only for `request_context`) A comma-separated list of file paths that are relevant to the `request_context` action.\n* `\u00A6Folders\u00A6`: (optional, use only for `request_context`) A comma-separated list of folder paths that are relevant to the `request_context` action.\n* `\u00A6Code\u00A6`:\n * For `create_file`: Provide the complete content of the new file within a code block.\n * For `edit_file`: Provide the complete content with modifications of the new file within a code block.\n * For `delete_file`: Leave this section empty or provide an empty code block.\n\n**Edit Diff Format:**\n\nFOR EDITS: GENERATE WHOLE CONTENT WITH MODIFICATIONS, DO NOT GENERATE PARTIAL CONTENT.\ndo not use + or - for diff, just use the whole content of the file.\n\n**Create or Edit File Action:**\n\nThe `\u00A6Code\u00A6` section should contain the full file content within a Markdown code block.\n\n```typescript\n// Full content of the new file or full modified content of the existing file\n```\n\n\n**Delete File Action:**\n\nThe `\u00A6Code\u00A6` section should contain an empty Markdown code block.\n\n```diff\n\n```\n\n\n**Requesting More Context:**\n\nIf you don't have lack sufficient context to fulfill the request, you can ask for more files or folders using the `request_context` command.\nDo not try to edit a file content you don't know just ask\n\n* `\u00A6FileAction\u00A6`: `request_context`\n* `\u00A6Files\u00A6`: (Optional) A comma-separated list of file paths.\n* `\u00A6Folders\u00A6`: (Optional) A comma-separated list of folder paths.\n* `\u00A6Reason\u00A6`: (Optional) A brief explanation of why you need more context. This reason will be shown to the user.\n\n`request_context` should be the only action in a response. Do not mix it with other file modification actions.\n\nExample:\n```\n\u00A7ACTION_ITEM_START\u00A7\n\u00A6ActionNumber\u00A6 1\n\u00A6TaskDescription\u00A6 Requesting more context for UI component creation.\n\u00A6FileAction\u00A6 request_context\n\u00A6Files\u00A6 src/components/ui/button.tsx,src/components/ui/card.tsx\n\u00A6Folders\u00A6 src/hooks\n\u00A6Reason\u00A6 I need to see the existing UI components and custom hooks to maintain consistency.\n\u00A7ACTION_ITEM_END\u00A7\n```\n\n**Example Output (Conceptual)**\n\n<EXAMPLE OUTPUT STARTS HERE>\n\n\u00A7ACTION_ITEM_START\u00A7\n\u00A6ActionNumber\u00A6 1\n\u00A6TaskDescription\u00A6 Create `ErrorBanner.tsx` component in `src/components/common` to display error messages.\n\u00A6FilePath\u00A6 src/components/common/ErrorBanner.tsx\n\u00A6FileAction\u00A6 create_file\n\u00A6Code\u00A6\n```typescript\nimport React from 'react';\n\ninterface ErrorBannerProps {\n message: string;\n}\n\nconst ErrorBanner: React.FC<ErrorBannerProps> = ({ message }) => {\n return (\n <div className=\"bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded relative\" role=\"alert\">\n <strong className=\"font-bold\">Error!</strong>\n <span className=\"block sm:inline\"> {message}</span>\n </div>\n );\n};\n\nexport default ErrorBanner;\n```\n\u00A7ACTION_ITEM_END\u00A7\n-------------------------------------------------\n\u00A7ACTION_ITEM_START\u00A7\n\u00A6ActionNumber\u00A6 2\n\u00A6TaskDescription\u00A6 Modify `ErrorBoundary.tsx` component in `src/components/common` to catch unrecoverable errors and prevent UI crashes.\n\u00A6FilePath\u00A6 src/components/common/ErrorBoundary.tsx\n\u00A6FileAction\u00A6 edit_file\n\u00A6Code\u00A6\n```typescript\nimport React, { Component, ReactNode } from 'react';\n\ninterface Props {\n children: ReactNode;\n}\n\ninterface State {\n hasError: boolean;\n error: Error | null;\n errorInfo: React.ErrorInfo | null;\n}\n\nclass ErrorBoundary extends Component<Props, State> {\n constructor(props: Props) {\n super(props);\n this.state = { hasError: false, error: null, errorInfo: null };\n }\n\n static getDerivedStateFromError(error: Error): State {\n // Update state so the next render will show the fallback UI.\n return { hasError: true, error: error, errorInfo: null };\n }\n\n componentDidCatch(error: Error, errorInfo: React.ErrorInfo): void {\n // You can also log the error to an error reporting service\n console.error(\"Caught error in ErrorBoundary\", error, errorInfo);\n this.setState({errorInfo: errorInfo});\n }\n\n render() {\n if (this.state.hasError) {\n // You can render any custom fallback UI\n return (\n <div style={{ padding: '20px', border: '1px solid red', backgroundColor: '#f8d7da', color: '#721c24' }}>\n <h2>Something went wrong.</h2>\n <p>Please try again later.</p>\n {process.env.NODE_ENV === 'development' && this.state.errorInfo && (\n <>\n <h3>Error Details:</h3>\n <pre style={{ backgroundColor: '#f5f5f5', padding: '10px', overflow: 'auto' }}>\n {this.state.error?.stack}\n </pre>\n </>\n )}\n </div>\n );\n }\n\n return this.props.children;\n }\n}\n\nexport default ErrorBoundary;\n```\n\u00A7ACTION_ITEM_END\u00A7\n\n</EXAMPLE OUTPUT ENDS HERE>\n\n\n<REQUEST CONTEXT EXAMPLE OUTPUT STARTS HERE>\n\n\u00A7ACTION_ITEM_START\u00A7\n\u00A6ActionNumber\u00A6 1\n\u00A6TaskDescription\u00A6 Requesting context for backend service files to add logging for workspace commands.\n\u00A6FileAction\u00A6 request_context\n\u00A6Files\u00A6 backend/src/workspace/workspace.service.ts,backend/src/context-generation/context-generation.service.ts\n\u00A6Reason\u00A6 You are correct, I apologize for making assumptions about files I haven't seen. To correctly add logging to the backend workspace commands, I need to see the content of the relevant services. Based on the file structure, workspace.service.ts and context-generation.service.ts seem to be the most relevant files.\n\u00A7ACTION_ITEM_END\u00A7\n\n</REQUEST CONTEXT EXAMPLE OUTPUT ENDS HERE>\n\n\n**Important Guidelines:**\n\n* **One Action Per File:** Each file path (`\u00A6FilePath\u00A6`) must appear in **at most one** action item. All modifications for a single file must be contained within that file's single action item.\n* **Sequential Actions:** Actions are still ordered sequentially (`ActionNumber`). Changes made in earlier actions (e.g., creating a file, exporting a new function) should be correctly referenced or utilized in later actions where necessary.\n* IMPORTANT: always generate whole content of a file, do not generate partial content.\n* Always generate code within the `\u00A6Code\u00A6` section unless the action is a deletion.\n* The entire output should follow the specified template format.\n* Be concise and focus only on generating the action items as per the template.\n";
|
|
@@ -11,6 +11,8 @@ exports.content = `You are a Multi‑File Edit Coder Agent. Analyze context, det
|
|
|
11
11
|
* **Atomic File Changes:** Each file path must appear in **at most one** action item. All modifications for a single file occur within that action.
|
|
12
12
|
* **Inter-File Dependencies:** Ensure changes in one action (e.g., creating a file) are correctly referenced in subsequent actions (e.g., importing from it).
|
|
13
13
|
* **Code Quality:** Follow standard coding practices. Ensure overall functionality remains intact.
|
|
14
|
+
* **Keep Files Small:** Avoid making existing files unnecessarily large. If a file is growing too big, prefer creating a new file and referencing it instead of adding more code to the same file.
|
|
15
|
+
* **Encourage Modularity:** Break down large features into smaller, focused files. Favor composition and imports over monolithic files.
|
|
14
16
|
|
|
15
17
|
---
|
|
16
18
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"default_multi-file-action-generator-with-requester.js","sourceRoot":"","sources":["../../../../src/seeding/data/system-prompts/default_multi-file-action-generator-with-requester.ts"],"names":[],"mappings":";;;AAAa,QAAA,IAAI,GAAG,0DAA0D,CAAC;AAClE,QAAA,OAAO,GAAG
|
|
1
|
+
{"version":3,"file":"default_multi-file-action-generator-with-requester.js","sourceRoot":"","sources":["../../../../src/seeding/data/system-prompts/default_multi-file-action-generator-with-requester.ts"],"names":[],"mappings":";;;AAAa,QAAA,IAAI,GAAG,0DAA0D,CAAC;AAClE,QAAA,OAAO,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmMtB,CAAC"}
|