Skip to content

claude-flow

v3.10.44 Security

This release includes 1 security fix for security teams reviewing exposed deployments.

✓ No known CVEs patched
Read the diff → Tool health → What is this tool? →
This release patches 1 known CVE

Topics

agentic-ai agentic-framework agentic-workflow agents ai-agents ai-assistant
+14 more
ai-coding ai-skills autonomous-agents claude-code codex harness mcp-server multi-agent multi-agent-systems npm skills swarm swarm-intelligence typescript

Affected surfaces

deps breaking_upgrade

ReleasePort's take

Light signal
editorial:auto 1mo

Release v3.10.44 fixes infinite memory growth in the generateEmbedding/bridgeGenerateEmbedding cycle on Linux CI and resolves Windows npm spawn failures (ENOENT, EINVAL) for plugin lifecycle commands.

Why it matters: Addresses critical resource‑leak bugs affecting Linux builds and stabilizes plugin management on Windows; immediate upgrade recommended for affected pipelines.

Summary

AI summary

Updates Held from this batch, bridge-first, and CVE-2024-27980 across a mixed release.

Changes in this release

Bugfix Medium

Fixes Windows npm spawn failures (ENOENT, EINVAL) for plugin install/uninstall/upgrade.

Fixes Windows npm spawn failures (ENOENT, EINVAL) for plugin install/uninstall/upgrade.

Source: llm_adapter@2026-06-12

Confidence: high

Bugfix Medium

Fixes infinite memory growth from embedder-rescue mutual recursion on Linux CI.

Fixes infinite memory growth from embedder-rescue mutual recursion on Linux CI.

Source: llm_adapter@2026-06-12

Confidence: low

Bugfix Medium

Resolves infinite memory growth caused by embedder-rescue mutual recursion in generateEmbedding/bridgeGenerateEmbedding cycle.

Resolves infinite memory growth caused by embedder-rescue mutual recursion in generateEmbedding/bridgeGenerateEmbedding cycle.

Source: granite4.1:30b@2026-06-12-audit

Confidence: low

Full changelog

Patch release bundling two fixes that landed since 3.10.43.

Fixes

#2348 — break embedder-rescue mutual recursion (#2312)

v3-ci.yml's trajectory-graph-edges smoke had been disabled (continue-on-error: true) since the test process OOM'd at 4 GB on the Linux runner. Bisection ruled out the suspected SONA endTrajectory / EWC path. The actual cause was a closed cycle:

generateEmbedding            (bridge-first)
  → bridgeGenerateEmbedding
    → agentdb.embedder.embed   ← monkey-patched by rescueAgentdbEmbedder
      → generateEmbedding      ← cycle closes here

Microtask-driven, so no stack overflow — just monotonic heap growth to V8's limit, then SIGABRT. memory-bridge.ts's rescueAgentdbEmbedder now delegates to a new generateLocalEmbedding export (bridge-free leaf chain) rather than the bridge-first generateEmbedding. The rescue probe is also tightened — previously it accepted any non-zero vector as "real," which the deterministic hash fallback also satisfies, so it cheerfully "rescued" a mock with another mock. New probe requires backend === 'onnx'.

The CI gate is re-enabled (continue-on-error: true removed).

#2366 — Windows plugin install/uninstall/upgrade (community contribution)

On Windows, PluginManager failed every npm lifecycle command with two distinct Node failure modes:

  • spawn npm ENOENT — npm on Windows is a bash shim with no .exe, so execFile('npm', …) can't resolve it.
  • spawn EINVAL — Node refuses to spawn .cmd/.bat files directly since 18.20.2 / 20.12.2 (CVE-2024-27980).

All three call sites (install, uninstall, upgrade) now route through a runNpm helper that invokes cmd.exe /d /s /c npm <args> on Windows. POSIX path is unchanged. Argument safety is maintained by the existing validatePackageName regex gate plus Node's array-form argument quoting — security-audited for cmd.exe metacharacter injection (the version-spec characters ^, <, >, = that the regex allows are inert inside Node's quoted args under cmd /s).

Community PR by @danielsOink — thanks!

Held from this batch

  • #2301 (community, hive-mind --dangerously-skip-permissions) — fix for the kebab→camel parser drop is correct on the activation half but the --no-auto-permissions deny case fails locally: the parser uses yargs-style negation (autoPermissions: false) which the predicate doesn't read. Comment posted on the PR with the proposed third-clause fix; will land in the next batch.
  • #2342 (vitest 1.x → 4.1.8 for GHSA-5xrq-8626-4rwp) — CONFLICTING against current main; needs rebase + author confirmation of test-suite compatibility with the major version jump.

Install / upgrade

npx ruflo@latest init        # 3.10.44
npx @claude-flow/cli@latest  # 3.10.44

All three packages (@claude-flow/cli, claude-flow, ruflo) and all three dist-tags (latest, alpha, v3alpha) verified at 3.10.44.

Diff

main…v3.10.43 — PRs #2348, #2366 plus the release bump.

🤖 Generated with RuFlo

Security Fixes

  • dep: CVE-2024-27980 – Node refuses to spawn `.cmd/.bat` files; Windows plugin operations now use `cmd.exe /c npm` workaround.

Weekly OSS security release digest.

The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.

No spam, unsubscribe anytime.

Share this release

Track claude-flow

Get notified when new releases ship.

Sign up free

About claude-flow

Deploy multi-agent swarms with coordinated workflows.

All releases →

Related context

Beta — feedback welcome: [email protected]