opencode-swarm 7.78.0 → 7.78.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.78.0",
55
+ version: "7.78.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",
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.78.0",
72
+ version: "7.78.1",
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",
@@ -115030,14 +115030,18 @@ async function appendAudit(directory, record3) {
115030
115030
  });
115031
115031
  await appendFile11(filePath, `${JSON.stringify(record3)}
115032
115032
  `, "utf-8");
115033
- const content = await readFile27(filePath, "utf-8");
115034
- const lines = content.split(`
115033
+ try {
115034
+ const content = await readFile27(filePath, "utf-8");
115035
+ const lines = content.split(`
115035
115036
  `).filter((line) => line.trim().length > 0);
115036
- if (lines.length > MAX_LEGACY_APPLICATION_LOG_ENTRIES) {
115037
- const trimmed = lines.slice(-MAX_LEGACY_APPLICATION_LOG_ENTRIES);
115038
- await atomicWriteFile(filePath, `${trimmed.join(`
115037
+ if (lines.length > MAX_LEGACY_APPLICATION_LOG_ENTRIES) {
115038
+ const trimmed = lines.slice(-MAX_LEGACY_APPLICATION_LOG_ENTRIES);
115039
+ await atomicWriteFile(filePath, `${trimmed.join(`
115039
115040
  `)}
115040
115041
  `);
115042
+ }
115043
+ } catch (err2) {
115044
+ warn(`[knowledge-application] appendAudit cap failed: ${err2 instanceof Error ? err2.message : String(err2)}`);
115041
115045
  }
115042
115046
  } finally {
115043
115047
  if (release)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm",
3
- "version": "7.78.0",
3
+ "version": "7.78.1",
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",