nxp-monkey families

design / cli / families

Purpose

List downloadable processor families. By default, returns the merged portfolio view (one entry per family, mapped to the newest tool version that publishes it). With an explicit --version, returns only families published in that exact tool version.

Usage

nxp-monkey families [--version VERSION] [--portfolio-latest] [--limit N]

Arguments

FlagEffect
--version VERSIONRestrict to one tool version.
--portfolio-latestExplicit form of the default (newest version per family).
--limit NTruncate the output to the first N families.

Output

Default and --portfolio-latest mode: tab-separated family\tversion. Version-pinned mode: one family name per line.

--json mode

With the global --json flag, families writes families.json to the working directory (mode tag plus the family list with versions when in portfolio-latest mode) and prints that path on stdout instead of the lines / table.

Library equivalent

nxp_monkey.portfolio_latest_map()
nxp_monkey.list_families(version="25.12.10")

Tests

Related