@nikcli-ai/sdk 1.193.0 → 1.194.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.
@@ -2526,6 +2526,21 @@ export type Config = {
2526
2526
  tools?: {
2527
2527
  [key: string]: boolean;
2528
2528
  };
2529
+ /**
2530
+ * Filesystem tool autoload allowlist and integrity pins
2531
+ */
2532
+ tool?: {
2533
+ /**
2534
+ * Allowlist of custom tool file basenames or absolute paths. When set, only these files are imported (even without NIKCLI_ALLOW_PLUGIN_AUTOLOAD).
2535
+ */
2536
+ allow?: Array<string>;
2537
+ /**
2538
+ * Map of basename/absolute path → sha256 hex. When set, mismatch rejects the file and skips registration.
2539
+ */
2540
+ pin?: {
2541
+ [key: string]: string;
2542
+ };
2543
+ };
2529
2544
  enterprise?: {
2530
2545
  /**
2531
2546
  * Enterprise URL
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@nikcli-ai/sdk",
4
- "version": "1.193.0",
4
+ "version": "1.194.0",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "scripts": {