@akonwi/kit 0.9.0 → 0.10.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.
- package/dist/kit +0 -0
- package/dist/plugin.d.ts +6 -1
- package/package.json +1 -1
package/dist/kit
CHANGED
|
Binary file
|
package/dist/plugin.d.ts
CHANGED
|
@@ -174,7 +174,6 @@ export type Settings = {
|
|
|
174
174
|
voice?: string;
|
|
175
175
|
};
|
|
176
176
|
pager?: boolean;
|
|
177
|
-
guidedQuestions?: boolean;
|
|
178
177
|
sessionNaming?: boolean;
|
|
179
178
|
diffs?: {
|
|
180
179
|
view?: "unified" | "split";
|
|
@@ -276,6 +275,12 @@ export interface PluginAPI {
|
|
|
276
275
|
registerTool: <TParameters extends TSchema, TDetails>(
|
|
277
276
|
tool: ToolDefinition<TParameters, TDetails>,
|
|
278
277
|
) => Disposer;
|
|
278
|
+
registerSubagent: (def: {
|
|
279
|
+
name: string;
|
|
280
|
+
description: string;
|
|
281
|
+
model?: string;
|
|
282
|
+
instructions: string;
|
|
283
|
+
}) => Disposer;
|
|
279
284
|
onToolCall: (handler: ToolCallHandler) => Disposer;
|
|
280
285
|
addSystemPrompt: (text: string) => Disposer;
|
|
281
286
|
addDebugSection: (key: string, lines: string[]) => Disposer;
|