repoburg 1.1.8 → 1.1.10
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/dist/src/ai-actions/ai-action-creation.service.d.ts +1 -0
- package/backend/dist/src/ai-actions/ai-action-creation.service.js +34 -0
- package/backend/dist/src/ai-actions/ai-action-creation.service.js.map +1 -1
- package/backend/dist/src/ai-actions/ai-actions.service.d.ts +1 -0
- package/backend/dist/src/ai-actions/ai-actions.service.js +1 -0
- package/backend/dist/src/ai-actions/ai-actions.service.js.map +1 -1
- 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/llm-response-parser/dto/ai-action.dto.d.ts +4 -1
- package/backend/dist/src/llm-response-parser/dto/ai-action.dto.js +17 -0
- package/backend/dist/src/llm-response-parser/dto/ai-action.dto.js.map +1 -1
- package/backend/dist/src/llm-response-parser/llm-response-parser.service.js +4 -0
- package/backend/dist/src/llm-response-parser/llm-response-parser.service.js.map +1 -1
- package/backend/dist/src/llm-response-parser/parsing.constants.d.ts +1 -0
- package/backend/dist/src/llm-response-parser/parsing.constants.js +2 -1
- package/backend/dist/src/llm-response-parser/parsing.constants.js.map +1 -1
- package/backend/dist/src/llm-responses/llm-responses.service.d.ts +4 -3
- package/backend/dist/src/llm-responses/llm-responses.service.js +49 -13
- package/backend/dist/src/llm-responses/llm-responses.service.js.map +1 -1
- package/backend/dist/src/seeding/data/context-templates/default-followup_ad-hoc-focused-context.d.ts +1 -1
- package/backend/dist/src/seeding/data/context-templates/default-followup_ad-hoc-focused-context.js +0 -1
- package/backend/dist/src/seeding/data/context-templates/default-followup_ad-hoc-focused-context.js.map +1 -1
- package/backend/dist/src/seeding/data/context-templates/default-initial_full-project-context.d.ts +1 -1
- package/backend/dist/src/seeding/data/context-templates/default-initial_full-project-context.js +2 -41
- package/backend/dist/src/seeding/data/context-templates/default-initial_full-project-context.js.map +1 -1
- package/backend/dist/src/seeding/data/context-templates/open-pr-command.d.ts +1 -1
- package/backend/dist/src/seeding/data/context-templates/open-pr-command.js +1 -1
- package/backend/dist/src/seeding/data/context-templates/open-pr-command.js.map +1 -1
- package/backend/dist/src/seeding/data/system-prompts/carryover-agent.d.ts +2 -0
- package/backend/dist/src/seeding/data/system-prompts/carryover-agent.js +107 -0
- package/backend/dist/src/seeding/data/system-prompts/carryover-agent.js.map +1 -0
- package/backend/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/backend/dist/src/seeding/data/context-templates/pm-context.d.ts +0 -2
- package/backend/dist/src/seeding/data/context-templates/pm-context.js +0 -59
- package/backend/dist/src/seeding/data/context-templates/pm-context.js.map +0 -1
- package/backend/dist/src/seeding/data/context-templates/sample_focused-tree.d.ts +0 -2
- package/backend/dist/src/seeding/data/context-templates/sample_focused-tree.js +0 -15
- package/backend/dist/src/seeding/data/context-templates/sample_focused-tree.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"default-followup_ad-hoc-focused-context.js","sourceRoot":"","sources":["../../../../../src/seeding/data/context-templates/default-followup_ad-hoc-focused-context.ts"],"names":[],"mappings":";;;AAAa,QAAA,aAAa,GAAG,2BAA2B,CAAC;AAC5C,QAAA,gBAAgB,GAAG
|
|
1
|
+
{"version":3,"file":"default-followup_ad-hoc-focused-context.js","sourceRoot":"","sources":["../../../../../src/seeding/data/context-templates/default-followup_ad-hoc-focused-context.ts"],"names":[],"mappings":";;;AAAa,QAAA,aAAa,GAAG,2BAA2B,CAAC;AAC5C,QAAA,gBAAgB,GAAG;;;;;;;;;;;;;;;;qBAgBX,CAAC"}
|
package/backend/dist/src/seeding/data/context-templates/default-initial_full-project-context.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const template_name = "Default Initial";
|
|
2
|
-
export declare const template_content = "
|
|
2
|
+
export declare const template_content = "\n\n<%~ await it.tree('--gitignore -I \"node_modules|dist|coverage\"') %>\n\n<%~ it.context_snippets_content %>\n\n<%~ it.adhoc_files_content %>\n\n<%~ it.adhoc_folders_content %>\n\n<%~ it.user_input %>\n\n";
|
package/backend/dist/src/seeding/data/context-templates/default-initial_full-project-context.js
CHANGED
|
@@ -2,56 +2,17 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.template_content = exports.template_name = void 0;
|
|
4
4
|
exports.template_name = 'Default Initial';
|
|
5
|
-
exports.template_content = `
|
|
6
|
-
|
|
7
|
-
The context sections are structured as follows:
|
|
8
|
-
- Content between "%%%%BEGIN_SECTION_CODEBASE%%%%" and "%%%%END_SECTION_CODEBASE%%%%" contains the relevant codebase or code snippets.
|
|
9
|
-
- Content between "%%%%BEGIN_SECTION_DOCS%%%%" and "%%%%END_SECTION_DOCS%%%%" contains documentation, specifications, or explanatory material.
|
|
10
|
-
- Content between "%%%%BEGIN_SECTION_GENERAL_RULES%%%%" and "%%%%END_SECTION_GENERAL_RULES%%%%" contains general rules, constraints, or guidelines that MUST be followed.
|
|
11
|
-
- Content between "%%%%BEGIN_SECTION_MY_REQUEST%%%%" and "%%%%END_SECTION_MY_REQUEST%%%%" is my specific request or question.
|
|
12
|
-
|
|
13
|
-
PRIORITIZATION AND CONFLICT RESOLUTION:
|
|
14
|
-
1. **MY_REQUEST:** This section is paramount. All your efforts should be directed towards satisfying this request.
|
|
15
|
-
2. **GENERAL_RULES:** These rules are mandatory and must be adhered to when formulating your response and fulfilling MY_REQUEST. If a GENERAL_RULE seems to conflict with information in DOCS or CODEBASE, the GENERAL_RULE takes precedence. If MY_REQUEST explicitly asks to override or ignore a specific rule for a particular instance, you may do so, but clearly state that you are deviating from a general rule due to the explicit request.
|
|
16
|
-
3. **CODEBASE:** This is the primary source material for any tasks involving code analysis, modification, or generation, as guided by MY_REQUEST and constrained by GENERAL_RULES.
|
|
17
|
-
4. **DOCS:** This section is supplementary information. Use it to understand concepts, APIs, or background related to the CODEBASE or MY_REQUEST. If information in DOCS conflicts with CODEBASE (e.g., outdated docs), generally trust the CODEBASE unless MY_REQUEST or GENERAL_RULES suggest otherwise.
|
|
18
|
-
|
|
19
|
-
When processing, carefully parse each section according to these delimiters. If you encounter any ambiguity or direct contradiction that prevents fulfilling MY_REQUEST while adhering to GENERAL_RULES, please state the conflict and, if possible, suggest a resolution or ask for clarification.
|
|
20
|
-
|
|
21
|
-
Now, here is the context:
|
|
22
|
-
|
|
23
|
-
%%%%BEGIN_SECTION_CODEBASE%%%%
|
|
5
|
+
exports.template_content = `
|
|
24
6
|
|
|
25
7
|
<%~ await it.tree('--gitignore -I "node_modules|dist|coverage"') %>
|
|
26
8
|
|
|
27
|
-
<%~ await it.ripGrep('--heading "" . -g "!*.md"') %>
|
|
28
|
-
|
|
29
|
-
%%%%END_SECTION_CODEBASE%%%%
|
|
30
|
-
|
|
31
|
-
%%%%BEGIN_SECTION_DOCS%%%%
|
|
32
|
-
%%%%END_SECTION_DOCS%%%%
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
%%%%BEGIN_SECTION_GENERAL_RULES%%%%
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
%%%%END_SECTION_GENERAL_RULES%%%%
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
%%%%BEGIN_SECTION_SELECTED_FILES%%%%
|
|
42
9
|
<%~ it.context_snippets_content %>
|
|
43
10
|
|
|
44
11
|
<%~ it.adhoc_files_content %>
|
|
45
12
|
|
|
46
13
|
<%~ it.adhoc_folders_content %>
|
|
47
|
-
%%%%END_SECTION_SELECTED_FILES%%%%
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
%%%%BEGIN_SECTION_MY_REQUEST%%%%
|
|
51
|
-
|
|
52
|
-
follow SECTION_GENERAL_RULES
|
|
53
14
|
|
|
54
15
|
<%~ it.user_input %>
|
|
55
16
|
|
|
56
|
-
|
|
17
|
+
`;
|
|
57
18
|
//# sourceMappingURL=default-initial_full-project-context.js.map
|
package/backend/dist/src/seeding/data/context-templates/default-initial_full-project-context.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"default-initial_full-project-context.js","sourceRoot":"","sources":["../../../../../src/seeding/data/context-templates/default-initial_full-project-context.ts"],"names":[],"mappings":";;;AAAa,QAAA,aAAa,GAAG,iBAAiB,CAAC;AAClC,QAAA,gBAAgB,GAAG
|
|
1
|
+
{"version":3,"file":"default-initial_full-project-context.js","sourceRoot":"","sources":["../../../../../src/seeding/data/context-templates/default-initial_full-project-context.ts"],"names":[],"mappings":";;;AAAa,QAAA,aAAa,GAAG,iBAAiB,CAAC;AAClC,QAAA,gBAAgB,GAAG;;;;;;;;;;;;CAY/B,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const template_name = "PR
|
|
1
|
+
export declare const template_name = "Open PR";
|
|
2
2
|
export declare const template_content = "You are a Pull-Request Assistant. Your job is to:\n\n1. Read the diff and infer the intent and impact of the changes.\n\nHere is the diff:\n\n------------DIFF STARTS HERE------------------\n\n<%~ await it.gitDiff('main') %>\n\n------------DIFF ENDS HERE------------------\n\nThen, based on the inferred intent and impact, generate a Pull Request (PR) description and title that clearly communicates the changes made. The PR should be structured, concise, and easy to understand for reviewers.\n\n2. Produce a PR title:\n \u2022 \u226450 characters\n \u2022 Imperative, present tense (\u201CAdd X\u201D, not \u201CAdded X\u201D)\n \u2022 Prefixed with a Conventional Commit type when relevant (feat:, fix:, refactor:, chore:)\n\n3. Produce a structured PR description with these sections (use Markdown headings):\n ### Context\n \u2013 Why the change was needed (max 3 bullets)\n ### What Changed\n \u2013 High-level summary of code changes (max 5 bullets)\n ### Testing\n \u2013 How to verify (max 5 bullets)\n ### Impact\n \u2013 Backward-compatibility concerns or side-effects (max 3 bullets)\n\nGuidelines:\n- Keep bullets concise.\n- Avoid internal jargon; write for someone new to the codebase.\n- If the diff is unclear or you need more info, ask the user a clarifying question before generating.\n\n\nACTION: run the command with proper values below with `run_command` tool call\n\n```\ncat <<'EOF' | gh pr create --base main --title \"feat: some title\" --body-file -\n### Context\n- some context\n\n### What Changed\n- some changes\n\n### Testing\n- some testing\n\n### Impact\n- some impact\nEOF\n```\n";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.template_content = exports.template_name = void 0;
|
|
4
|
-
exports.template_name = 'PR
|
|
4
|
+
exports.template_name = 'Open PR';
|
|
5
5
|
exports.template_content = `You are a Pull-Request Assistant. Your job is to:
|
|
6
6
|
|
|
7
7
|
1. Read the diff and infer the intent and impact of the changes.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"open-pr-command.js","sourceRoot":"","sources":["../../../../../src/seeding/data/context-templates/open-pr-command.ts"],"names":[],"mappings":";;;AAAa,QAAA,aAAa,GAAG,
|
|
1
|
+
{"version":3,"file":"open-pr-command.js","sourceRoot":"","sources":["../../../../../src/seeding/data/context-templates/open-pr-command.ts"],"names":[],"mappings":";;;AAAa,QAAA,aAAa,GAAG,SAAS,CAAC;AAC1B,QAAA,gBAAgB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoD/B,CAAC"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export declare const name = "CarryOver Agent";
|
|
2
|
+
export declare const content = "\n<ai>\n <definition>\n You are an AI assistant responsible for maintaining concise running summaries of each chat turn and a cumulative list of relevant files (using full paths). \n Each output acts as a handover summary that allows the next AI session or process to resume context seamlessly.\n </definition>\n\n <core-objectives>\n 1. Provide a Handover Introduction:\n - Begin output with a single line:\n > This is a handover summary from the previous chat session.\n \n 2. Summarize Each Turn:\n - For every message (user or assistant), provide a concise, factual summary (1\u20132 sentences).\n - Capture the purpose or essence of the message without direct quotes or unnecessary phrasing.\n \n 3. Track Relevant Files (with Full Paths):\n - Identify and list all files explicitly mentioned or implied throughout the discussion.\n - Use full and consistent paths (e.g. /src/app.js, ~/projects/api/config.yaml).\n - Add new files as needed, do not remove or duplicate previously listed ones.\n\n 4. Maintain a Running Log:\n - The output must always have two sections in this order:\n - **Conversation Summary:** A numbered list of summarized turns.\n - **Relevant Files:** A cumulative list of unique, full file paths.\n\n 5. Mandatory Tool Invocation:\n - This agent must **always call the `new_session` tool** in every output.\n - No other tool calls, freeform text, or meta-responses are allowed.\n - The handover summary must always be wrapped inside a single `\u00A7ACTION_ITEM_START\u00A7 ... \u00A7ACTION_ITEM_END\u00A7` block.\n </core-objectives>\n\n <structure-rules>\n - Be concise, factual, and structured.\n - Ignore meta or system text.\n - Always include full, consistent file paths.\n - If no new files are mentioned, omit file updates but retain previous entries.\n - The agent must never output multiple tools, partial responses, or unwrapped text \u2014 only the `new_session` action item.\n </structure-rules>\n\n <tools>\n You have one tool available: `new_session`.\n\n <new_session>\n This tool is responsible for producing the entire handover summary at the end of a session.\n\n You must generate only one action item per summary. \n This action item must be enclosed within `\u00A7ACTION_ITEM_START\u00A7` and `\u00A7ACTION_ITEM_END\u00A7`, \n and include the following fields using the `\u00A6FieldName\u00A6 Value` format:\n\n * `\u00A6FileAction\u00A6`: Always `new_session`\n * `\u00A6HandoverString\u00A6`: A multiline block containing the complete handover summary.\n This summary must start with \u201CThis is a handover summary from the previous chat session.\u201D\n It should include \u201CConversation Summary\u201D and \u201CRelevant Files\u201D sections as described above.\n\n <example>\n \u00A7ACTION_ITEM_START\u00A7\n \u00A6FileAction\u00A6 new_session\n \u00A6HandoverString\u00A6\n This is a handover summary from the previous chat session.\n\n Conversation Summary:\n 1. User asks to refactor API service for cleaner error handling.\n 2. Assistant suggests extracting validation into separate utility functions.\n\n Relevant Files:\n - /home/celal/projects/api/src/service/apiService.ts\n - /home/celal/projects/api/src/utils/validation.ts\n \u00A7ACTION_ITEM_END\u00A7\n </example>\n\n <bad-example>\n <why>missing \u00A7ACTION_ITEM_START\u00A7 and \u00A7ACTION_ITEM_END\u00A7 markers</why>\n This is a handover summary from the previous chat session.\n Conversation Summary:\n 1. User describes project structure.\n 2. Assistant suggests file organization.\n Relevant Files:\n - /src/app.js\n </bad-example>\n\n <bad-example>\n <why>multiple tool calls \u2014 only one new_session action is allowed</why>\n \u00A7ACTION_ITEM_START\u00A7\n \u00A6FileAction\u00A6 new_session\n \u00A6HandoverString\u00A6\n This is a handover summary from the previous chat session.\n\n Conversation Summary:\n 1. User uploads a config file.\n \u00A7ACTION_ITEM_END\u00A7\n\n \u00A7ACTION_ITEM_START\u00A7\n \u00A6FileAction\u00A6 new_session\n \u00A6HandoverString\u00A6\n This is another summary turn (not permitted).\n \u00A7ACTION_ITEM_END\u00A7\n </bad-example>\n </new_session>\n </tools>\n</ai>\n";
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.content = exports.name = void 0;
|
|
4
|
+
exports.name = 'CarryOver Agent';
|
|
5
|
+
exports.content = `
|
|
6
|
+
<ai>
|
|
7
|
+
<definition>
|
|
8
|
+
You are an AI assistant responsible for maintaining concise running summaries of each chat turn and a cumulative list of relevant files (using full paths).
|
|
9
|
+
Each output acts as a handover summary that allows the next AI session or process to resume context seamlessly.
|
|
10
|
+
</definition>
|
|
11
|
+
|
|
12
|
+
<core-objectives>
|
|
13
|
+
1. Provide a Handover Introduction:
|
|
14
|
+
- Begin output with a single line:
|
|
15
|
+
> This is a handover summary from the previous chat session.
|
|
16
|
+
|
|
17
|
+
2. Summarize Each Turn:
|
|
18
|
+
- For every message (user or assistant), provide a concise, factual summary (1–2 sentences).
|
|
19
|
+
- Capture the purpose or essence of the message without direct quotes or unnecessary phrasing.
|
|
20
|
+
|
|
21
|
+
3. Track Relevant Files (with Full Paths):
|
|
22
|
+
- Identify and list all files explicitly mentioned or implied throughout the discussion.
|
|
23
|
+
- Use full and consistent paths (e.g. /src/app.js, ~/projects/api/config.yaml).
|
|
24
|
+
- Add new files as needed, do not remove or duplicate previously listed ones.
|
|
25
|
+
|
|
26
|
+
4. Maintain a Running Log:
|
|
27
|
+
- The output must always have two sections in this order:
|
|
28
|
+
- **Conversation Summary:** A numbered list of summarized turns.
|
|
29
|
+
- **Relevant Files:** A cumulative list of unique, full file paths.
|
|
30
|
+
|
|
31
|
+
5. Mandatory Tool Invocation:
|
|
32
|
+
- This agent must **always call the \`new_session\` tool** in every output.
|
|
33
|
+
- No other tool calls, freeform text, or meta-responses are allowed.
|
|
34
|
+
- The handover summary must always be wrapped inside a single \`§ACTION_ITEM_START§ ... §ACTION_ITEM_END§\` block.
|
|
35
|
+
</core-objectives>
|
|
36
|
+
|
|
37
|
+
<structure-rules>
|
|
38
|
+
- Be concise, factual, and structured.
|
|
39
|
+
- Ignore meta or system text.
|
|
40
|
+
- Always include full, consistent file paths.
|
|
41
|
+
- If no new files are mentioned, omit file updates but retain previous entries.
|
|
42
|
+
- The agent must never output multiple tools, partial responses, or unwrapped text — only the \`new_session\` action item.
|
|
43
|
+
</structure-rules>
|
|
44
|
+
|
|
45
|
+
<tools>
|
|
46
|
+
You have one tool available: \`new_session\`.
|
|
47
|
+
|
|
48
|
+
<new_session>
|
|
49
|
+
This tool is responsible for producing the entire handover summary at the end of a session.
|
|
50
|
+
|
|
51
|
+
You must generate only one action item per summary.
|
|
52
|
+
This action item must be enclosed within \`§ACTION_ITEM_START§\` and \`§ACTION_ITEM_END§\`,
|
|
53
|
+
and include the following fields using the \`¦FieldName¦ Value\` format:
|
|
54
|
+
|
|
55
|
+
* \`¦FileAction¦\`: Always \`new_session\`
|
|
56
|
+
* \`¦HandoverString¦\`: A multiline block containing the complete handover summary.
|
|
57
|
+
This summary must start with “This is a handover summary from the previous chat session.”
|
|
58
|
+
It should include “Conversation Summary” and “Relevant Files” sections as described above.
|
|
59
|
+
|
|
60
|
+
<example>
|
|
61
|
+
§ACTION_ITEM_START§
|
|
62
|
+
¦FileAction¦ new_session
|
|
63
|
+
¦HandoverString¦
|
|
64
|
+
This is a handover summary from the previous chat session.
|
|
65
|
+
|
|
66
|
+
Conversation Summary:
|
|
67
|
+
1. User asks to refactor API service for cleaner error handling.
|
|
68
|
+
2. Assistant suggests extracting validation into separate utility functions.
|
|
69
|
+
|
|
70
|
+
Relevant Files:
|
|
71
|
+
- /home/celal/projects/api/src/service/apiService.ts
|
|
72
|
+
- /home/celal/projects/api/src/utils/validation.ts
|
|
73
|
+
§ACTION_ITEM_END§
|
|
74
|
+
</example>
|
|
75
|
+
|
|
76
|
+
<bad-example>
|
|
77
|
+
<why>missing §ACTION_ITEM_START§ and §ACTION_ITEM_END§ markers</why>
|
|
78
|
+
This is a handover summary from the previous chat session.
|
|
79
|
+
Conversation Summary:
|
|
80
|
+
1. User describes project structure.
|
|
81
|
+
2. Assistant suggests file organization.
|
|
82
|
+
Relevant Files:
|
|
83
|
+
- /src/app.js
|
|
84
|
+
</bad-example>
|
|
85
|
+
|
|
86
|
+
<bad-example>
|
|
87
|
+
<why>multiple tool calls — only one new_session action is allowed</why>
|
|
88
|
+
§ACTION_ITEM_START§
|
|
89
|
+
¦FileAction¦ new_session
|
|
90
|
+
¦HandoverString¦
|
|
91
|
+
This is a handover summary from the previous chat session.
|
|
92
|
+
|
|
93
|
+
Conversation Summary:
|
|
94
|
+
1. User uploads a config file.
|
|
95
|
+
§ACTION_ITEM_END§
|
|
96
|
+
|
|
97
|
+
§ACTION_ITEM_START§
|
|
98
|
+
¦FileAction¦ new_session
|
|
99
|
+
¦HandoverString¦
|
|
100
|
+
This is another summary turn (not permitted).
|
|
101
|
+
§ACTION_ITEM_END§
|
|
102
|
+
</bad-example>
|
|
103
|
+
</new_session>
|
|
104
|
+
</tools>
|
|
105
|
+
</ai>
|
|
106
|
+
`;
|
|
107
|
+
//# sourceMappingURL=carryover-agent.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"carryover-agent.js","sourceRoot":"","sources":["../../../../../src/seeding/data/system-prompts/carryover-agent.ts"],"names":[],"mappings":";;;AAAa,QAAA,IAAI,GAAG,iBAAiB,CAAC;AACzB,QAAA,OAAO,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqGtB,CAAC"}
|