Skip to content

Maturity & Support Policy โ€‹

spore.host is a suite of separately-versioned tools, and they are not all at the same stage. This page states, in one place, how mature each piece is, what compatibility you can rely on, which platforms are supported, and how we handle deprecations โ€” so you can decide what to build on and what to pin.

Maturity levels โ€‹

BadgeMeaning
StableInterface is settled and actively supported. Changes are additive or follow the deprecation process below. Not the same as 1.0/GA โ€” see Versioning.
BetaUsable and supported, but the interface may still change with notice.
ExperimentalEarly / prototype. May change or break without a deprecation window. Validate against your own workload before relying on it.
PlannedOn the roadmap, not built yet.

Component status โ€‹

The six core tools are Stable: their commands and flags are settled and we maintain them actively. They are all still pre-1.0 (v0.x) โ€” see Versioning for exactly what that means for breaking changes.

ComponentStatusLatestNotes
truffleStablev0.46.0Instance discovery, quotas, spot/capacity search (read-only).
spawnStablev0.91.xLaunch + full lifecycle management.
sporedStableships with spawnIn-instance lifecycle daemon; built and released with spawn.
lagottoStablev0.50.0Capacity watcher.
spore-botStablecontinuousSlack/Teams control. Deployed continuously (not tag-released).
MCP serverStablev0.36.xRead/manage tools for AI assistants โ€” no launch, by design.
Plugin registryStableper-pluginEach plugin is versioned independently in its plugin.yaml; official plugins are signature-verified.

Beta and experimental surfaces โ€‹

Some capabilities inside otherwise-Stable tools are less settled. These are called out where they appear in the docs; the list below is the canonical index.

SurfaceStatusWhere
HTTP API + Python SDKBetaThe SDK is the supported entry point; the underlying HTTP API may change. See Python SDK.
Workflow adapters (Nextflow, WDL, CWL, Snakemake, Airflow)ExperimentalAll five are early โ€” two pre-1.0 prototypes and three v0.1.0 initial releases. Read the status & compatibility matrix before relying on one.
Pipeline stage streaming (tcp/grpc/zmq)ExperimentalOperationally involved; prefer the S3 handoff. See Spawn pipelines.
Per-event notification filteringPlannedSee Lifecycle Notifications.

If a page and this table ever disagree, the more conservative (less mature) label wins โ€” please report it.

Versioning โ€” what you can rely on โ€‹

Every spore.host tool follows Semantic Versioning 2.0.0 and keeps a Keep a Changelog-format CHANGELOG.md. User-facing changes land in the changelog in the same change that makes them.

All tools are currently pre-1.0 (v0.x). Under SemVer's pre-1.0 rules, that changes what a version bump means:

BumpPre-1.0 meaning (today)Post-1.0 meaning (future)
MAJOR (X)โ€” (still 0)Breaking change
MINOR (0.Y)Breaking changes or new featuresBackward-compatible feature
PATCH (0.0.Z)Backward-compatible fixBackward-compatible fix

The practical rule while we're pre-1.0: a breaking change bumps the MINOR version. So if you depend on exact CLI behavior in automation, pin to a MINOR series (e.g. spawn 0.91.x) and read the changelog's Changed/Removed/ Deprecated sections before moving to a new minor.

  • Plugins version independently โ€” each plugin's version: in its plugin.yaml follows SemVer per plugin (a breaking change to a plugin's inputs/behavior bumps its version). The registry itself is not versioned as a whole.
  • Go library consumers (e.g. importing truffle as a package): a breaking exported-signature change is treated as a breaking bump (pre-1.0 โ‡’ MINOR).

Platform support โ€‹

Where the CLIs run โ€‹

The truffle, spawn, and lagotto binaries are published for:

OSamd64arm64
macOSโœ…โœ…
Linuxโœ…โœ…
Windowsโœ…โœ…

Install via Homebrew, Scoop, .deb/.rpm, or a manual download. On Windows, run the CLIs under WSL2 for the smoothest experience.

What spawn can launch โ€‹

  • Linux instances โ€” Amazon Linux 2023 (the auto-selected default), Amazon Linux 2, and Ubuntu AMIs. spored installs via user-data at launch.
  • Windows instances โ€” supported via SSM-first launch and connect, with spored running as a native Windows service. (The headless launcher path used by lagotto is Linux-only.)
  • GPU โ€” spawn auto-selects a GPU AMI for GPU instance types; truffle discovers GPU families and their price/quotas. See GPU training.
  • EFA / MPI โ€” --efa enables Elastic Fabric Adapter on supported instance types with an auto-configured security group and cluster placement group. See MPI clusters.

Deprecation & support โ€‹

We remove things carefully and telegraph it:

  1. Deprecations are announced in the changelog under a Deprecated heading in the release that introduces them, and the CLI itself prints a deprecation notice when you use the old form.
  2. The old form keeps working as an alias for a transition period rather than breaking immediately โ€” for example truffle search now points to truffle find, and several spawn subcommands moved under spawn ami โ€ฆ and spawn sweep โ€ฆ while the old names still run.
  3. Removal happens in a later MINOR release (pre-1.0), and is listed under Removed in that release's changelog. Pinning to a MINOR series (above) means a removal never surprises you.

We do not yet publish a fixed end-of-life schedule (e.g. "supported for N minors"). While we're pre-1.0, the latest release of each tool is the supported one; fixes land on the latest and are shipped as a new PATCH or MINOR. If you need a longer support commitment for an institutional deployment, that's a good thing to raise in the deployment packet conversation with your admin โ€” or ask us.

See also โ€‹