Skip to content

v0.10.5 — Multi-Platform Distribution (npx, Homebrew, cargo-binstall)

Choose a tag to compare

@ferhimedamine ferhimedamine released this 21 May 11:44
d08871e

What's new

Multi-platform binary distribution

  • 4-target cross-compilation in release pipeline: Linux x64 (native), macOS ARM64 (native), macOS Intel (zigbuild), Linux ARM64 (cross)
  • All 4 platform tarballs + checksums.txt are now attached to every GitHub Release
  • cargo binstall dakera-mcp now works without compilation (#104)

npx zero-install

{
  "mcpServers": {
    "dakera": {
      "command": "npx",
      "args": ["@dakera-ai/dakera-mcp"],
      "env": { "DAKERA_API_KEY": "..." }
    }
  }
}
  • @dakera-ai/dakera-mcp wrapper package with platform-detection resolver
  • Platform packages: -linux-x64, -darwin-arm64, -darwin-x64
  • Published automatically on every release via npm-publish.yml

Homebrew tap (formula ready)

brew install dakera-ai/tap/dakera-mcp
  • Formula structure live in dakera-ai/homebrew-tap
  • SHA256 checksums auto-populated on each release via update-homebrew-formula.yml

PRs

  • #104 cargo-binstall metadata
  • #105 cross-compilation (4-platform build matrix)
  • #106 npm packages + Homebrew auto-update workflow