Skip to content

CLI Overview

The UAIF CLI provides commands for detecting project environments, listing registered providers, and validating integration manifests.

Installation

bash
# From monorepo root
pnpm uaif <command>

# Or via npx
npx @uaif/cli <command>

Commands

CommandDescription
detectDetect project environment
listList registered providers
validateValidate integration manifest

Global Options

OptionDescriptionDefault
--dir <path>Project directory to analyzeCurrent directory
--jsonOutput as JSONfalse
--verboseShow detailed outputfalse

Examples

bash
# Detect project environment
npx uaif detect

# List all providers
npx uaif list

# Filter by segment
npx uaif list --segment auth

# Validate manifest
npx uaif validate

# Output as JSON
npx uaif detect --json

See Also

Released under the MIT License.