Repo custody agent
Sell the backup lane. Deliver the actual installer.
SkyeVault Agent is the paid repo-custody installer for client workspaces. It creates an encrypted full baseline, then sends encrypted changed-file deltas and tombstones so the buyer can recover a repo without depending on Codespaces, GitHub access, or one giant upload every ten minutes.
Available lanes
Starter, Pro, and Command are live SkyePay offers.
The cards below load from `/skyepay/offers`, so prices and storage limits stay tied to the FS27 catalog instead of hardcoded copy.
Installer contents
The package is a Node CLI, not a PDF promise.
It ships `doctor`, `init`, `snapshot`, `sync`, `watch`, `verify`, and `restore` commands. Owner/admin package download is gated by shared 0S auth; buyer download is gated by paid SkyePay session and workspace provisioning.
- Install
tar -xzf skyevault-agent-latest.tar.gz cd skyevault-agent npm install --omit=dev node bin/skyevault-agent.mjs doctor --json - Sync
node bin/skyevault-agent.mjs init --workspace="$SKYEVAULT_WORKSPACE_ID" --repo=/path/to/repo --vault-url="$SKYEVAULT_DROP_URL" export SKYEVAULT_PORTAL_KEY="<workspace portal key from install center>" export SKYEVAULT_AGENT_PASSPHRASE="<customer-owned unlock passphrase>" node bin/skyevault-agent.mjs sync --upload --json node bin/skyevault-agent.mjs watch --interval-seconds=600 --upload - Recover
node bin/skyevault-agent.mjs verify --receipt=/path/to/full-or-delta-receipt.json --json node bin/skyevault-agent.mjs restore --receipt=/path/to/full-receipt.json --delta-receipts=/path/to/delta-receipt.json --out=/tmp/restored-repo --json