OpenForm
CLICommandsregistry

registry view

Last updated on

View details of an installed artifact

Shows detailed information about an installed artifact.

Usage

ofm registry view <artifact> [options]

Arguments

ArgumentDescription
artifactArtifact reference in @namespace/name format

Options

OptionDescription
--jsonOutput as JSON

Description

Displays comprehensive information about an installed artifact, including:

  • Version and kind
  • Title and description
  • Installation timestamp
  • File path and source URL
  • Downloaded and available layers

Examples

View an artifact:

ofm registry view @acme/residential-lease

Output as JSON:

ofm registry view @acme/residential-lease --json

Output

@acme/residential-lease

Version: 1.0.0
Kind: form
Title: Residential Lease Agreement
Description: Standard residential lease agreement

Installed: 1/15/2025, 10:30:00 AM
Output: yaml
Path: artifacts/@acme/residential-lease.yaml
Source: https://registry.acme.com/r/residential-lease.json

Layers:
  pdf: residential-lease.pdf
  markdown: residential-lease.md

Available layers (not installed): html

Error handling

If the artifact is not installed:

Artifact not installed: @acme/residential-lease
Run 'ofm add @acme/residential-lease' to install it.

See also

  • list - List all installed artifacts
  • add - Install an artifact

On this page