@opencode-ai/sdk 1.1.42 → 1.1.44
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.
- package/dist/v2/gen/types.gen.d.ts +10 -0
- package/package.json +1 -1
|
@@ -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
|
};
|