adhdev 0.9.82-rc.14 → 0.9.82-rc.16
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/cli/index.js +10 -6
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +10 -6
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/vendor/mcp-server/index.js +57 -2
- package/vendor/mcp-server/index.js.map +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -7275,7 +7275,7 @@ var init_status_monitor = __esm({
|
|
|
7275
7275
|
});
|
|
7276
7276
|
|
|
7277
7277
|
// ../../oss/packages/daemon-core/src/providers/chat-message-normalization.ts
|
|
7278
|
-
function extractFinalSummaryFromMessages(messages, maxChars =
|
|
7278
|
+
function extractFinalSummaryFromMessages(messages, maxChars = DEFAULT_FINAL_SUMMARY_MAX_CHARS) {
|
|
7279
7279
|
if (!Array.isArray(messages) || messages.length === 0) return "";
|
|
7280
7280
|
for (let i = messages.length - 1; i >= 0; i--) {
|
|
7281
7281
|
const msg = messages[i];
|
|
@@ -7577,11 +7577,12 @@ function filterInternalChatMessages(messages) {
|
|
|
7577
7577
|
function filterChatMessagesByVisibility(messages, surface) {
|
|
7578
7578
|
return (Array.isArray(messages) ? messages : []).filter((message) => classifyChatMessageVisibility(message).surface === surface);
|
|
7579
7579
|
}
|
|
7580
|
-
var BUILTIN_CHAT_MESSAGE_KINDS, CHAT_MESSAGE_VISIBILITIES, CHAT_MESSAGE_TRANSCRIPT_VISIBILITIES, CHAT_MESSAGE_AUDIENCES, CHAT_MESSAGE_SOURCES, CHAT_MESSAGE_ACTIVITY_SOURCES, CHAT_MESSAGE_INTERNAL_SOURCES, KNOWN_CHAT_MESSAGE_KINDS, CHAT_MESSAGE_KIND_ALIASES, EXPLICIT_HIDDEN_VISIBILITIES, EXPLICIT_VISIBLE_VISIBILITIES, HIDDEN_AUDIENCES, ACTIVITY_SOURCE_SET, INTERNAL_SOURCE_SET;
|
|
7580
|
+
var DEFAULT_FINAL_SUMMARY_MAX_CHARS, BUILTIN_CHAT_MESSAGE_KINDS, CHAT_MESSAGE_VISIBILITIES, CHAT_MESSAGE_TRANSCRIPT_VISIBILITIES, CHAT_MESSAGE_AUDIENCES, CHAT_MESSAGE_SOURCES, CHAT_MESSAGE_ACTIVITY_SOURCES, CHAT_MESSAGE_INTERNAL_SOURCES, KNOWN_CHAT_MESSAGE_KINDS, CHAT_MESSAGE_KIND_ALIASES, EXPLICIT_HIDDEN_VISIBILITIES, EXPLICIT_VISIBLE_VISIBILITIES, HIDDEN_AUDIENCES, ACTIVITY_SOURCE_SET, INTERNAL_SOURCE_SET;
|
|
7581
7581
|
var init_chat_message_normalization = __esm({
|
|
7582
7582
|
"../../oss/packages/daemon-core/src/providers/chat-message-normalization.ts"() {
|
|
7583
7583
|
"use strict";
|
|
7584
7584
|
init_contracts();
|
|
7585
|
+
DEFAULT_FINAL_SUMMARY_MAX_CHARS = 4e3;
|
|
7585
7586
|
BUILTIN_CHAT_MESSAGE_KINDS = ["standard", "thought", "tool", "terminal", "system"];
|
|
7586
7587
|
CHAT_MESSAGE_VISIBILITIES = ["user", "debug", "internal", "hidden"];
|
|
7587
7588
|
CHAT_MESSAGE_TRANSCRIPT_VISIBILITIES = ["visible", "chat", "user", "debug", "internal", "hidden"];
|
|
@@ -57902,7 +57903,7 @@ var require_yoctocolors_cjs = __commonJS({
|
|
|
57902
57903
|
}
|
|
57903
57904
|
});
|
|
57904
57905
|
|
|
57905
|
-
// ../../node_modules/@inquirer/figures/dist/esm/index.
|
|
57906
|
+
// ../../node_modules/@inquirer/figures/dist/esm/index.js
|
|
57906
57907
|
function isUnicodeSupported() {
|
|
57907
57908
|
if (import_node_process3.default.platform !== "win32") {
|
|
57908
57909
|
return import_node_process3.default.env["TERM"] !== "linux";
|
|
@@ -57914,7 +57915,7 @@ function isUnicodeSupported() {
|
|
|
57914
57915
|
}
|
|
57915
57916
|
var import_node_process3, common2, specialMainSymbols, specialFallbackSymbols, mainSymbols, fallbackSymbols, shouldUseMain, figures, esm_default, replacements;
|
|
57916
57917
|
var init_esm3 = __esm({
|
|
57917
|
-
"../../node_modules/@inquirer/figures/dist/esm/index.
|
|
57918
|
+
"../../node_modules/@inquirer/figures/dist/esm/index.js"() {
|
|
57918
57919
|
"use strict";
|
|
57919
57920
|
import_node_process3 = __toESM(require("process"), 1);
|
|
57920
57921
|
common2 = {
|
|
@@ -58185,7 +58186,10 @@ var init_esm3 = __esm({
|
|
|
58185
58186
|
oneNinth: "1/9",
|
|
58186
58187
|
oneTenth: "1/10"
|
|
58187
58188
|
};
|
|
58188
|
-
mainSymbols = {
|
|
58189
|
+
mainSymbols = {
|
|
58190
|
+
...common2,
|
|
58191
|
+
...specialMainSymbols
|
|
58192
|
+
};
|
|
58189
58193
|
fallbackSymbols = {
|
|
58190
58194
|
...common2,
|
|
58191
58195
|
...specialFallbackSymbols
|
|
@@ -98090,7 +98094,7 @@ var init_adhdev_daemon = __esm({
|
|
|
98090
98094
|
init_version();
|
|
98091
98095
|
init_src();
|
|
98092
98096
|
init_runtime_defaults();
|
|
98093
|
-
pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.82-rc.
|
|
98097
|
+
pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.82-rc.16" });
|
|
98094
98098
|
AdhdevDaemon = class _AdhdevDaemon {
|
|
98095
98099
|
localHttpServer = null;
|
|
98096
98100
|
localWss = null;
|