Skip to content

config

The kilm config command group allows you to inspect and manage the libraries registered in your KiLM configuration (config.yaml) and control settings like the default library.

Subcommands

Lists the configured libraries.

Usage

Terminal window
kilm config list [OPTIONS]

Options

  • --type [github|cloud|all]: Filters the libraries shown by type.

    • github: Shows symbol/footprint/template libraries.
    • cloud: Shows 3D model libraries.
    • all: Shows all types (default). Example: kilm config list --type github
  • -v, --verbose: Displays more detailed information about each library, reading from both config.yaml and the library’s metadata file (kilm.yaml or .kilm_cloud_metadata). Shows path, description, version, environment variable, capabilities/model count, etc. Example: kilm config list --verbose

  • --help: Show the help message and exit.

Examples

List all configured libraries (basic view):

Terminal window
kilm config list

List only symbol/footprint libraries:

Terminal window
kilm config list --type github

List all libraries with detailed information:

Terminal window
kilm config list --verbose

List only 3D model libraries with details:

Terminal window
kilm config list --type cloud --verbose