deepcode-ai 1.1.12 → 1.1.13
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 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10335,15 +10335,15 @@ async function solveIssueCommand(issueNumber, options) {
|
|
|
10335
10335
|
});
|
|
10336
10336
|
const secretValues = collectSecretValues(runtime.config);
|
|
10337
10337
|
const prompt = [
|
|
10338
|
-
`
|
|
10338
|
+
`Resolve GitHub issue #${issue.number}: ${issue.title}`,
|
|
10339
10339
|
"",
|
|
10340
10340
|
issue.body ?? "",
|
|
10341
10341
|
"",
|
|
10342
|
-
"
|
|
10343
|
-
"-
|
|
10344
|
-
"-
|
|
10345
|
-
"-
|
|
10346
|
-
"-
|
|
10342
|
+
"Requirements:",
|
|
10343
|
+
"- Inspect the relevant code before making changes.",
|
|
10344
|
+
"- Implement a complete fix.",
|
|
10345
|
+
"- Add or update tests where it makes sense.",
|
|
10346
|
+
"- Run appropriate validations."
|
|
10347
10347
|
].join("\n");
|
|
10348
10348
|
await writeStdoutLine(`Solving issue #${issue.number} on ${branch}`);
|
|
10349
10349
|
await runtime.agent.run({
|