@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 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 Vector issue ${issueKey}: ${issueTitle}.`,
3040
- `The repository is already checked out at ${workspacePath}.`,
3041
- "Inspect the codebase, identify the relevant implementation area, and start the work.",
3042
- "In your first reply, summarize your plan and the first concrete step you are taking."
3043
- ].join("\n\n");
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) {