@kody-ade/kody-engine 0.4.169 → 0.4.170
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/kody.js
CHANGED
|
@@ -1061,7 +1061,7 @@ var init_loadPriorArt = __esm({
|
|
|
1061
1061
|
// package.json
|
|
1062
1062
|
var package_default = {
|
|
1063
1063
|
name: "@kody-ade/kody-engine",
|
|
1064
|
-
version: "0.4.
|
|
1064
|
+
version: "0.4.170",
|
|
1065
1065
|
description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
1066
1066
|
license: "MIT",
|
|
1067
1067
|
type: "module",
|
|
@@ -9089,7 +9089,6 @@ function humanizeSlug(slug) {
|
|
|
9089
9089
|
|
|
9090
9090
|
// src/scripts/loadLinkedFinding.ts
|
|
9091
9091
|
init_issue();
|
|
9092
|
-
var QA_FINDING_LABEL = /^(severity:p\d|goal:qa|kody:qa-finding)/i;
|
|
9093
9092
|
var FINDING_BODY_MAX_BYTES = 4e3;
|
|
9094
9093
|
function resolveFindingNumber(pr) {
|
|
9095
9094
|
const fromBranch = /^(\d+)-/.exec(pr.headRefName)?.[1];
|
|
@@ -9109,8 +9108,6 @@ var loadLinkedFinding = async (ctx) => {
|
|
|
9109
9108
|
} catch {
|
|
9110
9109
|
return;
|
|
9111
9110
|
}
|
|
9112
|
-
const labels = issue.labels ?? [];
|
|
9113
|
-
if (!labels.some((l) => QA_FINDING_LABEL.test(l))) return;
|
|
9114
9111
|
ctx.data.linkedFinding = `Issue #${issue.number}: ${issue.title}
|
|
9115
9112
|
|
|
9116
9113
|
${truncate2(issue.body, FINDING_BODY_MAX_BYTES)}`;
|
|
@@ -37,12 +37,13 @@ If `browser_navigate` errors out (timeout, DNS, connection refused, navigation a
|
|
|
37
37
|
{{qaAuthBlock}}
|
|
38
38
|
|
|
39
39
|
{{#linkedFinding}}
|
|
40
|
-
#
|
|
40
|
+
# What this PR must deliver
|
|
41
41
|
|
|
42
|
-
This PR is
|
|
42
|
+
This PR is meant to deliver the issue below — a **bug fix** or a **feature**. **Judge your verdict against whether the issue's goal is actually met in the running app — NOT merely whether the diff is internally correct.** Exercise the relevant flow on the preview:
|
|
43
43
|
|
|
44
|
-
- If
|
|
45
|
-
-
|
|
44
|
+
- **If it's a bug** (Steps / Expected / Actual): reproduce the Steps and check the reported **Actual** is gone. If the symptom still reproduces, the verdict is **FAIL** — *even if the code change looks correct and the remaining cause is a separate env/config issue*. "Done" means the user no longer sees the bug, not that the author's narrow change landed.
|
|
45
|
+
- **If it's a feature** (described behavior / acceptance criteria): exercise the new behavior and check it actually works as described. If the described capability is missing, broken, or only partially present, the verdict is **FAIL** (or CONCERNS for partial).
|
|
46
|
+
- Either way, verdict **PASS** only if you confirmed the goal is met in the browser; **CONCERNS** if you genuinely could not reach/exercise it.
|
|
46
47
|
|
|
47
48
|
```
|
|
48
49
|
{{linkedFinding}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kody-ade/kody-engine",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.170",
|
|
4
4
|
"description": "kody — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|