SVG Definitions

Keystore Commands

Manage local encrypted keystores used by the Namera CLI.

Namera stores keys as encrypted keystores on disk. The keystore command group lets you create, import, list, inspect, decrypt, and remove those entries.

Command group

  • Group: namera keystore
  • Alias: namera k

Subcommands:

  • create: Generate a new keypair and store it as a keystore
  • import: Import a keystore from an existing private key
  • list: List all stored keystores
  • info: Get metadata for a single keystore
  • decrypt: Decrypt a keystore and print key material
  • remove: Remove a keystore from disk

Interaction modes

Namera CLI is agent-first and supports two modes on every command:

  • Interactive (default). If required fields are missing, the CLI prompts you.
  • Params mode. Pass raw JSON using --params for agent-driven execution.

Get the JSON schema for any command:

namera schema keystore.<command>

Example:

namera schema keystore.create

Common output control

  • --output, -o: pretty (default), json, or ndjson
  • --quite, -q: suppress output entirely

These are global flags and work the same for every keystore subcommand.