Releases: maquina-app/fragua-tools
v1.2.0
fragua v1.2.0
Released 2026-06-22
First published release since v1.0.2. The
v1.1.0build was never published
(its release pipeline was blocked), so this release also carries thev1.1.0
changes — anyone upgrading fromv1.0.2gets 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 -pround-trip. Proves claude is
installed and signed in; a signed-out or unreachable claude now failsdoctor
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:
doctornow makes a real, billableclaudeAPI call on every run (a
short, multi-second request). This is intentional — a greendoctorshould 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 doctormay now FAIL on conditions that previously passed — a signed-out
claudeor a missing git commit identity. These reflect real run-blocking problems;
fix them as the messages describe (claudeto 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,.zipon 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
doctorfunctionally exercise claude and git (#22) - Add
--workdirflag andFRAGUA_WORKDIRoverride (#21)
v1.0.2
Seed release distribution repo (README + LICENSE)
v1.0.1
Seed release distribution repo (README + LICENSE)