opencode-swarm 7.47.0 → 7.48.1

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
@@ -52,7 +52,7 @@ var package_default;
52
52
  var init_package = __esm(() => {
53
53
  package_default = {
54
54
  name: "opencode-swarm",
55
- version: "7.47.0",
55
+ version: "7.48.1",
56
56
  description: "Architect-centric agentic swarm plugin for OpenCode - hub-and-spoke orchestration with SME consultation, code generation, and QA review",
57
57
  main: "dist/index.js",
58
58
  types: "dist/index.d.ts",
@@ -16847,6 +16847,7 @@ var init_constants = __esm(() => {
16847
16847
  "syntax_check",
16848
16848
  "search",
16849
16849
  "summarize_work",
16850
+ "knowledge_recall",
16850
16851
  "swarm_command"
16851
16852
  ],
16852
16853
  sme: [
@@ -57789,17 +57790,13 @@ var init_tool_policy = __esm(() => {
57789
57790
  "agents",
57790
57791
  "config",
57791
57792
  "config doctor",
57792
- "config-doctor",
57793
- "doctor",
57794
57793
  "doctor tools",
57795
57794
  "status",
57796
57795
  "show-plan",
57797
- "plan",
57798
57796
  "help",
57799
57797
  "history",
57800
57798
  "evidence",
57801
57799
  "evidence summary",
57802
- "evidence-summary",
57803
57800
  "retrieve",
57804
57801
  "diagnose",
57805
57802
  "preflight",
@@ -57816,8 +57813,7 @@ var init_tool_policy = __esm(() => {
57816
57813
  "memory import",
57817
57814
  "memory migrate",
57818
57815
  "sync-plan",
57819
- "export",
57820
- "list-agents"
57816
+ "export"
57821
57817
  ];
57822
57818
  SWARM_COMMAND_TOOL_ALLOWLIST = new Set([
57823
57819
  "agents",
@@ -1,5 +1,5 @@
1
1
  import type { ResolvedSwarmCommand, SwarmCommandPolicyResult } from './command-dispatch.js';
2
- export declare const SWARM_COMMAND_TOOL_COMMANDS: readonly ["agents", "config", "config doctor", "config-doctor", "doctor", "doctor tools", "status", "show-plan", "plan", "help", "history", "evidence", "evidence summary", "evidence-summary", "retrieve", "diagnose", "preflight", "benchmark", "knowledge", "memory", "memory status", "memory pending", "memory recall-log", "memory compact", "memory stale", "memory export", "memory evaluate", "memory import", "memory migrate", "sync-plan", "export", "list-agents"];
2
+ export declare const SWARM_COMMAND_TOOL_COMMANDS: readonly ["agents", "config", "config doctor", "doctor tools", "status", "show-plan", "help", "history", "evidence", "evidence summary", "retrieve", "diagnose", "preflight", "benchmark", "knowledge", "memory", "memory status", "memory pending", "memory recall-log", "memory compact", "memory stale", "memory export", "memory evaluate", "memory import", "memory migrate", "sync-plan", "export"];
3
3
  export type SwarmCommandToolInputCommand = (typeof SWARM_COMMAND_TOOL_COMMANDS)[number];
4
4
  export declare const SWARM_COMMAND_TOOL_ALLOWLIST: Set<string>;
5
5
  /**