@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
|
@@ -320,13 +320,16 @@ function isValidVerbosityLevel(s) {
|
|
|
320
320
|
|
|
321
321
|
// src/events.ts
|
|
322
322
|
var EventPlanCreated = "soothe.cognition.plan.created";
|
|
323
|
-
var
|
|
324
|
-
var
|
|
325
|
-
var
|
|
326
|
-
var
|
|
327
|
-
var
|
|
328
|
-
var
|
|
329
|
-
var
|
|
323
|
+
var EventExplorerStarted = "soothe.subagent.explorer.started";
|
|
324
|
+
var EventExplorerMilestone = "soothe.subagent.explorer.milestone";
|
|
325
|
+
var EventExplorerStepCompleted = "soothe.subagent.explorer.step.completed";
|
|
326
|
+
var EventExplorerCompleted = "soothe.subagent.explorer.completed";
|
|
327
|
+
var EventDeepResearchStarted = "soothe.subagent.deep_research.started";
|
|
328
|
+
var EventDeepResearchProgress = "soothe.subagent.deep_research.progress";
|
|
329
|
+
var EventDeepResearchStepCompleted = "soothe.subagent.deep_research.step.completed";
|
|
330
|
+
var EventDeepResearchGatherSummary = "soothe.subagent.deep_research.gather.summary";
|
|
331
|
+
var EventDeepResearchCrawlSummary = "soothe.subagent.deep_research.crawl.summary";
|
|
332
|
+
var EventDeepResearchCompleted = "soothe.subagent.deep_research.completed";
|
|
330
333
|
var EventReplayComplete = "replay_complete";
|
|
331
334
|
var EventLoopReattachedWire = "loop_reattached";
|
|
332
335
|
var EventCardReplayBegin = "card.replay_begin";
|
|
@@ -621,7 +624,7 @@ function messagesWireTerminal(data) {
|
|
|
621
624
|
import { randomUUID } from "crypto";
|
|
622
625
|
var PROTO_VERSION = "1";
|
|
623
626
|
var DEFAULT_CLIENT_CAPABILITIES = ["streaming", "batch", "heartbeat", "receipts"];
|
|
624
|
-
var CLIENT_VERSION = "0.
|
|
627
|
+
var CLIENT_VERSION = "0.5.0";
|
|
625
628
|
function encodeMessage(msg) {
|
|
626
629
|
return JSON.stringify(msg) + "\n";
|
|
627
630
|
}
|
|
@@ -1927,13 +1930,16 @@ export {
|
|
|
1927
1930
|
LOOP_ASSISTANT_OUTPUT_PHASES,
|
|
1928
1931
|
DEFAULT_DELIVERABLE_PHASES,
|
|
1929
1932
|
EventPlanCreated,
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1933
|
+
EventExplorerStarted,
|
|
1934
|
+
EventExplorerMilestone,
|
|
1935
|
+
EventExplorerStepCompleted,
|
|
1936
|
+
EventExplorerCompleted,
|
|
1937
|
+
EventDeepResearchStarted,
|
|
1938
|
+
EventDeepResearchProgress,
|
|
1939
|
+
EventDeepResearchStepCompleted,
|
|
1940
|
+
EventDeepResearchGatherSummary,
|
|
1941
|
+
EventDeepResearchCrawlSummary,
|
|
1942
|
+
EventDeepResearchCompleted,
|
|
1937
1943
|
EventReplayComplete,
|
|
1938
1944
|
EventLoopReattachedWire,
|
|
1939
1945
|
EventCardReplayBegin,
|
|
@@ -1972,4 +1978,4 @@ export {
|
|
|
1972
1978
|
inboundNeedsDeliveryAck,
|
|
1973
1979
|
Client
|
|
1974
1980
|
};
|
|
1975
|
-
//# sourceMappingURL=chunk-
|
|
1981
|
+
//# sourceMappingURL=chunk-A6WGUBQE.js.map
|