Manage BAP identity backups - list members, export member identities, and view backup details using the bap CLI. Works with encrypted .bep BAP identity files.
/plugin marketplace add b-open-io/bsv-skills/plugin install bsv-skills@b-open-ioThis skill is limited to using the following tools:
scripts/export-member.tsscripts/list.tsManage BAP identity backups using the bap CLI.
List Members: View all member identities in master backup
Export Member: Extract a specific member to separate .bep file
View Details: Show backup type, identity count, metadata
# List all members in backup
bun run /path/to/skills/manage-bap-backup/scripts/list.ts identity.bep
# Export specific member by index
bun run /path/to/skills/manage-bap-backup/scripts/export-member.ts identity.bep 0
# Export to custom output file
bun run /path/to/skills/manage-bap-backup/scripts/export-member.ts identity.bep 0 member-0.bep
FLOW_BACKUP_PASSPHRASE environment variablebap CLI installed globally# List members
bap list <backup.bep> --password <pass>
# Export member
bap member <backup.bep> --password <pass> --index <n> --output <output.bep>
# Export all members
bap export <backup.bep> --password <pass>