opencode-swarm 6.47.2 → 6.48.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.
@@ -3,3 +3,8 @@
3
3
  * Maps to: config doctor service (runConfigDoctor)
4
4
  */
5
5
  export declare function handleDoctorCommand(directory: string, args: string[]): Promise<string>;
6
+ /**
7
+ * Handle /swarm doctor tools command.
8
+ * Maps to: tool doctor service (runToolDoctor)
9
+ */
10
+ export declare function handleDoctorToolsCommand(directory: string, _args: string[]): Promise<string>;
@@ -39,6 +39,10 @@ export declare const COMMAND_REGISTRY: {
39
39
  readonly description: "Run config doctor checks";
40
40
  readonly subcommandOf: "config";
41
41
  };
42
+ readonly 'doctor tools': {
43
+ readonly handler: (ctx: CommandContext) => Promise<string>;
44
+ readonly description: "Run tool registration coherence check";
45
+ };
42
46
  readonly diagnose: {
43
47
  readonly handler: (ctx: CommandContext) => Promise<string>;
44
48
  readonly description: "Run health check on swarm state";