agent-afk 5.81.7 → 5.81.8

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.
@@ -8,10 +8,13 @@ export interface SkillManifestEntry {
8
8
  argumentHint?: string;
9
9
  whenToUse?: string;
10
10
  }
11
- export declare function buildSkillManifest(pluginConfigs?: SdkPluginConfig[], opts?: CollectSkillEntriesOptions): string;
11
+ export declare function buildSkillManifest(pluginConfigs?: SdkPluginConfig[], opts?: BuildSkillManifestOptions): string;
12
12
  export interface CollectSkillEntriesOptions {
13
13
  cwd?: string;
14
14
  }
15
+ export interface BuildSkillManifestOptions extends CollectSkillEntriesOptions {
16
+ excludeName?: string;
17
+ }
15
18
  export declare function collectSkillEntries(pluginConfigs?: SdkPluginConfig[], opts?: CollectSkillEntriesOptions): SkillManifestEntry[];
16
19
  export interface PluginSkillBody {
17
20
  body: string;
@@ -87,6 +87,7 @@ export interface AgentConfig {
87
87
  maxDepth?: number;
88
88
  phaseRole?: 'read-only' | 'read-write';
89
89
  isSkillDispatch?: boolean;
90
+ skillDispatchName?: string;
90
91
  isNonInteractive?: boolean;
91
92
  autoCompact?: boolean | {
92
93
  threshold: number;