clawnet-cli
Installation
SKILL.md
ClawNet CLI
Vault Architecture (v0.0.33)
ClawNet CLI uses @1sat/vault@0.0.6 and @1sat/wallet-mac for key management. The old configureVault() helper and built-in se-helper binary have been removed.
The vault is composed from three pieces:
SecureEnclaveProviderfrom@1sat/wallet-mac— platform-specific Secure Enclave operations. Instantiated withSecureEnclaveProvider({ name: "ClawNet" }).FileVaultStoragefrom@1sat/vault— file-based vault entry storage.createVault(provider, storage)from@1sat/vault— creates the vault instance from a provider and storage backend.
import { SecureEnclaveProvider } from "@1sat/wallet-mac";
import { FileVaultStorage, createVault } from "@1sat/vault";