Skip to main content

CALM Command Line Interface (CLI)

The CALM CLI is a set of command-line tools for defining, validating, and generating software architectures using the Common Architecture Language Model (CALM). It enables architects and developers to work with CALM models natively on their systems.


Installation​

The CALM CLI allows you to interact with CALM's schema, enabling you to generate, validate, and visualize your architectural definitions.

Prerequisites​

Before installing CALM, ensure that you have the following prerequisites installed on your system:

  • Node.js: CALM CLI requires Node.js (Node 22 or later is recommended). You can download and install Node.js from nodejs.org.
  • NPM: The Node Package Manager (NPM) is typically included with Node.js, and it’s used to install the CLI.

Installing the CALM CLI​

To install the CALM CLI globally on your machine, run the following command in your terminal:

npm install -g @finos/calm-cli

or if you use Homebrew:

brew install calm-cli

Once the installation is complete, you can verify that the CLI is installed correctly by typing:

calm --version

This command should display the version of the CALM CLI you have installed.

Troubleshooting Installation​

If you encounter issues during the installation, consider the following troubleshooting steps:

  • Permissions Error: If you get a permissions error, try running the installation command with elevated privileges using sudo (Linux/macOS) or running the command prompt as an administrator (Windows).
  • Node Version: Ensure you are using a compatible version of Node.js. Updating to a supported version is recommended.

Basic Usage​

The CALM CLI provides a set of commands that allow you to interact with CALM’s architecture model.

Once installed, you can access the CLI by typing calm in your terminal. This command will display the help text and available commands:

calm

You should see output similar to the following:

Usage: calm [options] [command]

A set of tools for interacting with the Common Architecture Language Model (CALM)

Options:
-V, --version output the version number
-h, --help display help for command

Commands:
generate [options] Generate an architecture from a CALM pattern file.
validate [options] Validate that an architecture conforms to a given CALM pattern.
diff [options] Compare two CALM documents (architectures or patterns) and report what changed.
template [options] Generate files from a CALM model using a template bundle, a single file, or a directory of templates
docify [options] Generate a documentation website from your CALM model using a template or template directory
init-ai [options] Augment a git repository with AI assistance for CALM
help [command] display help for command

AI-Powered Development​

CALM CLI includes AI-powered development assistance through the init-ai command. This feature integrates with various IDEs and Coding Assistants to provide intelligent help with architecture modeling. Learn more in the CALM AI Tools section.


Generating Architectures​

The generate command allows you to create an architecture from a predefined CALM pattern. This command helps you quickly set up the structure of your architecture using reusable patterns, which can then be customized to fit your specific needs.

Basic Usage​

To generate an architecture, you will need a pattern file that defines the architecture template. You can use the generate command with the --pattern option to specify the path to the pattern file:

calm generate -p calm/pattern/api-gateway.json

This will create an architecture in the current working directory with the default filename architecture.json.

Command Options​

  • -p, --pattern <source>: Path to the pattern file to use. This can be a file path or a URL.
  • -o, --output <output>: Path to the location where the generated file will be saved (default is architecture.json).
  • -s, --schema-directory <path>: Path to the directory containing schemas to use in architecture.
  • -c, --calm-hub-url <url>: URL to CALMHub instance.
  • -u, --url-to-local-file-mapping <path>: Path to a JSON file that maps URLs to local file paths (see URL Mapping below).
  • --option-choices <choices>: Pre-defined option choices as a JSON object, or a path to a JSON file. Skips interactive prompts (see Pattern Options below).
  • -v, --verbose: Enable verbose logging.

Example​

Here is an example command that generates an architecture from a CALM pattern file and saves it with a custom filename:

calm generate -p calm/pattern/microservices.json -o my-architecture.json

This command uses the microservices.json pattern and outputs the result to my-architecture.json.

Pattern Options​

Some CALM patterns contain options relationships that present a choice of which nodes and relationships to include in the generated architecture. When you run calm generate against such a pattern, the CLI will interactively prompt you to make each choice.

Interactive prompts​

For each options relationship in the pattern, the CLI will ask you to select a choice:

  • oneOf options present a single-select prompt β€” you must pick exactly one.
  • anyOf options present a multi-select prompt β€” you can pick zero or more.

Pre-defining choices non-interactively​

You can skip the interactive prompts by passing --option-choices with a JSON object that maps each option's unique-id to the chosen description(s).

  • For oneOf options, supply a string (exactly one choice).
  • For anyOf options, supply a string or an array of strings (one or more choices).
# oneOf option β€” single string
calm generate -p pattern.json --option-choices '{"connection-options": "Application A connects to Application C"}'

# anyOf option β€” array of strings
calm generate -p pattern.json --option-choices '{"node-options": ["Node 1", "Node 2"]}'

# Mixed oneOf and anyOf
calm generate -p pattern.json --option-choices '{"connection-options": "Application A connects to Application C", "node-options": ["Node 1", "Node 2"]}'

You can also save the choices to a file in the same JSON format and pass the path instead:

{
"connection-options": "Application A connects to Application C",
"node-options": ["Node 1", "Node 2"]
}
calm generate -p pattern.json --option-choices choices.json

The keys in the object must match the unique-id of the options relationship in the pattern. The values must match the description of one or more of the available choices within that option.

tip

After running calm generate interactively, the CLI prints your selections in the --option-choices format so you can save them for later use:

info: Selected choices (reusable with --option-choices): {"connection-options":"Application A connects to Application C","node-options":["Node 1","Node 2"]}

URL to Local File Mapping​

When developing patterns locally, you may want to reference Standards or other schemas via canonical URLs (e.g., https://example.com/standards/node-standard.json) while the actual files exist on your local filesystem. The -u, --url-to-local-file-mapping option allows you to map these URLs to local paths.

Mapping File Format​

Create a JSON file that maps URLs to relative file paths:

{
"https://example.com/standards/node-standard.json": "standards/node-standard.json",
"https://example.com/standards/relationship-standard.json": "standards/relationship-standard.json"
}

Paths in the mapping file are resolved relative to the mapping file's location.

Example Usage​

calm generate -p pattern.json -o architecture.json -u url-mapping.json

Relative Path Resolution​

For patterns that don't have an $id field, the CLI automatically resolves relative $ref paths against the pattern file's directory. For example, if your pattern is at patterns/my-pattern.json and contains:

{
"$ref": "standards/my-standard.json"
}

The CLI will look for the standard at patterns/standards/my-standard.json.


Validating Architectures​

The validate command is used to check if an architecture conforms to a given CALM pattern. Validation helps ensure that your architecture adheres to best practices and meets the required standards.

Basic Usage​

To validate an architecture against a pattern, use the validate command with the --pattern and --architecture options:

calm validate -p calm/pattern/api-pattern.json -a architecture.json

If the architecture does not match the pattern, the command will output a list of errors and warnings that need to be addressed.

Command Options​

  • -p, --pattern <pattern>: Path to the pattern file. This can be a local file path or a URL.
  • -a, --architecture <architecture>: Path to the architecture file to validate.
  • --timeline <timeline>: Path to the timeline file to validate.
  • -s, --schema-directory <path>: Path to the directory containing the meta schemas to use.
  • -c, --calm-hub-url <url>: URL to CALMHub instance.
  • -u, --url-to-local-file-mapping <path>: Path to a JSON file that maps URLs to local file paths (see URL Mapping below).
  • --strict: When enabled, the CLI will fail if any warnings are reported (default: false).
  • -f, --format <format>: The format of the output (choices: "json", "junit", "pretty", default: "json").
  • -o, --output <file>: Path location at which to output the validation results.
  • -v, --verbose: Enable verbose logging to see detailed validation output.

Example of Architecture Validation​

Here is an example command that validates an architecture against a pattern and outputs the results in JSON format:

calm validate -p calm/pattern/api-pattern.json -a my-architecture.json -f json

This command will check if my-architecture.json conforms to the api-pattern.json and display any validation errors or warnings.

Example of Timeline Validation​

Here is an example command that validates a timeline and outputs the results in JSON format:

calm validate --timeline calm/architecture/calm.timeline.json -f json

This command will check if calm.timeline.json conforms to the timeline schema and display any validation errors or warnings.

URL to Local File Mapping (Validate)​

Refer to the URL to Local File Mapping instructions above under the Generate section. The mapping behavior is identical.

Validation Server​

The separate @finos/calm-server package provides a network accessible validation server.


Documenting Architectures (Docify)​

The docify command transforms a CALM architecture JSON file into human-readable documentation. It supports two primary output modes:

  • Website generation β€” uses the built-in template bundle to produce a fully structured Markdown documentation site ready to publish with a static site generator.
  • Custom Markdown reports β€” uses your own Handlebars (.hbs) or Markdown (.md) templates to render bespoke reports, conformance summaries, runbooks, or any other document format you need.

In both modes, docify processes your architecture model through a set of templates and writes the resulting files to an output directory. Template rendering is powered by CALM Widgets β€” a Handlebars-based component system that provides built-in helpers for tables, lists, Mermaid diagrams, and more.

Basic Usage​

Generate a documentation website​

To generate a documentation website using the built-in template bundle, provide the path to your architecture file and the directory where the output should be written:

calm docify -a architecture.json -o docs/output

This uses the default website template bundle and produces a fully structured Markdown documentation site in docs/output.

Generate a custom Markdown report​

To produce a tailored document β€” such as a compliance report or runbook β€” supply your own template:

calm docify -a architecture.json -o reports/ -t my-report-template.hbs

Or point to a directory of templates to generate multiple output files in one pass:

calm docify -a architecture.json -o reports/ -d my-templates/

Command Options​

  • -a, --architecture <file>: (required) Path to the CALM architecture JSON file.
  • -o, --output <file>: (required) Path to the output directory where the generated documentation will be written.
  • --clear-output-directory: Clear the output directory before processing (default: false).
  • -t, --template <path>: Path to a single .hbs or .md template file to use instead of the built-in bundle.
  • -d, --template-dir <path>: Path to a directory of .hbs/.md templates to use instead of the built-in bundle.
  • -u, --url-to-local-file-mapping <path>: Path to a JSON file that maps URLs to local file paths.
  • --scaffold: Copy the built-in template files into the output directory without processing them. Use this to obtain a starting point for customisation or for live-reload workflows.
  • --export-diagrams <svg|png>: Render Mermaid diagrams in the generated documentation to image files using a local Chromium-based browser, replacing each diagram's code block with an image reference. Adds roughly 10-40 seconds depending on the number of diagrams.
  • --browser-path <path>: Path to a Chromium-based browser executable. Only needed if automatic detection (Chrome, then Edge) fails when using --export-diagrams.
  • --diagram-render-timeout <ms>: Per-diagram render timeout in milliseconds, only used with --export-diagrams (default: 30000).
  • -v, --verbose: Enable verbose logging.

Examples​

Generate website with the built-in bundle​

calm docify -a my-architecture.json -o docs/output

Generate a custom Markdown report from a single template​

calm docify -a my-architecture.json -o reports/ -t templates/compliance-report.hbs

Generate multiple documents from a template directory​

calm docify -a my-architecture.json -o reports/ -d my-templates/

Scaffold the built-in templates for customisation​

calm docify -a my-architecture.json -o docs/output --scaffold

Export Mermaid diagrams as images​

calm docify -a my-architecture.json -o docs/output --export-diagrams svg

This requires Google Chrome or Microsoft Edge to be installed locally (detected automatically), or a Chromium-based browser path supplied via --browser-path. If no browser is found, documentation is still generated with diagrams left as Mermaid code blocks.


Interacting with CALM Hub​

warning

The hub command group is under active development. Functionality may change without notice.

The hub command group allows you to interact with a running CALM Hub instance directly from the CLI. You can use it to manage Namespaces, Architectures, Standards, Patterns, Domains and Controls stored in CALM Hub.

Connecting to CALM Hub​

All hub subcommands accept a -c, --calm-hub-url <url> option that specifies the base URL of the CALM Hub instance to connect to:

calm hub list namespaces -c http://localhost:8080

If -c is omitted, the CLI will look for a calmHubUrl property in ~/.calm.json and use that value as a fallback:

~/.calm.json
{
"calmHubUrl": "http://localhost:8080"
}

Document Identity and Versioning​

CALM Hub uses the $id field inside each document to determine its addressing: the namespace, resource type, mapping slug, and version are all parsed from $id. When you push a document, the CLI reads the current $id, computes the next semver version automatically, rewrites $id in the local file with the new version, then uploads it. You never need to pass a namespace, ID, or version on the command line for push operations.

The -t, --change-type option controls which semver component is incremented on each push (default: patch):

ValueExample jump
patch (default)1.0.0 β†’ 1.0.1
minor1.0.0 β†’ 1.1.0
major1.0.0 β†’ 2.0.0

Managing Namespaces​

Namespaces are used to organise architectures within CALM Hub.

List namespaces​

To list all namespaces in CALM Hub:

calm hub list namespaces -c http://localhost:8080

Options:

  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.
  • -f, --format <format>: Output format β€” json (default) or pretty. The pretty format renders results as an ASCII table with columns NAME and DESCRIPTION.

Create a namespace​

To create a new namespace, provide a name and a description:

calm hub create namespace --name my-namespace --description "Architectures for the payments domain" -c http://localhost:8080

Options:

  • --name <name>: (required) The name of the namespace to create.
  • --description <description>: (required) A short description of the namespace.
  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.
  • -f, --format <format>: Output format β€” json (default) or pretty.

Managing Architectures​

List architectures​

To list all architecture mapping slugs stored in a namespace:

calm hub list architectures --namespace my-namespace -c http://localhost:8080

Options:

  • --namespace <namespace>: The namespace to list architectures from (default: default).
  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.
  • -f, --format <format>: Output format β€” json (default) or pretty. The pretty format renders results as an ASCII table with column MAPPING.

Push an architecture​

The document's $id field determines the target namespace, resource type, and mapping slug. The CLI computes the next version, rewrites $id in the local file, and uploads the document.

calm hub push architecture my-architecture.json -c http://localhost:8080

Options:

  • --name <name>: Optional display name override (falls back to the document's title field).
  • --description <description>: Optional description override (falls back to the document's description field).
  • -t, --change-type <type>: Semver bump type β€” patch (default), minor, or major.
  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.
  • -f, --format <format>: Output format β€” json (default) or pretty.

Pull an architecture​

To download an architecture from CALM Hub, provide the namespace and mapping slug. Omit --ver to pull the latest version:

calm hub pull architecture \
--namespace my-namespace \
--mapping my-architecture \
-c http://localhost:8080

By default the architecture JSON is written to stdout. Use -o to write it to a file instead:

calm hub pull architecture \
--namespace my-namespace \
--mapping my-architecture \
--ver 1.0.0 \
-o pulled-architecture.json \
-c http://localhost:8080

Options:

  • --namespace <namespace>: (required) The namespace the architecture belongs to.
  • -m, --mapping <mapping>: (required) The mapping slug of the architecture.
  • --ver <version>: Version to retrieve (defaults to latest).
  • -o, --output <file>: Write the architecture JSON to a file instead of stdout.
  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.

Managing Patterns​

List patterns​

To list all pattern mapping slugs stored in a namespace:

calm hub list patterns --namespace my-namespace -c http://localhost:8080

Options:

  • --namespace <namespace>: The namespace to list patterns from (default: default).
  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.
  • -f, --format <format>: Output format β€” json (default) or pretty. The pretty format renders results as an ASCII table with column MAPPING.

Push a pattern​

The document's $id field determines the target namespace, resource type, and mapping slug. The CLI computes the next version, rewrites $id in the local file, and uploads the document.

calm hub push pattern my-pattern.json -c http://localhost:8080

Options:

  • --name <name>: Optional display name override (falls back to the document's title field).
  • --description <description>: Optional description override.
  • -t, --change-type <type>: Semver bump type β€” patch (default), minor, or major.
  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.
  • -f, --format <format>: Output format β€” json (default) or pretty.

Pull a pattern​

To download a pattern from CALM Hub, provide the namespace and mapping slug. Omit --ver to pull the latest version:

calm hub pull pattern \
--namespace my-namespace \
--mapping my-pattern \
-c http://localhost:8080

By default the pattern JSON is written to stdout. Use -o to write it to a file instead:

calm hub pull pattern \
--namespace my-namespace \
--mapping my-pattern \
--ver 1.0.0 \
-o pulled-pattern.json \
-c http://localhost:8080

Options:

  • --namespace <namespace>: (required) The namespace the pattern belongs to.
  • -m, --mapping <mapping>: (required) The mapping slug of the pattern.
  • --ver <version>: Version to retrieve (defaults to latest).
  • -o, --output <file>: Write the pattern JSON to a file instead of stdout.
  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.

Managing Standards​

List standards​

To list all standard mapping slugs stored in a namespace:

calm hub list standards --namespace my-namespace -c http://localhost:8080

Options:

  • --namespace <namespace>: The namespace to list standards from (default: default).
  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.
  • -f, --format <format>: Output format β€” json (default) or pretty. The pretty format renders results as an ASCII table with column MAPPING.

Push a standard​

The document's $id field determines the target namespace, resource type, and mapping slug. The CLI computes the next version, rewrites $id in the local file, and uploads the document.

calm hub push standard my-standard.json -c http://localhost:8080

Options:

  • --name <name>: Optional display name override (falls back to the document's title field).
  • --description <description>: Optional description override.
  • -t, --change-type <type>: Semver bump type β€” patch (default), minor, or major.
  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.
  • -f, --format <format>: Output format β€” json (default) or pretty.

Pull a standard​

To download a standard from CALM Hub, provide the namespace and mapping slug. Omit --ver to pull the latest version:

calm hub pull standard \
--namespace my-namespace \
--mapping my-standard \
-c http://localhost:8080

By default the standard JSON is written to stdout. Use -o to write it to a file instead:

calm hub pull standard \
--namespace my-namespace \
--mapping my-standard \
--ver 1.0.0 \
-o pulled-standard.json \
-c http://localhost:8080

Options:

  • --namespace <namespace>: (required) The namespace the standard belongs to.
  • -m, --mapping <mapping>: (required) The mapping slug of the standard.
  • --ver <version>: Version to retrieve (defaults to latest).
  • -o, --output <file>: Write the standard JSON to a file instead of stdout.
  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.

Managing Domains​

Domains are used to organise controls in CALM Hub.

List domains​

To list all domains:

calm hub list domains -c http://localhost:8080

Options:

  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.
  • -f, --format <format>: Output format β€” json (default) or pretty. The pretty format renders results as an ASCII table with column NAME.

Create a domain​

To create a new domain, provide a name:

calm hub create domain --name risk -c http://localhost:8080

Options:

  • --name <name>: (required) The name of the domain to create.
  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.
  • -f, --format <format>: Output format β€” json (default) or pretty.

Managing Controls​

Controls are organised within domains and addressed by name.

List controls​

To list all controls in a domain:

calm hub list controls --domain risk -c http://localhost:8080

Options:

  • --domain <domain>: (required) The domain to list controls from.
  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.
  • -f, --format <format>: Output format β€” json (default) or pretty. The pretty format renders results as an ASCII table with columns NAME, ID, and DESCRIPTION.

Push a control requirement version​

The document's $id determines the domain, control name, and version. The CLI computes the next semver version automatically, rewrites $id in the local file, and uploads the document.

calm hub push control-requirement my-control-requirement.json -c http://localhost:8080

Options:

  • -t, --change-type <type>: Semver bump type β€” patch (default), minor, or major.
  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.
  • -f, --format <format>: Output format β€” json (default) or pretty.

Pull a control requirement version​

To download a control requirement from CALM Hub, provide the domain and control name. Omit --ver to pull the latest version:

calm hub pull control-requirement \
--domain risk \
--control-name access-control \
-c http://localhost:8080

By default the requirement JSON is written to stdout. Use -o to write it to a file instead:

calm hub pull control-requirement \
--domain risk \
--control-name access-control \
--ver 1.0.0 \
-o pulled-control-requirement.json \
-c http://localhost:8080

Options:

  • --domain <domain>: (required) The source domain.
  • --control-name <controlName>: (required) The control name.
  • --ver <version>: Version to retrieve (defaults to latest).
  • -o, --output <file>: Write the requirement JSON to a file instead of stdout.
  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.

Managing Control Configurations​

List control configurations​

To list all configurations for a control:

calm hub list control-configurations \
--domain risk \
--control-name access-control \
-c http://localhost:8080

Options:

  • --domain <domain>: (required) The target domain.
  • --control-name <controlName>: (required) The control name.
  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.
  • -f, --format <format>: Output format β€” json (default) or pretty. The pretty format renders results as an ASCII table with columns NAME, ID, and DESCRIPTION.

Push a control configuration version​

The document's $id determines the domain, control name, configuration name, and version. The CLI computes the next semver version automatically, rewrites $id in the local file, and uploads the document.

calm hub push control-configuration my-control-configuration.json -c http://localhost:8080

Options:

  • -t, --change-type <type>: Semver bump type β€” patch (default), minor, or major.
  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.
  • -f, --format <format>: Output format β€” json (default) or pretty.

Pull a control configuration version​

To download a control configuration from CALM Hub, provide the domain, control name, and configuration name. Omit --ver to pull the latest version:

calm hub pull control-configuration \
--domain risk \
--control-name access-control \
--config-name prod \
-c http://localhost:8080

By default the configuration JSON is written to stdout. Use -o to write it to a file instead:

calm hub pull control-configuration \
--domain risk \
--control-name access-control \
--config-name prod \
--ver 1.0.0 \
-o pulled-control-configuration.json \
-c http://localhost:8080

Options:

  • --domain <domain>: (required) The source domain.
  • --control-name <controlName>: (required) The control name.
  • --config-name <configName>: (required) The configuration name.
  • --ver <version>: Version to retrieve (defaults to latest).
  • -o, --output <file>: Write the configuration JSON to a file instead of stdout.
  • -c, --calm-hub-url <url>: URL to the CALM Hub instance.

Output Formats​

All hub subcommands support a -f, --format <format> option with two choices:

  • json (default) β€” outputs the raw JSON response from CALM Hub. Suitable for piping into other tools or scripts.
  • pretty β€” renders the output as a human-readable ASCII table. Available for list commands; for push and pull commands it formats the response in a more readable way.