@opencxh/domain 1.252.0 → 1.254.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.
@@ -37,6 +37,14 @@ export interface ToolCatalogEntry {
37
37
  access?: "read" | "write";
38
38
  /** internal | outward as the tool declares it; absent = outward. */
39
39
  effect?: "internal" | "outward";
40
+ /**
41
+ * `"interactive"` = needs a watching user. Carried so a builder can say that up front:
42
+ * a playbook runs unattended, and such a tool reports success for something that lands
43
+ * nowhere — the failure `surface` exists to prevent.
44
+ */
45
+ surface?: "interactive";
46
+ /** What it leaves for a human to finish. See {@link AiToolDescriptor.produces}. */
47
+ produces?: "draft";
40
48
  }
41
49
  /**
42
50
  * Can this tool reach outside the building? A read never does; an `effect: "internal"` write says
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencxh/domain",
3
- "version": "1.252.0",
3
+ "version": "1.254.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",