opencode-swarm 6.53.2 → 6.53.3

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/cli/index.js CHANGED
@@ -41860,6 +41860,11 @@ var COMMAND_REGISTRY = {
41860
41860
  description: "Run config doctor checks",
41861
41861
  subcommandOf: "config"
41862
41862
  },
41863
+ "config-doctor": {
41864
+ handler: (ctx) => handleDoctorCommand(ctx.directory, ctx.args),
41865
+ description: "Run config doctor checks",
41866
+ subcommandOf: "config"
41867
+ },
41863
41868
  "doctor tools": {
41864
41869
  handler: (ctx) => handleDoctorToolsCommand(ctx.directory, ctx.args),
41865
41870
  description: "Run tool registration coherence check"
@@ -41893,6 +41898,11 @@ var COMMAND_REGISTRY = {
41893
41898
  description: "Generate evidence summary with completion ratio and blockers",
41894
41899
  subcommandOf: "evidence"
41895
41900
  },
41901
+ "evidence-summary": {
41902
+ handler: (ctx) => handleEvidenceSummaryCommand(ctx.directory),
41903
+ description: "Generate evidence summary with completion ratio and blockers",
41904
+ subcommandOf: "evidence"
41905
+ },
41896
41906
  archive: {
41897
41907
  handler: (ctx) => handleArchiveCommand(ctx.directory, ctx.args),
41898
41908
  description: "Archive old evidence bundles [--dry-run]"
@@ -39,6 +39,11 @@ export declare const COMMAND_REGISTRY: {
39
39
  readonly description: "Run config doctor checks";
40
40
  readonly subcommandOf: "config";
41
41
  };
42
+ readonly 'config-doctor': {
43
+ readonly handler: (ctx: CommandContext) => Promise<string>;
44
+ readonly description: "Run config doctor checks";
45
+ readonly subcommandOf: "config";
46
+ };
42
47
  readonly 'doctor tools': {
43
48
  readonly handler: (ctx: CommandContext) => Promise<string>;
44
49
  readonly description: "Run tool registration coherence check";
@@ -72,6 +77,11 @@ export declare const COMMAND_REGISTRY: {
72
77
  readonly description: "Generate evidence summary with completion ratio and blockers";
73
78
  readonly subcommandOf: "evidence";
74
79
  };
80
+ readonly 'evidence-summary': {
81
+ readonly handler: (ctx: CommandContext) => Promise<string>;
82
+ readonly description: "Generate evidence summary with completion ratio and blockers";
83
+ readonly subcommandOf: "evidence";
84
+ };
75
85
  readonly archive: {
76
86
  readonly handler: (ctx: CommandContext) => Promise<string>;
77
87
  readonly description: "Archive old evidence bundles [--dry-run]";
package/dist/index.js CHANGED
@@ -50089,6 +50089,11 @@ var COMMAND_REGISTRY = {
50089
50089
  description: "Run config doctor checks",
50090
50090
  subcommandOf: "config"
50091
50091
  },
50092
+ "config-doctor": {
50093
+ handler: (ctx) => handleDoctorCommand(ctx.directory, ctx.args),
50094
+ description: "Run config doctor checks",
50095
+ subcommandOf: "config"
50096
+ },
50092
50097
  "doctor tools": {
50093
50098
  handler: (ctx) => handleDoctorToolsCommand(ctx.directory, ctx.args),
50094
50099
  description: "Run tool registration coherence check"
@@ -50122,6 +50127,11 @@ var COMMAND_REGISTRY = {
50122
50127
  description: "Generate evidence summary with completion ratio and blockers",
50123
50128
  subcommandOf: "evidence"
50124
50129
  },
50130
+ "evidence-summary": {
50131
+ handler: (ctx) => handleEvidenceSummaryCommand(ctx.directory),
50132
+ description: "Generate evidence summary with completion ratio and blockers",
50133
+ subcommandOf: "evidence"
50134
+ },
50125
50135
  archive: {
50126
50136
  handler: (ctx) => handleArchiveCommand(ctx.directory, ctx.args),
50127
50137
  description: "Archive old evidence bundles [--dry-run]"
@@ -64972,7 +64982,7 @@ async function executePhaseComplete(args2, workingDirectory, directory) {
64972
64982
  }
64973
64983
  } catch {}
64974
64984
  }
64975
- } catch (error93) {
64985
+ } catch (_error) {
64976
64986
  if (await ledgerExists(dir)) {
64977
64987
  try {
64978
64988
  const rebuilt = await replayFromLedger(dir);
@@ -72699,7 +72709,7 @@ var OpenCodeSwarm = async (ctx) => {
72699
72709
  ...opencodeConfig.command || {},
72700
72710
  swarm: {
72701
72711
  template: "/swarm $ARGUMENTS",
72702
- description: "Swarm management commands: /swarm [status|plan|agents|history|config|evidence|handoff|archive|diagnose|preflight|sync-plan|benchmark|export|reset|rollback|retrieve|clarify|analyze|specify|dark-matter|knowledge|curate|close]"
72712
+ description: "Swarm management commands: /swarm [status|plan|agents|history|config|evidence|handoff|archive|diagnose|preflight|sync-plan|benchmark|export|reset|rollback|retrieve|clarify|analyze|specify|dark-matter|knowledge|curate|turbo|full-auto|write-retro|reset-session|simulate|promote|checkpoint|close]"
72703
72713
  },
72704
72714
  "swarm-status": {
72705
72715
  template: "/swarm status",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm",
3
- "version": "6.53.2",
3
+ "version": "6.53.3",
4
4
  "description": "Architect-centric agentic swarm plugin for OpenCode - hub-and-spoke orchestration with SME consultation, code generation, and QA review",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",