@rehpic/vcli 0.1.0-beta.73.1 → 0.1.0-beta.74.1
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/dist/index.js +6 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3036,11 +3036,12 @@ function persistDeviceKey(deviceKey) {
|
|
|
3036
3036
|
}
|
|
3037
3037
|
function buildLaunchPrompt(issueKey, issueTitle, workspacePath) {
|
|
3038
3038
|
return [
|
|
3039
|
-
`You are working on
|
|
3040
|
-
`The repository is
|
|
3041
|
-
"
|
|
3042
|
-
"
|
|
3043
|
-
|
|
3039
|
+
`You are working on issue ${issueKey}: ${issueTitle}`,
|
|
3040
|
+
`The repository is at ${workspacePath}.`,
|
|
3041
|
+
"Do exactly and only what the issue describes \u2014 nothing more, nothing less.",
|
|
3042
|
+
"If anything is unclear or ambiguous, ask clarifying questions before making changes.",
|
|
3043
|
+
'Do not refactor, clean up, or "improve" code that is not part of the issue scope.'
|
|
3044
|
+
].join("\n");
|
|
3044
3045
|
}
|
|
3045
3046
|
function summarizeMessage(message) {
|
|
3046
3047
|
if (!message) {
|