opencode-swarm 7.46.3 → 7.46.5

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.46.3",
55
+ version: "7.46.5",
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",
@@ -58640,7 +58640,7 @@ Subcommands:
58640
58640
  ` + ` turbo lean off \u2014 disable Lean Turbo
58641
58641
  ` + ` turbo lean \u2014 toggle Lean Turbo on/off
58642
58642
  ` + ` turbo standard on \u2014 force standard turbo (disables lean even if config says lean)
58643
- ` + ` turbo standard off \u2014 disable standard turbo (falls back to lean if config strategy is lean)
58643
+ ` + ` turbo standard off \u2014 disable all turbo modes (standard + lean)
58644
58644
  ` + ` turbo status \u2014 show detailed status including active strategy and lanes
58645
58645
  ` + `
58646
58646
  ` + "Session-scoped \u2014 resets on new session.",
package/dist/index.js CHANGED
@@ -69,7 +69,7 @@ var package_default;
69
69
  var init_package = __esm(() => {
70
70
  package_default = {
71
71
  name: "opencode-swarm",
72
- version: "7.46.3",
72
+ version: "7.46.5",
73
73
  description: "Architect-centric agentic swarm plugin for OpenCode - hub-and-spoke orchestration with SME consultation, code generation, and QA review",
74
74
  main: "dist/index.js",
75
75
  types: "dist/index.d.ts",
@@ -82275,7 +82275,7 @@ Subcommands:
82275
82275
  ` + ` turbo lean off — disable Lean Turbo
82276
82276
  ` + ` turbo lean — toggle Lean Turbo on/off
82277
82277
  ` + ` turbo standard on — force standard turbo (disables lean even if config says lean)
82278
- ` + ` turbo standard off — disable standard turbo (falls back to lean if config strategy is lean)
82278
+ ` + ` turbo standard off — disable all turbo modes (standard + lean)
82279
82279
  ` + ` turbo status — show detailed status including active strategy and lanes
82280
82280
  ` + `
82281
82281
  ` + "Session-scoped — resets on new session.",
@@ -103988,6 +103988,7 @@ var WRITE_EDIT_TOOLS = new Set([
103988
103988
  "apply_patch",
103989
103989
  "create_file"
103990
103990
  ]);
103991
+ var NEW_EXPORT_RE = /^\+(?:export)\s+(?:function|class|const|type|interface)\s+(\w{3,})/gm;
103991
103992
  function countMatches(text, pattern) {
103992
103993
  return (text.match(pattern) ?? []).length;
103993
103994
  }
@@ -104049,7 +104050,7 @@ function checkDeadExports(content, projectDir, startTime) {
104049
104050
  const hasPackageJson = fs68.existsSync(path106.join(projectDir, "package.json"));
104050
104051
  if (!hasPackageJson)
104051
104052
  return null;
104052
- const exportMatches = content.matchAll(/^\+(?:export)\s+(?:function|class|const|type|interface)\s+(\w{3,})/gm);
104053
+ const exportMatches = content.matchAll(NEW_EXPORT_RE);
104053
104054
  const newExports = [];
104054
104055
  for (const match of exportMatches) {
104055
104056
  if (match[1])
@@ -104142,7 +104143,7 @@ function checkStaleImports(content, threshold) {
104142
104143
  };
104143
104144
  }
104144
104145
  function checkDuplicateUtility(content, projectDir, startTime, targetFile) {
104145
- const exportMatches = content.matchAll(/^\+(?:export)\s+(?:function|class|const|type|interface)\s+(\w{3,})/gm);
104146
+ const exportMatches = content.matchAll(NEW_EXPORT_RE);
104146
104147
  const newExports = [];
104147
104148
  for (const match of exportMatches) {
104148
104149
  if (match[1])
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm",
3
- "version": "7.46.3",
3
+ "version": "7.46.5",
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",