@mirasoth/soothe-client 0.4.1 → 0.5.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.
- package/dist/{chunk-YYUVHZ3W.js → chunk-A6WGUBQE.js} +22 -16
- package/dist/{chunk-YYUVHZ3W.js.map → chunk-A6WGUBQE.js.map} +1 -1
- package/dist/client-UEBVV6HI.js +7 -0
- package/dist/index.cjs +32 -23
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +12 -9
- package/dist/index.d.ts +12 -9
- package/dist/index.js +23 -17
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/client-SOJZSF7C.js +0 -7
- /package/dist/{client-SOJZSF7C.js.map → client-UEBVV6HI.js.map} +0 -0
package/dist/index.cjs
CHANGED
|
@@ -357,7 +357,7 @@ var init_protocol = __esm({
|
|
|
357
357
|
import_node_crypto = require("crypto");
|
|
358
358
|
PROTO_VERSION = "1";
|
|
359
359
|
DEFAULT_CLIENT_CAPABILITIES = ["streaming", "batch", "heartbeat", "receipts"];
|
|
360
|
-
CLIENT_VERSION = "0.
|
|
360
|
+
CLIENT_VERSION = "0.5.0";
|
|
361
361
|
}
|
|
362
362
|
});
|
|
363
363
|
|
|
@@ -484,19 +484,22 @@ function isSubagentProgressEvent(eventType) {
|
|
|
484
484
|
}
|
|
485
485
|
return parsed.action === "started" || parsed.action === "completed";
|
|
486
486
|
}
|
|
487
|
-
var EventPlanCreated,
|
|
487
|
+
var EventPlanCreated, EventExplorerStarted, EventExplorerMilestone, EventExplorerStepCompleted, EventExplorerCompleted, EventDeepResearchStarted, EventDeepResearchProgress, EventDeepResearchStepCompleted, EventDeepResearchGatherSummary, EventDeepResearchCrawlSummary, EventDeepResearchCompleted, EventReplayComplete, EventLoopReattachedWire, EventCardReplayBegin, EventCardCreated, EventCardReplayEnd, EventToolStarted, EventToolCompleted, EventToolError, EventStreamToolCallUpdate, EventToolCallUpdatesBatch, EventStrangeLoopStarted, EventStrangeLoopCompleted, EventStrangeLoopPlanDecision, EventStrangeLoopReasoned, EventStrangeLoopStepStarted, EventStrangeLoopStepQueued, EventStrangeLoopStepCompleted, EventStrangeLoopContextCompacted, EventMessageReceived, EventMessageSent, EventFinalReport, EventAutopilotGoalStatus, EventAutopilotGoalProgress, EventAutopilotGoalCreated, EventAutopilotGoalCompleted, EventAutopilotWorkerAssigned, EventAutopilotWorkerUnassigned, EventGeneralFailed;
|
|
488
488
|
var init_events = __esm({
|
|
489
489
|
"src/events.ts"() {
|
|
490
490
|
"use strict";
|
|
491
491
|
init_verbosity();
|
|
492
492
|
EventPlanCreated = "soothe.cognition.plan.created";
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
493
|
+
EventExplorerStarted = "soothe.subagent.explorer.started";
|
|
494
|
+
EventExplorerMilestone = "soothe.subagent.explorer.milestone";
|
|
495
|
+
EventExplorerStepCompleted = "soothe.subagent.explorer.step.completed";
|
|
496
|
+
EventExplorerCompleted = "soothe.subagent.explorer.completed";
|
|
497
|
+
EventDeepResearchStarted = "soothe.subagent.deep_research.started";
|
|
498
|
+
EventDeepResearchProgress = "soothe.subagent.deep_research.progress";
|
|
499
|
+
EventDeepResearchStepCompleted = "soothe.subagent.deep_research.step.completed";
|
|
500
|
+
EventDeepResearchGatherSummary = "soothe.subagent.deep_research.gather.summary";
|
|
501
|
+
EventDeepResearchCrawlSummary = "soothe.subagent.deep_research.crawl.summary";
|
|
502
|
+
EventDeepResearchCompleted = "soothe.subagent.deep_research.completed";
|
|
500
503
|
EventReplayComplete = "replay_complete";
|
|
501
504
|
EventLoopReattachedWire = "loop_reattached";
|
|
502
505
|
EventCardReplayBegin = "card.replay_begin";
|
|
@@ -2020,10 +2023,16 @@ __export(index_exports, {
|
|
|
2020
2023
|
EventCardReplayBegin: () => EventCardReplayBegin,
|
|
2021
2024
|
EventCardReplayEnd: () => EventCardReplayEnd,
|
|
2022
2025
|
EventClassifier: () => EventClassifier,
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2026
|
+
EventDeepResearchCompleted: () => EventDeepResearchCompleted,
|
|
2027
|
+
EventDeepResearchCrawlSummary: () => EventDeepResearchCrawlSummary,
|
|
2028
|
+
EventDeepResearchGatherSummary: () => EventDeepResearchGatherSummary,
|
|
2029
|
+
EventDeepResearchProgress: () => EventDeepResearchProgress,
|
|
2030
|
+
EventDeepResearchStarted: () => EventDeepResearchStarted,
|
|
2031
|
+
EventDeepResearchStepCompleted: () => EventDeepResearchStepCompleted,
|
|
2032
|
+
EventExplorerCompleted: () => EventExplorerCompleted,
|
|
2033
|
+
EventExplorerMilestone: () => EventExplorerMilestone,
|
|
2034
|
+
EventExplorerStarted: () => EventExplorerStarted,
|
|
2035
|
+
EventExplorerStepCompleted: () => EventExplorerStepCompleted,
|
|
2027
2036
|
EventFinalReport: () => EventFinalReport,
|
|
2028
2037
|
EventGeneralFailed: () => EventGeneralFailed,
|
|
2029
2038
|
EventLoopReattachedWire: () => EventLoopReattachedWire,
|
|
@@ -2040,9 +2049,6 @@ __export(index_exports, {
|
|
|
2040
2049
|
EventStrangeLoopStepQueued: () => EventStrangeLoopStepQueued,
|
|
2041
2050
|
EventStrangeLoopStepStarted: () => EventStrangeLoopStepStarted,
|
|
2042
2051
|
EventStreamToolCallUpdate: () => EventStreamToolCallUpdate,
|
|
2043
|
-
EventTacitusCompleted: () => EventTacitusCompleted,
|
|
2044
|
-
EventTacitusGatherSummary: () => EventTacitusGatherSummary,
|
|
2045
|
-
EventTacitusStarted: () => EventTacitusStarted,
|
|
2046
2052
|
EventToolCallUpdatesBatch: () => EventToolCallUpdatesBatch,
|
|
2047
2053
|
EventToolCompleted: () => EventToolCompleted,
|
|
2048
2054
|
EventToolError: () => EventToolError,
|
|
@@ -4257,10 +4263,16 @@ var DaemonSession = class {
|
|
|
4257
4263
|
EventCardReplayBegin,
|
|
4258
4264
|
EventCardReplayEnd,
|
|
4259
4265
|
EventClassifier,
|
|
4260
|
-
|
|
4261
|
-
|
|
4262
|
-
|
|
4263
|
-
|
|
4266
|
+
EventDeepResearchCompleted,
|
|
4267
|
+
EventDeepResearchCrawlSummary,
|
|
4268
|
+
EventDeepResearchGatherSummary,
|
|
4269
|
+
EventDeepResearchProgress,
|
|
4270
|
+
EventDeepResearchStarted,
|
|
4271
|
+
EventDeepResearchStepCompleted,
|
|
4272
|
+
EventExplorerCompleted,
|
|
4273
|
+
EventExplorerMilestone,
|
|
4274
|
+
EventExplorerStarted,
|
|
4275
|
+
EventExplorerStepCompleted,
|
|
4264
4276
|
EventFinalReport,
|
|
4265
4277
|
EventGeneralFailed,
|
|
4266
4278
|
EventLoopReattachedWire,
|
|
@@ -4277,9 +4289,6 @@ var DaemonSession = class {
|
|
|
4277
4289
|
EventStrangeLoopStepQueued,
|
|
4278
4290
|
EventStrangeLoopStepStarted,
|
|
4279
4291
|
EventStreamToolCallUpdate,
|
|
4280
|
-
EventTacitusCompleted,
|
|
4281
|
-
EventTacitusGatherSummary,
|
|
4282
|
-
EventTacitusStarted,
|
|
4283
4292
|
EventToolCallUpdatesBatch,
|
|
4284
4293
|
EventToolCompleted,
|
|
4285
4294
|
EventToolError,
|