- Add prepare-openfang-runtime.mjs script for cross-platform binary download - Update lib.rs to support binary runtime (fallback to Node.js for legacy) - Add openfang.cmd/sh launcher scripts - Update runtime-manifest.json for binary-based runtime - Add README documentation for bundled runtime architecture OpenFang binary is downloaded during build, supporting: - Windows x64/ARM64 (.zip) - macOS Intel/Apple Silicon (.tar.gz) - Linux x64/ARM64 (.tar.gz) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
5 lines
139 B
Bash
5 lines
139 B
Bash
#!/bin/bash
|
|
# OpenFang Agent OS - Bundled Binary Launcher
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
exec "$SCRIPT_DIR/openfang.exe" "$@"
|