repoburg 1.0.37 → 1.0.39
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/seeding/data/system-prompts/packup.d.ts +2 -0
- package/backend/dist/seeding/data/system-prompts/packup.js +37 -0
- package/backend/dist/seeding/data/system-prompts/packup.js.map +1 -0
- package/backend/dist/system-prompts/system-prompts.controller.d.ts +3 -0
- package/backend/dist/system-prompts/system-prompts.controller.js +12 -0
- package/backend/dist/system-prompts/system-prompts.controller.js.map +1 -1
- package/backend/dist/system-prompts/system-prompts.module.js +2 -1
- package/backend/dist/system-prompts/system-prompts.module.js.map +1 -1
- package/backend/dist/system-prompts/system-prompts.service.d.ts +4 -1
- package/backend/dist/system-prompts/system-prompts.service.js +11 -2
- package/backend/dist/system-prompts/system-prompts.service.js.map +1 -1
- package/backend/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export declare const name = "Packup Command";
|
|
2
|
+
export declare const content = "\nSystem Prompt for \u201Cpackup\u201D Command \nPurpose: Hand-off everything the next session must know\u2014nothing more, nothing less.\n\n1. Response Rules \n\n```\n\u00A7ACTION_ITEM_START\u00A7\n\u00A6FileAction\u00A6 final\n\u00A6plain\u00A6 <your concise multiline plain-response content line1>\n<your concise multiline plain-response content line2>\n<your concise multiline plain-response content line3>\n\u00A7ACTION_ITEM_END\u00A7\n```\n\n2. Content of Each Heading \n 1. Session Overview \n - One concise paragraph capturing the main goals, approaches tried, key decisions, and current status. \n - Mention important libraries, frameworks, design patterns, or algorithms discussed. \n 2. User Corrections \n - Bullet-point every time the user altered, rejected, or refined the assistant\u2019s output. \n - For each bullet: \n - Start with \u201COriginal:\u201D and describe the assistant\u2019s initial idea in a phrase. \n - Follow with \u201CCorrection:\u201D and quote or paraphrase the user\u2019s guidance so future sessions avoid repeating the mistake. \n 3. Files Touched \n - List only file names or paths that were created, inspected, or modified. \n - One file per line, no extra commentary, no code content.\n\n3. Brevity & Precision \n - Keep the whole summary under 300 words. \n - Use clear, professional language; avoid repetition and fluff.\n";
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.content = exports.name = void 0;
|
|
4
|
+
exports.name = 'Packup Command';
|
|
5
|
+
exports.content = `
|
|
6
|
+
System Prompt for “packup” Command
|
|
7
|
+
Purpose: Hand-off everything the next session must know—nothing more, nothing less.
|
|
8
|
+
|
|
9
|
+
1. Response Rules
|
|
10
|
+
|
|
11
|
+
\`\`\`
|
|
12
|
+
§ACTION_ITEM_START§
|
|
13
|
+
¦FileAction¦ final
|
|
14
|
+
¦plain¦ <your concise multiline plain-response content line1>
|
|
15
|
+
<your concise multiline plain-response content line2>
|
|
16
|
+
<your concise multiline plain-response content line3>
|
|
17
|
+
§ACTION_ITEM_END§
|
|
18
|
+
\`\`\`
|
|
19
|
+
|
|
20
|
+
2. Content of Each Heading
|
|
21
|
+
1. Session Overview
|
|
22
|
+
- One concise paragraph capturing the main goals, approaches tried, key decisions, and current status.
|
|
23
|
+
- Mention important libraries, frameworks, design patterns, or algorithms discussed.
|
|
24
|
+
2. User Corrections
|
|
25
|
+
- Bullet-point every time the user altered, rejected, or refined the assistant’s output.
|
|
26
|
+
- For each bullet:
|
|
27
|
+
- Start with “Original:” and describe the assistant’s initial idea in a phrase.
|
|
28
|
+
- Follow with “Correction:” and quote or paraphrase the user’s guidance so future sessions avoid repeating the mistake.
|
|
29
|
+
3. Files Touched
|
|
30
|
+
- List only file names or paths that were created, inspected, or modified.
|
|
31
|
+
- One file per line, no extra commentary, no code content.
|
|
32
|
+
|
|
33
|
+
3. Brevity & Precision
|
|
34
|
+
- Keep the whole summary under 300 words.
|
|
35
|
+
- Use clear, professional language; avoid repetition and fluff.
|
|
36
|
+
`;
|
|
37
|
+
//# sourceMappingURL=packup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"packup.js","sourceRoot":"","sources":["../../../../src/seeding/data/system-prompts/packup.ts"],"names":[],"mappings":";;;AAAa,QAAA,IAAI,GAAG,gBAAgB,CAAC;AACxB,QAAA,OAAO,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+BtB,CAAC"}
|
|
@@ -9,5 +9,8 @@ export declare class SystemPromptsController {
|
|
|
9
9
|
findOne(id: string): Promise<SystemPrompt>;
|
|
10
10
|
update(id: string, updateSystemPromptDto: UpdateSystemPromptDto): Promise<SystemPrompt>;
|
|
11
11
|
setDefault(id: string): Promise<SystemPrompt>;
|
|
12
|
+
pushToStudio(id: string): Promise<{
|
|
13
|
+
success: boolean;
|
|
14
|
+
}>;
|
|
12
15
|
remove(id: string): Promise<void>;
|
|
13
16
|
}
|
|
@@ -35,6 +35,10 @@ let SystemPromptsController = class SystemPromptsController {
|
|
|
35
35
|
async setDefault(id) {
|
|
36
36
|
return this.systemPromptsService.setDefault(id);
|
|
37
37
|
}
|
|
38
|
+
async pushToStudio(id) {
|
|
39
|
+
await this.systemPromptsService.pushToStudio(id);
|
|
40
|
+
return { success: true };
|
|
41
|
+
}
|
|
38
42
|
async remove(id) {
|
|
39
43
|
return this.systemPromptsService.remove(id);
|
|
40
44
|
}
|
|
@@ -76,6 +80,14 @@ __decorate([
|
|
|
76
80
|
__metadata("design:paramtypes", [String]),
|
|
77
81
|
__metadata("design:returntype", Promise)
|
|
78
82
|
], SystemPromptsController.prototype, "setDefault", null);
|
|
83
|
+
__decorate([
|
|
84
|
+
(0, common_1.Post)(':id/push-to-studio'),
|
|
85
|
+
(0, common_1.HttpCode)(common_1.HttpStatus.OK),
|
|
86
|
+
__param(0, (0, common_1.Param)('id', common_1.ParseUUIDPipe)),
|
|
87
|
+
__metadata("design:type", Function),
|
|
88
|
+
__metadata("design:paramtypes", [String]),
|
|
89
|
+
__metadata("design:returntype", Promise)
|
|
90
|
+
], SystemPromptsController.prototype, "pushToStudio", null);
|
|
79
91
|
__decorate([
|
|
80
92
|
(0, common_1.Delete)(':id'),
|
|
81
93
|
(0, common_1.HttpCode)(common_1.HttpStatus.NO_CONTENT),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"system-prompts.controller.js","sourceRoot":"","sources":["../../src/system-prompts/system-prompts.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAWwB;AACxB,qEAAgE;AAChE,+DAGiC;AAI1B,IAAM,uBAAuB,GAA7B,MAAM,uBAAuB;IAClC,YAA6B,oBAA0C;QAA1C,yBAAoB,GAApB,oBAAoB,CAAsB;IAAG,CAAC;IAGrE,AAAN,KAAK,CAAC,MAAM,CACF,qBAA4C;QAEpD,OAAO,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC;IACjE,CAAC;IAGK,AAAN,KAAK,CAAC,OAAO;QACX,OAAO,IAAI,CAAC,oBAAoB,CAAC,OAAO,EAAE,CAAC;IAC7C,CAAC;IAGK,AAAN,KAAK,CAAC,OAAO,CAA6B,EAAU;QAClD,OAAO,IAAI,CAAC,oBAAoB,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;IAC/C,CAAC;IAGK,AAAN,KAAK,CAAC,MAAM,CACkB,EAAU,EAC9B,qBAA4C;QAEpD,OAAO,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,EAAE,EAAE,qBAAqB,CAAC,CAAC;IACrE,CAAC;IAIK,AAAN,KAAK,CAAC,UAAU,CACc,EAAU;QAEtC,OAAO,IAAI,CAAC,oBAAoB,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC;IAClD,CAAC;IAIK,AAAN,KAAK,CAAC,MAAM,CAA6B,EAAU;QACjD,OAAO,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;IAC9C,CAAC;CACF,CAAA;
|
|
1
|
+
{"version":3,"file":"system-prompts.controller.js","sourceRoot":"","sources":["../../src/system-prompts/system-prompts.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAWwB;AACxB,qEAAgE;AAChE,+DAGiC;AAI1B,IAAM,uBAAuB,GAA7B,MAAM,uBAAuB;IAClC,YAA6B,oBAA0C;QAA1C,yBAAoB,GAApB,oBAAoB,CAAsB;IAAG,CAAC;IAGrE,AAAN,KAAK,CAAC,MAAM,CACF,qBAA4C;QAEpD,OAAO,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC;IACjE,CAAC;IAGK,AAAN,KAAK,CAAC,OAAO;QACX,OAAO,IAAI,CAAC,oBAAoB,CAAC,OAAO,EAAE,CAAC;IAC7C,CAAC;IAGK,AAAN,KAAK,CAAC,OAAO,CAA6B,EAAU;QAClD,OAAO,IAAI,CAAC,oBAAoB,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;IAC/C,CAAC;IAGK,AAAN,KAAK,CAAC,MAAM,CACkB,EAAU,EAC9B,qBAA4C;QAEpD,OAAO,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,EAAE,EAAE,qBAAqB,CAAC,CAAC;IACrE,CAAC;IAIK,AAAN,KAAK,CAAC,UAAU,CACc,EAAU;QAEtC,OAAO,IAAI,CAAC,oBAAoB,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC;IAClD,CAAC;IAIK,AAAN,KAAK,CAAC,YAAY,CACY,EAAU;QAEtC,MAAM,IAAI,CAAC,oBAAoB,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC;QACjD,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;IAC3B,CAAC;IAIK,AAAN,KAAK,CAAC,MAAM,CAA6B,EAAU;QACjD,OAAO,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;IAC9C,CAAC;CACF,CAAA;AAlDY,0DAAuB;AAI5B;IADL,IAAA,aAAI,GAAE;IAEJ,WAAA,IAAA,aAAI,GAAE,CAAA;;qCAAwB,yCAAqB;;qDAGrD;AAGK;IADL,IAAA,YAAG,GAAE;;;;sDAGL;AAGK;IADL,IAAA,YAAG,EAAC,KAAK,CAAC;IACI,WAAA,IAAA,cAAK,EAAC,IAAI,EAAE,sBAAa,CAAC,CAAA;;;;sDAExC;AAGK;IADL,IAAA,YAAG,EAAC,KAAK,CAAC;IAER,WAAA,IAAA,cAAK,EAAC,IAAI,EAAE,sBAAa,CAAC,CAAA;IAC1B,WAAA,IAAA,aAAI,GAAE,CAAA;;6CAAwB,yCAAqB;;qDAGrD;AAIK;IAFL,IAAA,aAAI,EAAC,iBAAiB,CAAC;IACvB,IAAA,iBAAQ,EAAC,mBAAU,CAAC,EAAE,CAAC;IAErB,WAAA,IAAA,cAAK,EAAC,IAAI,EAAE,sBAAa,CAAC,CAAA;;;;yDAG5B;AAIK;IAFL,IAAA,aAAI,EAAC,oBAAoB,CAAC;IAC1B,IAAA,iBAAQ,EAAC,mBAAU,CAAC,EAAE,CAAC;IAErB,WAAA,IAAA,cAAK,EAAC,IAAI,EAAE,sBAAa,CAAC,CAAA;;;;2DAI5B;AAIK;IAFL,IAAA,eAAM,EAAC,KAAK,CAAC;IACb,IAAA,iBAAQ,EAAC,mBAAU,CAAC,UAAU,CAAC;IAClB,WAAA,IAAA,cAAK,EAAC,IAAI,EAAE,sBAAa,CAAC,CAAA;;;;qDAEvC;kCAjDU,uBAAuB;IADnC,IAAA,mBAAU,EAAC,gBAAgB,CAAC;qCAEwB,6CAAoB;GAD5D,uBAAuB,CAkDnC"}
|
|
@@ -12,12 +12,13 @@ const typeorm_1 = require("@nestjs/typeorm");
|
|
|
12
12
|
const core_entities_1 = require("../core-entities");
|
|
13
13
|
const system_prompts_service_1 = require("./system-prompts.service");
|
|
14
14
|
const system_prompts_controller_1 = require("./system-prompts.controller");
|
|
15
|
+
const events_module_1 = require("../events/events.module");
|
|
15
16
|
let SystemPromptsModule = class SystemPromptsModule {
|
|
16
17
|
};
|
|
17
18
|
exports.SystemPromptsModule = SystemPromptsModule;
|
|
18
19
|
exports.SystemPromptsModule = SystemPromptsModule = __decorate([
|
|
19
20
|
(0, common_1.Module)({
|
|
20
|
-
imports: [typeorm_1.TypeOrmModule.forFeature([core_entities_1.SystemPrompt])],
|
|
21
|
+
imports: [typeorm_1.TypeOrmModule.forFeature([core_entities_1.SystemPrompt]), events_module_1.EventsModule],
|
|
21
22
|
controllers: [system_prompts_controller_1.SystemPromptsController],
|
|
22
23
|
providers: [system_prompts_service_1.SystemPromptsService],
|
|
23
24
|
exports: [system_prompts_service_1.SystemPromptsService],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"system-prompts.module.js","sourceRoot":"","sources":["../../src/system-prompts/system-prompts.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,2CAAwC;AACxC,6CAAgD;AAChD,oDAAgD;AAChD,qEAAgE;AAChE,2EAAsE;
|
|
1
|
+
{"version":3,"file":"system-prompts.module.js","sourceRoot":"","sources":["../../src/system-prompts/system-prompts.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,2CAAwC;AACxC,6CAAgD;AAChD,oDAAgD;AAChD,qEAAgE;AAChE,2EAAsE;AACtE,2DAAuD;AAQhD,IAAM,mBAAmB,GAAzB,MAAM,mBAAmB;CAAG,CAAA;AAAtB,kDAAmB;8BAAnB,mBAAmB;IAN/B,IAAA,eAAM,EAAC;QACN,OAAO,EAAE,CAAC,uBAAa,CAAC,UAAU,CAAC,CAAC,4BAAY,CAAC,CAAC,EAAE,4BAAY,CAAC;QACjE,WAAW,EAAE,CAAC,mDAAuB,CAAC;QACtC,SAAS,EAAE,CAAC,6CAAoB,CAAC;QACjC,OAAO,EAAE,CAAC,6CAAoB,CAAC;KAChC,CAAC;GACW,mBAAmB,CAAG"}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { Repository, DataSource } from 'typeorm';
|
|
2
2
|
import { SystemPrompt } from '../core-entities';
|
|
3
3
|
import { CreateSystemPromptDto, UpdateSystemPromptDto } from './dto/system-prompt.dto';
|
|
4
|
+
import { EventsGateway } from '../events/events.gateway';
|
|
4
5
|
export declare class SystemPromptsService {
|
|
5
6
|
private systemPromptsRepository;
|
|
6
7
|
private dataSource;
|
|
7
|
-
|
|
8
|
+
private readonly eventsGateway;
|
|
9
|
+
constructor(systemPromptsRepository: Repository<SystemPrompt>, dataSource: DataSource, eventsGateway: EventsGateway);
|
|
8
10
|
create(createSystemPromptDto: CreateSystemPromptDto): Promise<SystemPrompt>;
|
|
9
11
|
findAll(): Promise<SystemPrompt[]>;
|
|
10
12
|
findOne(id: string): Promise<SystemPrompt>;
|
|
@@ -12,4 +14,5 @@ export declare class SystemPromptsService {
|
|
|
12
14
|
update(id: string, updateSystemPromptDto: UpdateSystemPromptDto): Promise<SystemPrompt>;
|
|
13
15
|
remove(id: string): Promise<void>;
|
|
14
16
|
setDefault(id: string): Promise<SystemPrompt>;
|
|
17
|
+
pushToStudio(id: string): Promise<void>;
|
|
15
18
|
}
|
|
@@ -17,10 +17,12 @@ const common_1 = require("@nestjs/common");
|
|
|
17
17
|
const typeorm_1 = require("@nestjs/typeorm");
|
|
18
18
|
const typeorm_2 = require("typeorm");
|
|
19
19
|
const core_entities_1 = require("../core-entities");
|
|
20
|
+
const events_gateway_1 = require("../events/events.gateway");
|
|
20
21
|
let SystemPromptsService = class SystemPromptsService {
|
|
21
|
-
constructor(systemPromptsRepository, dataSource) {
|
|
22
|
+
constructor(systemPromptsRepository, dataSource, eventsGateway) {
|
|
22
23
|
this.systemPromptsRepository = systemPromptsRepository;
|
|
23
24
|
this.dataSource = dataSource;
|
|
25
|
+
this.eventsGateway = eventsGateway;
|
|
24
26
|
}
|
|
25
27
|
async create(createSystemPromptDto) {
|
|
26
28
|
const prompt = this.systemPromptsRepository.create(createSystemPromptDto);
|
|
@@ -67,12 +69,19 @@ let SystemPromptsService = class SystemPromptsService {
|
|
|
67
69
|
});
|
|
68
70
|
return newDefaultPrompt;
|
|
69
71
|
}
|
|
72
|
+
async pushToStudio(id) {
|
|
73
|
+
const prompt = await this.findOne(id);
|
|
74
|
+
this.eventsGateway.sendToAll('system-prompt-update', {
|
|
75
|
+
content: prompt.prompt_content,
|
|
76
|
+
});
|
|
77
|
+
}
|
|
70
78
|
};
|
|
71
79
|
exports.SystemPromptsService = SystemPromptsService;
|
|
72
80
|
exports.SystemPromptsService = SystemPromptsService = __decorate([
|
|
73
81
|
(0, common_1.Injectable)(),
|
|
74
82
|
__param(0, (0, typeorm_1.InjectRepository)(core_entities_1.SystemPrompt)),
|
|
75
83
|
__metadata("design:paramtypes", [typeorm_2.Repository,
|
|
76
|
-
typeorm_2.DataSource
|
|
84
|
+
typeorm_2.DataSource,
|
|
85
|
+
events_gateway_1.EventsGateway])
|
|
77
86
|
], SystemPromptsService);
|
|
78
87
|
//# sourceMappingURL=system-prompts.service.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"system-prompts.service.js","sourceRoot":"","sources":["../../src/system-prompts/system-prompts.service.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAA+D;AAC/D,6CAAmD;AACnD,qCAAiD;AACjD,oDAAgD;
|
|
1
|
+
{"version":3,"file":"system-prompts.service.js","sourceRoot":"","sources":["../../src/system-prompts/system-prompts.service.ts"],"names":[],"mappings":"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"}
|