@kody-ade/kody-engine-lite 0.1.86 → 0.1.88
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/bin/cli.js +3 -2
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -154,7 +154,7 @@ var init_definitions = __esm({
|
|
|
154
154
|
name: "taskify",
|
|
155
155
|
type: "agent",
|
|
156
156
|
modelTier: "cheap",
|
|
157
|
-
timeout:
|
|
157
|
+
timeout: 6e5,
|
|
158
158
|
maxRetries: 1,
|
|
159
159
|
outputFile: "task.json"
|
|
160
160
|
},
|
|
@@ -3860,7 +3860,8 @@ async function main() {
|
|
|
3860
3860
|
logger.info(`Working directory: ${projectDir}`);
|
|
3861
3861
|
}
|
|
3862
3862
|
const isPRFix = (input.command === "fix" || input.command === "fix-ci") && !!input.prNumber;
|
|
3863
|
-
|
|
3863
|
+
const skipStateCheck = input.command === "review" || input.command === "resolve" || input.command === "rerun";
|
|
3864
|
+
if (input.issueNumber && !skipStateCheck && !isPRFix) {
|
|
3864
3865
|
const taskAction = resolveForIssue(input.issueNumber, projectDir);
|
|
3865
3866
|
logger.info(`Task action: ${taskAction.action}`);
|
|
3866
3867
|
if (taskAction.action === "already-completed") {
|