@kody-ade/kody-engine 0.4.301 → 0.4.302
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 +4 -3
- package/package.json +1 -1
package/dist/bin/kody.js
CHANGED
|
@@ -15,7 +15,7 @@ var init_package = __esm({
|
|
|
15
15
|
"package.json"() {
|
|
16
16
|
package_default = {
|
|
17
17
|
name: "@kody-ade/kody-engine",
|
|
18
|
-
version: "0.4.
|
|
18
|
+
version: "0.4.302",
|
|
19
19
|
description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
20
20
|
license: "MIT",
|
|
21
21
|
type: "module",
|
|
@@ -10963,7 +10963,7 @@ var init_deriveQaScopeFromIssue = __esm({
|
|
|
10963
10963
|
"src/scripts/deriveQaScopeFromIssue.ts"() {
|
|
10964
10964
|
"use strict";
|
|
10965
10965
|
init_issue();
|
|
10966
|
-
TITLE_PATTERN = /^QA
|
|
10966
|
+
TITLE_PATTERN = /^QA:\s*(.+?)(?:\s*\(#\d+\))?\s*$/i;
|
|
10967
10967
|
deriveQaScopeFromIssue = async (ctx) => {
|
|
10968
10968
|
if (typeof ctx.args.scope === "string" && ctx.args.scope.trim().length > 0) {
|
|
10969
10969
|
return;
|
|
@@ -10983,7 +10983,8 @@ var init_deriveQaScopeFromIssue = __esm({
|
|
|
10983
10983
|
}
|
|
10984
10984
|
if (!title) return;
|
|
10985
10985
|
const m = title.match(TITLE_PATTERN);
|
|
10986
|
-
|
|
10986
|
+
if (!m) return;
|
|
10987
|
+
const scope = (m[1] ?? "").trim();
|
|
10987
10988
|
if (!scope) return;
|
|
10988
10989
|
ctx.args.scope = scope;
|
|
10989
10990
|
process.stdout.write(`\u2192 qa-engineer: derived scope from tracking issue #${issueNumber} title: "${scope}"
|
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.302",
|
|
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",
|