Skip to main content

Reusable CLI kernel for building unified command-line interfaces with consistent behavior, output style, help, and extension semantics.

Project description

cli-root-yo

GitHub Release GitHub Tag License: MIT

Reusable CLI kernel for building unified command-line interfaces with consistent behavior, output style, help, and extension semantics. Built on Typer + Rich.

What It Does

cli-root-yo provides the shared foundation that downstream CLI tools build on:

  • Root app factorycreate_app() builds a fully configured Typer app from a declarative spec
  • Built-in commandsversion, info, and optional config/env groups
  • Plugin system — explicit callables + cli_root_yo.plugins entry-point discovery
  • XDG paths — platform-aware config/data/state/cache directory resolution (macOS + Linux)
  • Output primitivesheading, success, warning, error, action, detail, bullet, emit_json
  • Runtime context — immutable singleton accessible to all commands during invocation
  • JSON mode--json/-j flag with deterministic output (indent=2, sorted keys, no ANSI)
  • NO_COLOR — respects the NO_COLOR convention
  • Debug modeCLI_ROOT_YO_DEBUG=1 prints tracebacks to STDERR

Prerequisites

  • Python 3.10+
  • pip

Installation

pip install cli-root-yo

For development:

git clone https://github.com/Daylily-Informatics/cli-root-yo.git
cd cli-root-yo
pip install -e ".[dev]"

Quick Start

from cli_root_yo.spec import CliSpec, XdgSpec
from cli_root_yo.app import run

spec = CliSpec(
    prog_name="my-tool",
    app_display_name="My Tool",
    dist_name="my-tool",
    root_help="A CLI built with cli-root-yo.",
    xdg=XdgSpec(vendor="my-tool"),
)

exit_code = run(spec)

This gives you my-tool version, my-tool info, my-tool --help, --json support, and all the standard behaviors out of the box.

Adding Commands via Plugin

# my_tool/plugin.py
def register(registry, spec):
    registry.add_command(None, "greet", greet_cmd, help_text="Say hello.")

def greet_cmd():
    from cli_root_yo import output
    output.success("Hello, world!")

Register it in your spec:

from cli_root_yo.spec import PluginSpec

spec = CliSpec(
    ...,
    plugins=PluginSpec(explicit=["my_tool.plugin.register"]),
)

Or via entry points in pyproject.toml:

[project.entry-points."cli_root_yo.plugins"]
my-tool = "my_tool.plugin:register"

Config & Env Groups

Enable optional built-in command groups by providing specs:

from cli_root_yo.spec import ConfigSpec, EnvSpec

spec = CliSpec(
    ...,
    config=ConfigSpec(
        primary_filename="config.json",
        template_bytes=b'{"key": "value"}\n',
    ),
    env=EnvSpec(
        env_dir_name=".venv",
        activate_script_rel="bin/activate",
    ),
)

This adds config path|init|show|validate|edit|reset and env status|activate|deactivate|reset.

Public API

Symbol Module Description
create_app(spec) cli_root_yo.app Build a Typer app from a CliSpec
run(spec, argv) cli_root_yo.app Execute CLI, return exit code (never calls sys.exit())
CommandRegistry cli_root_yo.registry Register commands/groups with ordering and conflict detection
get_context() cli_root_yo.runtime Access the current invocation's RuntimeContext
CliSpec, ConfigSpec, EnvSpec, PluginSpec, XdgSpec cli_root_yo.spec Frozen dataclass specs
output.* cli_root_yo.output UX primitives + emit_json()

Exit Codes

Code Meaning
0 Success
1 Domain/runtime failure
2 Usage error (bad args, unknown command)
130 SIGINT

Build / Test / Lint

# Run tests
python -m pytest tests/ -v --cov=cli_root_yo

# Lint + format check
ruff check cli_root_yo tests
ruff format --check cli_root_yo tests

# Type check
mypy cli_root_yo --ignore-missing-imports

# Build distribution
python -m build
twine check dist/*

License

MIT — see LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cli_root_yo-0.1.0.tar.gz (32.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cli_root_yo-0.1.0-py3-none-any.whl (17.0 kB view details)

Uploaded Python 3

File details

Details for the file cli_root_yo-0.1.0.tar.gz.

File metadata

  • Download URL: cli_root_yo-0.1.0.tar.gz
  • Upload date:
  • Size: 32.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for cli_root_yo-0.1.0.tar.gz
Algorithm Hash digest
SHA256 e68a727d457fd0646b58717850d81ffc92ef408e36a2b25fa0a208a88b923edf
MD5 b82559480bb158bb866ed87b77cd7af8
BLAKE2b-256 5ad6d5b5e9cd26944fa72d32d50d8fca428494148c4a811b3e4d358dab43dd67

See more details on using hashes here.

File details

Details for the file cli_root_yo-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: cli_root_yo-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 17.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for cli_root_yo-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 614b58a5c163c347df9c011e5587aed8a708cae3dc9560fb6d16c80d3c8eb091
MD5 18b13ad576cfc5499503f8ba1fdac0ce
BLAKE2b-256 b3ae06f24c54785a59a379e16de8a2fff4cc8e2171af78d3afd1bc3c28f9f0ad

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page