@zixt/host 0.0.150 → 0.0.152

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.
Files changed (2) hide show
  1. package/dist/index.js +9 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -28,7 +28,7 @@ import { homedir as homedir4 } from "node:os";
28
28
  // package.json
29
29
  var package_default = {
30
30
  name: "@zixt/host",
31
- version: "0.0.150",
31
+ version: "0.0.152",
32
32
  type: "module",
33
33
  exports: {
34
34
  ".": "./src/client.ts",
@@ -20087,12 +20087,19 @@ var UpdateManagerEmailSettingsRequest = external_exports.object({
20087
20087
  }).strict();
20088
20088
  var DeleteManagerEmailQuarantineResponse = external_exports.object({ discarded: external_exports.literal(true) }).strict();
20089
20089
  var ConversationStatus = external_exports.enum(["idle", "thinking"]);
20090
+ var ManagerAutomationRun = external_exports.object({
20091
+ status: external_exports.enum(["running", "succeeded", "failed"]),
20092
+ startedAt: external_exports.string(),
20093
+ completedAt: external_exports.string().nullable()
20094
+ }).strict();
20090
20095
  var ConversationProjection = external_exports.object({
20091
20096
  id: ConversationId,
20092
20097
  /** First-message prefix until the one creation-time Manager title call settles. */
20093
20098
  title: external_exports.string().min(1).max(200),
20094
20099
  channel: ConversationChannel,
20095
20100
  status: ConversationStatus,
20101
+ /** Absent on ordinary Manager Tasks and legacy projections. */
20102
+ latestAutomationRun: ManagerAutomationRun.nullable().optional(),
20096
20103
  /** TS-10 origin trust of the channel; propagated into every delegated Task. */
20097
20104
  trust: external_exports.enum(["internal", "external"]),
20098
20105
  /** One-use override for the next Task delegated from this thread. */
@@ -39540,7 +39547,7 @@ var TOOLS = [
39540
39547
  },
39541
39548
  {
39542
39549
  name: "remember",
39543
- description: 'Keep one durable fact in your curated memory, injected into your future runs. Use when a person corrects you, states a lasting preference, or you learn a stable fact about a project or this machine (folder locations, installed tools, environment quirks). One short fact per memory. Scope "machine" marks a fact true only on the machine this run is on; "global" travels everywhere.',
39550
+ description: 'Keep one durable fact in your curated memory, injected into your future runs. Use when a person corrects you, states a lasting preference, or you learn a stable fact about a project or this machine (folder locations, installed tools, environment quirks). One short fact per memory. Scope "machine" marks a fact true only on the machine this run is on; "global" travels everywhere. After installing, upgrading, removing, or successfully verifying software or an executable, use scope "machine" and kind "environment" before completing the task; include its current path or command, observed version, and relevant OS. If recalled software memory is stale, forget that id first and then remember the correction.',
39544
39551
  inputSchema: {
39545
39552
  type: "object",
39546
39553
  properties: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zixt/host",
3
- "version": "0.0.150",
3
+ "version": "0.0.152",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./src/client.ts",