@soat/cli 0.14.10 → 0.14.12

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.mjs +20 -2
  2. package/package.json +2 -2
package/dist/index.mjs CHANGED
@@ -11,7 +11,7 @@ import { load } from "js-yaml";
11
11
  import * as os from "node:os";
12
12
 
13
13
  //#region package.json
14
- var version = "0.14.10";
14
+ var version = "0.14.12";
15
15
 
16
16
  //#endregion
17
17
  //#region src/cli-wrappers/wrappers/formations.ts
@@ -1039,6 +1039,12 @@ var routes = {
1039
1039
  "required": false,
1040
1040
  "type": "string",
1041
1041
  "in": "body"
1042
+ }, {
1043
+ "name": "extract",
1044
+ "description": "Per-turn override of the agent's `knowledge_config.extraction` default. Omit to follow the agent's stored config. Set `false` to suppress automatic memory extraction for this turn (e.g. an operational or tool-listing turn that would only add noise to a curated memory). Set `true` to force extraction on for this turn even when the agent does not enable it by default, provided the agent has a `write_memory_id`. Has no effect on streaming or `requires_action` turns, which never extract.",
1045
+ "required": false,
1046
+ "type": "boolean",
1047
+ "in": "body"
1042
1048
  }, {
1043
1049
  "name": "knowledge_config",
1044
1050
  "description": "Per-generation knowledge retrieval override. Array filters (memory_ids, memory_tags, document_ids, document_paths) are unioned with the agent's stored knowledge_config; scalar fields (min_score, limit) use the per-generation value when present.",
@@ -4519,6 +4525,12 @@ var routes = {
4519
4525
  "required": false,
4520
4526
  "type": "array",
4521
4527
  "in": "body"
4528
+ }, {
4529
+ "name": "denied_actions",
4530
+ "description": "For `mcp` tools: an optional denylist of MCP tool names to hide. Applied after `actions` and taking precedence over it. Use it to scope a read+write MCP server read-only by denying just the write tools. Omit or set `null` to deny nothing. Ignored for other tool types.",
4531
+ "required": false,
4532
+ "type": "array",
4533
+ "in": "body"
4522
4534
  }, {
4523
4535
  "name": "preset_parameters",
4524
4536
  "description": "Fixed parameters merged into every soat tool call. Keys matching fields in the action's input schema are removed from the schema shown to the model and injected automatically at execution time.",
@@ -4615,6 +4627,12 @@ var routes = {
4615
4627
  "required": false,
4616
4628
  "type": "array",
4617
4629
  "in": "body"
4630
+ }, {
4631
+ "name": "denied_actions",
4632
+ "description": "For `mcp` tools: an optional denylist of MCP tool names to hide. Applied after `actions` and taking precedence over it. Use it to scope a read+write MCP server read-only by denying just the write tools. `null` denies nothing. Ignored for other tool types.",
4633
+ "required": false,
4634
+ "type": "array",
4635
+ "in": "body"
4618
4636
  }, {
4619
4637
  "name": "preset_parameters",
4620
4638
  "description": "Fixed parameters merged into every soat tool call. Keys matching fields in the action's input schema are removed from the schema shown to the model and injected automatically at execution time.",
@@ -4671,7 +4689,7 @@ var routes = {
4671
4689
  "in": "path"
4672
4690
  }, {
4673
4691
  "name": "action",
4674
- "description": "For `soat` tools: the action name (must be in the tool's `actions` list). For `mcp` tools: the MCP tool name to invoke (must be in the tool's `actions` allowlist when one is set). Ignored for `http` tools.\n",
4692
+ "description": "For `soat` tools: the action name (must be in the tool's `actions` list). For `mcp` tools: the MCP tool name to invoke (must be in the tool's `actions` allowlist when one is set, and must not be in its `denied_actions` denylist). Ignored for `http` tools.\n",
4675
4693
  "required": false,
4676
4694
  "type": "string",
4677
4695
  "in": "body"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soat/cli",
3
- "version": "0.14.10",
3
+ "version": "0.14.12",
4
4
  "type": "module",
5
5
  "dependencies": {
6
6
  "@inquirer/input": "^5.1.2",
@@ -8,7 +8,7 @@
8
8
  "@ttoss/logger": "^0.8.19",
9
9
  "commander": "^15.0.0",
10
10
  "js-yaml": "^5.2.1",
11
- "@soat/sdk": "0.14.10"
11
+ "@soat/sdk": "0.14.12"
12
12
  },
13
13
  "devDependencies": {
14
14
  "@ttoss/config": "^1.37.17",