@benzotti/jedi 0.1.36 → 0.1.37
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 +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -11593,6 +11593,9 @@ function parseComment(comment, isFollowUp) {
|
|
|
11593
11593
|
const description = body.replace(/(https?:\/\/[^\s]*clickup\.com\/t\/[a-z0-9]+)/i, "").replace(/\s+/g, " ").trim();
|
|
11594
11594
|
const lower = body.toLowerCase();
|
|
11595
11595
|
const base = { clickUpUrl, fullFlow: false, isFeedback: false, isApproval: false, dryRun: hasDryRun };
|
|
11596
|
+
if (/\b(approved?|lgtm|looks?\s*good|ship\s*it)\b/i.test(lower)) {
|
|
11597
|
+
return { ...base, command: "plan", description: body, clickUpUrl: null, isFeedback: true, isApproval: true };
|
|
11598
|
+
}
|
|
11596
11599
|
if (lower.startsWith("ping") || lower.startsWith("status")) {
|
|
11597
11600
|
return { ...base, command: "ping", description: "", clickUpUrl: null };
|
|
11598
11601
|
}
|
|
@@ -11617,9 +11620,6 @@ function parseComment(comment, isFollowUp) {
|
|
|
11617
11620
|
}
|
|
11618
11621
|
return { ...base, command: "quick", description };
|
|
11619
11622
|
}
|
|
11620
|
-
if (/\b(approved?|lgtm|looks?\s*good|ship\s*it)\b/i.test(lower)) {
|
|
11621
|
-
return { ...base, command: "plan", description: body, clickUpUrl: null, isFeedback: true, isApproval: true };
|
|
11622
|
-
}
|
|
11623
11623
|
if (isFollowUp) {
|
|
11624
11624
|
return { ...base, command: "plan", description: body, clickUpUrl: null, isFeedback: true };
|
|
11625
11625
|
}
|
|
@@ -12294,7 +12294,7 @@ var stateCommand = defineCommand({
|
|
|
12294
12294
|
// package.json
|
|
12295
12295
|
var package_default = {
|
|
12296
12296
|
name: "@benzotti/jedi",
|
|
12297
|
-
version: "0.1.
|
|
12297
|
+
version: "0.1.37",
|
|
12298
12298
|
description: "JDI - Context-efficient AI development framework for Claude Code",
|
|
12299
12299
|
type: "module",
|
|
12300
12300
|
bin: {
|