Skip to main content
The Credible CLI (cred) is a powerful command-line interface for managing semantic data models, packages, projects, and connections in the Credible Data platform. Built for data engineers and DevOps professionals, it enables automated workflows and seamless CI/CD integration.

Installation

Prerequisites: Node.js version 18+ and npm package manager
Install the Credible CLI globally from the npm registry:
npm install -g @ms2data/cred-cli
View package details at npmjs.com/package/@ms2data/cred-cli

Core Commands

The CLI supports bash/zsh autocompletion. Type cred + TAB to see available commands, or cred ls + TAB to see resource types (project, package, connection, version, group).

Authentication & Session

Login

Authenticate with your organization via Auth0:
cred login <organizationName>

Check Status

View your current organization and project:
cred status

Logout

Clear stored credentials:
cred logout

Resource Management

  • Projects
  • Packages
  • Connections
  • Groups

List Projects

cred ls project

Get Project Details

cred get project <projectName>

Create Project

cred add project <projectName> [--readmeFile <path>] [-y]
Options:
  • --readmeFile: Path to README file to include

Delete Project

cred rm project <projectName> [-y]

Set Default Project

cred set project <projectName>
Setting a default project only applies to CLI sessions - it doesn’t affect any web experiences

Command Options

Global Options

OptionDescription
-V, --versionDisplay version number
-h, --helpDisplay help (use alone for general help or after a command for specific help)
--debugEnable debug output (most commands)
-y, --yesSkip confirmation prompts
--set-latestSet published version as the latest (publish command)
I