# v1.9.0-alpha.0 — Team handoff package
This alpha makes relay-baton artifacts easy to share with another human or local
agent setup while preserving the local-only safety model. Everything is
deterministic and read-only on the repo — no model calls, no cloud upload.
## Added
- **Portable handoff bundle** — `relay-baton handoff bundle [--json] [--dry-run]
[--out
]` packages curated `.ai-session` artifacts (handoff, compact
state, repo map, plan + receipts, decisions, changed files, test results,
errors, session.json) plus a git summary into a timestamped bundle with a
`manifest.json` (size + SHA-256 per file).
- **Redaction pass** — a deterministic scan for obvious secrets, API keys,
absolute home paths, and oversized files runs on every bundle, is written to
`redaction.json`, and is surfaced as a warning on `handoff bundle`.
- **Import / inspect** — `relay-baton handoff inspect [--json]`
validates the manifest and per-file integrity (presence + size + SHA-256) and
prints what the bundle contains. It applies nothing.
- **Markdown report** — `relay-baton report [--out ] [--json]` renders a
human-readable status report (task, status, git, execution checkpoints, handoff
excerpt) from existing artifacts for PR comments, issues, or team chat.
- **Desktop export flow** — a read-only "team handoff" dashboard card (build
bundle, copy report) plus Agent Room `/bundle` and `/report`, all through the
CLI sidecar.
## Constraints
- Deterministic and read-only on the source repo; bundles write only into the
bundle directory.
- No cloud upload, no model calls. The desktop flow runs through the CLI sidecar
only; no business logic in the webview.
## Next
- v2.0 — stable desktop + local handoff platform.