agkan 3.10.0 → 3.11.0
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.
|
@@ -10205,7 +10205,7 @@ Move task to "${label}"?`);
|
|
|
10205
10205
|
const input = document.getElementById("add-branch");
|
|
10206
10206
|
const isAutoMode = branchInternalValue === BRANCH_AUTO_GENERATE;
|
|
10207
10207
|
const q2 = isAutoMode ? "" : inputValue.trim().toLowerCase();
|
|
10208
|
-
const filtered = q2 ? branchSuggestions.filter((b2) => b2.toLowerCase().includes(q2))
|
|
10208
|
+
const filtered = q2 ? branchSuggestions.filter((b2) => b2.toLowerCase().includes(q2)) : branchSuggestions;
|
|
10209
10209
|
dropdown.innerHTML = "";
|
|
10210
10210
|
const autoOpt = document.createElement("div");
|
|
10211
10211
|
autoOpt.className = "branch-select-option branch-select-option-auto";
|
|
@@ -11212,7 +11212,7 @@ Move task to "${label}"?`);
|
|
|
11212
11212
|
const input = document.getElementById("detail-edit-branch");
|
|
11213
11213
|
const isAutoMode = branchInternalValue2 === BRANCH_AUTO_GENERATE3;
|
|
11214
11214
|
const q2 = isAutoMode ? "" : inputValue.trim().toLowerCase();
|
|
11215
|
-
const filtered = q2 ? branchSuggestions2.filter((b2) => b2.toLowerCase().includes(q2))
|
|
11215
|
+
const filtered = q2 ? branchSuggestions2.filter((b2) => b2.toLowerCase().includes(q2)) : branchSuggestions2;
|
|
11216
11216
|
dropdown.innerHTML = "";
|
|
11217
11217
|
const autoOpt = document.createElement("div");
|
|
11218
11218
|
autoOpt.className = "branch-select-option branch-select-option-auto";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-guide.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/agent-guide.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAyTpC,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,
|
|
1
|
+
{"version":3,"file":"agent-guide.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/agent-guide.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAyTpC,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CAe7D"}
|
|
@@ -318,9 +318,10 @@ function setupAgentGuideCommand(program) {
|
|
|
318
318
|
program
|
|
319
319
|
.command('agent-guide')
|
|
320
320
|
.description('Show agent guide for using agkan')
|
|
321
|
-
.option('--hook', 'Output as JSON for use in SessionStart hooks')
|
|
321
|
+
.option('--hook', '[DEPRECATED] Output as JSON for use in SessionStart hooks. Use `agkan context --hook` instead.')
|
|
322
322
|
.action((options) => {
|
|
323
323
|
if (options.hook) {
|
|
324
|
+
console.error('[DEPRECATED] `agkan agent-guide --hook` is deprecated and will be removed in the next major version. Use `agkan context --hook` instead.');
|
|
324
325
|
console.log(JSON.stringify({ additionalContext: AGENT_GUIDE_CONTENT }));
|
|
325
326
|
}
|
|
326
327
|
else {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-guide.js","sourceRoot":"","sources":["../../../src/cli/commands/agent-guide.ts"],"names":[],"mappings":";AAAA;;GAEG;;AA2TH,
|
|
1
|
+
{"version":3,"file":"agent-guide.js","sourceRoot":"","sources":["../../../src/cli/commands/agent-guide.ts"],"names":[],"mappings":";AAAA;;GAEG;;AA2TH,wDAeC;AAtUD,MAAM,mBAAmB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqT3B,CAAC;AAEF,SAAgB,sBAAsB,CAAC,OAAgB;IACrD,OAAO;SACJ,OAAO,CAAC,aAAa,CAAC;SACtB,WAAW,CAAC,kCAAkC,CAAC;SAC/C,MAAM,CAAC,QAAQ,EAAE,gGAAgG,CAAC;SAClH,MAAM,CAAC,CAAC,OAA2B,EAAE,EAAE;QACtC,IAAI,OAAO,CAAC,IAAI,EAAE,CAAC;YACjB,OAAO,CAAC,KAAK,CACX,0IAA0I,CAC3I,CAAC;YACF,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,CAAC,CAAC,CAAC;QAC1E,CAAC;aAAM,CAAC;YACN,OAAO,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAC;QACnC,CAAC;IACH,CAAC,CAAC,CAAC;AACP,CAAC"}
|