Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

carry status

Display information about the current repository.

Synopsis

carry status [--repo <PATH>] [--format <FMT>]

Description

Shows the resolved .carry/ repository path and DID.

Options

FlagDescription
--repo <PATH>Path to .carry/ repository
--format <FMT>Output format: yaml (default) or json

Examples

# Show status
carry status

# Show status as JSON
carry status --format json

Output

Repo: /path/to/project/.carry
DID: did:key:zAbc123

With --format json:

{
  "repo": "/path/to/project/.carry",
  "did": "did:key:zAbc123"
}