@kody-ade/kody-engine 0.4.51 → 0.4.52
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 +3 -7
- package/package.json +1 -1
package/dist/bin/kody.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// package.json
|
|
4
4
|
var package_default = {
|
|
5
5
|
name: "@kody-ade/kody-engine",
|
|
6
|
-
version: "0.4.
|
|
6
|
+
version: "0.4.52",
|
|
7
7
|
description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
8
8
|
license: "MIT",
|
|
9
9
|
type: "module",
|
|
@@ -1371,8 +1371,8 @@ function extractCommentRest(afterTag, consumedToken) {
|
|
|
1371
1371
|
const re = new RegExp(`^${consumedToken.replace(/[-/\\^$*+?.()|[\]{}]/g, "\\$&")}\\b`, "i");
|
|
1372
1372
|
rest = rest.replace(re, "");
|
|
1373
1373
|
}
|
|
1374
|
-
rest = rest.replace(/^(please|kindly)(?:[\s
|
|
1375
|
-
return rest.replace(/^[\s
|
|
1374
|
+
rest = rest.replace(/^(please|kindly)(?:[\s:,.]+|\s|$)/i, "");
|
|
1375
|
+
return rest.replace(/^[\s:,.]+/, "").trim();
|
|
1376
1376
|
}
|
|
1377
1377
|
function parseCommentArgs(rest, inputs) {
|
|
1378
1378
|
const tokens = rest.length === 0 ? [] : rest.split(/\s+/).filter((t) => t.length > 0);
|
|
@@ -4487,10 +4487,6 @@ var dispatchClassified = async (ctx) => {
|
|
|
4487
4487
|
if (!classification || !VALID_CLASSES2.has(classification)) return;
|
|
4488
4488
|
const baseArg = typeof ctx.args.base === "string" && ctx.args.base.length > 0 ? ` --base ${ctx.args.base}` : "";
|
|
4489
4489
|
const body = `@kody ${classification}${baseArg}`;
|
|
4490
|
-
process.stderr.write(
|
|
4491
|
-
`[kody dispatchClassified] ctx.args.base=${JSON.stringify(ctx.args.base)} typeof=${typeof ctx.args.base} ctx.args=${JSON.stringify(ctx.args)}
|
|
4492
|
-
`
|
|
4493
|
-
);
|
|
4494
4490
|
try {
|
|
4495
4491
|
execFileSync13("gh", ["issue", "comment", String(issueNumber), "--body", body], {
|
|
4496
4492
|
cwd: ctx.cwd,
|
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.52",
|
|
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",
|