@opencode-ai/sdk 1.1.41 → 1.1.43

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.
@@ -1190,6 +1190,7 @@ export type PermissionConfig = {
1190
1190
  codesearch?: PermissionActionConfig;
1191
1191
  lsp?: PermissionRuleConfig;
1192
1192
  doom_loop?: PermissionActionConfig;
1193
+ skill?: PermissionRuleConfig;
1193
1194
  [key: string]: PermissionRuleConfig | Array<string> | PermissionActionConfig | undefined;
1194
1195
  } | PermissionActionConfig;
1195
1196
  export type AgentConfig = {
@@ -1436,6 +1437,15 @@ export type Config = {
1436
1437
  subtask?: boolean;
1437
1438
  };
1438
1439
  };
1440
+ /**
1441
+ * Additional skill folder paths
1442
+ */
1443
+ skills?: {
1444
+ /**
1445
+ * Additional paths to skill folders
1446
+ */
1447
+ paths?: Array<string>;
1448
+ };
1439
1449
  watcher?: {
1440
1450
  ignore?: Array<string>;
1441
1451
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@opencode-ai/sdk",
4
- "version": "1.1.41",
4
+ "version": "1.1.43",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "scripts": {