Skip to content

Releases: maquina-app/fragua-tools

v1.2.0

22 Jun 22:40

Choose a tag to compare

fragua v1.2.0

Released 2026-06-22

First published release since v1.0.2. The v1.1.0 build was never published
(its release pipeline was blocked), so this release also carries the v1.1.0
changes — anyone upgrading from v1.0.2 gets everything below.

Highlights

doctor now verifies functionally, not just by presence (#22)

fragua doctor previously only proved the binaries existed. A host could pass
doctor and still fail a real run — claude installed but signed out, or git with no
commit identity. It now exercises each tool the way a run does:

  • claude — a live, 60-second-bounded claude -p round-trip. Proves claude is
    installed and signed in; a signed-out or unreachable claude now fails doctor
    instead of passing.
  • git — verifies a commit identity (user.name + user.email) is configured,
    since the host commits on its own behalf. A missing identity is reported with an
    actionable fix.
  • gh — unchanged (gh --version + gh auth status).

Note: doctor now makes a real, billable claude API call on every run (a
short, multi-second request). This is intentional — a green doctor should mean a
run will actually work.

--workdir flag and FRAGUA_WORKDIR override (#21)

Override the workspace root the daemon reconciles against, via the --workdir flag or
the FRAGUA_WORKDIR environment variable. Documented in the README.

Upgrading

  • fragua doctor may now FAIL on conditions that previously passed — a signed-out
    claude or a missing git commit identity. These reflect real run-blocking problems;
    fix them as the messages describe (claude to sign in;
    git config --global user.name/user.email).
  • No configuration changes are required. The trust boundary is unchanged — doctor
    still verifies, never configures.

Install

# Homebrew (macOS)
brew install maquina-app/tap/fragua

# curl | sh (macOS + Linux) — detects OS/arch, verifies checksum
curl -fsSL https://github.com/maquina-app/fragua-tools/releases/latest/download/install.sh | sh

.deb / .rpm packages and per-OS/arch archives are attached to this release.

Artifacts

  • Archives: darwin/linux/windows × amd64/arm64 (.tar.gz, .zip on Windows)
  • Packages: .deb + .rpm (amd64, arm64)
  • checksums.txt (SHA-256), install.sh

macOS binaries are ad-hoc codesigned so they run on Apple Silicon.

Changes since v1.0.2

  • Make doctor functionally exercise claude and git (#22)
  • Add --workdir flag and FRAGUA_WORKDIR override (#21)

v1.0.2

21 Jun 00:07

Choose a tag to compare

Seed release distribution repo (README + LICENSE)

v1.0.1

17 Jun 22:35

Choose a tag to compare

Seed release distribution repo (README + LICENSE)