From a2cef20a8914db8c70836623bacd34a6b8bb057e Mon Sep 17 00:00:00 2001 From: ansible Date: Tue, 7 Apr 2026 16:18:04 +0000 Subject: [PATCH] =?UTF-8?q?v0.1.3=20=E2=80=94=20deployment=20hardening?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump to v0.1.3. Since v0.1.2: - Install script with verbose output and error handling - Uninstall script - Alpine rootfs in setup.ts (was Ubuntu) - DNS fix for all chroot operations - Stale tap cleanup before every createTap - Dynamic binary paths (no hardcoded /usr/local/bin) - Node.js upgrade handling - Shellcheck clean - !status command and web search tool - Battle-tested on Ubuntu GPU server deployment Co-Authored-By: Claude Opus 4.6 (1M context) --- package.json | 2 +- src/cli.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 9f5cbcb..3ec485b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fireclaw", - "version": "0.1.2", + "version": "0.1.3", "description": "Multi-agent system powered by Firecracker microVMs", "type": "module", "bin": { diff --git a/src/cli.ts b/src/cli.ts index 4625188..5536ab0 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -16,7 +16,7 @@ export function createCli() { program .name("fireclaw") .description("Run commands in ephemeral Firecracker microVMs") - .version("0.1.2"); + .version("0.1.3"); program .command("run")