@openagentsinc/pylon
v0.1.4
Published
Bootstrap the standalone OpenAgents Pylon release asset and run first-run smoke checks.
Readme
@openagentsinc/pylon
Bootstrap the latest tagged standalone Pylon release asset from GitHub
Releases, fall back to a deterministic source build when no matching asset
exists for the local platform, stream first-run status updates in the terminal,
and open the Pylon terminal UI without Cargo when prebuilt binaries are
available.
Usage
npx @openagentsinc/pylon
bunx @openagentsinc/pylon
npm install -g @openagentsinc/pylon && pylon
bun install -g @openagentsinc/pylon && pylon
npx @openagentsinc/pylon --version 0.0.1-rc10
npx @openagentsinc/pylon --no-launch
npx @openagentsinc/pylon --download-curated-cache --model gemma-4-e2b --diagnostic-repeats 2
npx @openagentsinc/pylon --verboseThe launcher:
- supports direct
npx/bunxexecution plus globalnpm install -g/bun install -ginstalls with the samepyloncommand - checks GitHub for the latest tagged
pylon-v...release on each default run, or resolves a specific taggedPylonversion when--versionis provided - resolves the correct
pylon-v<version>-<os>-<arch>.tar.gzasset for the current machine - falls back to the exact tagged source checkout and builds
pylonpluspylon-tuilocally when no matching release asset exists for the machine - prompts before installing the Rust toolchain via
rustupif a source build is needed andcargo/rustcare missing - emits best-effort anonymous installer telemetry to
openagents.comso the public stats page can show install starts, completions, source-build fallbacks, Rust prompts, and smoke-test outcomes - downloads the archive and published SHA-256 checksum
- verifies the checksum before extracting
- caches the unpacked binaries under
~/.openagents/pylon/bootstrap/ - never links or copies those cached standalone binaries into a shared global
bin directory, so the package-managed
pylonlauncher remains the command onPATH - prints status lines such as release resolution, runtime checks, and local model scanning while it runs
- ends first run with an explicit verdict such as
fully online,runtime ready, orinstalled but runtime missing, plus exact next-step guidance - runs
pylon --help,init,status --json, andinventory --json - runs
pylon gemma diagnose <model> --json - only runs
pylon gemma download <model>when--download-curated-cacheis set, because the optional GGUF cache does not satisfy the sellable runtime by itself - falls back to
curlfor release metadata and asset downloads when the Node fetch path fails in constrained network contexts - opens
pylon-tuiby default after the smoke path unless--no-launchis set - does not try to install or register a local runtime automatically; the bootstrap stays honest about the separate Ollama-compatible runtime prerequisite instead of mutating the host behind the user's back
Set OPENAGENTS_DISABLE_TELEMETRY=1 to disable installer telemetry, or
OPENAGENTS_TELEMETRY_URL=http://127.0.0.1:8000/api/telemetry/events to point
the launcher at a non-production telemetry endpoint.
Publish
Publish directly from this package directory:
cd packages/pylon-bootstrap
npm pack --dry-run
npm publish