jan-cli 0.14.0

YAML-defined CLI trees with progressive help, optional exec aliases, merged extra specs, and SQLite audit logging keyed by git branch
Documentation
#!/usr/bin/env python3
"""Retired: personal scripts no longer regenerate from Incubator/scripts/source.

Canonical tree: edit YAML under your preferred jan directory (typically
`dotfiles/jan`). The jan-cli crate ships the engine, install helper, and
examples only — not the personal 215-script bundle.
"""

from __future__ import annotations

import sys


def main() -> int:
    print(
        "generate_scripts_jan_spec.py has been retired.\n"
        "Edit the canonical personal tree (e.g. dotfiles/jan) directly,\n"
        "then `jan use` that directory and `jan bundle` to export.",
        file=sys.stderr,
    )
    return 1


if __name__ == "__main__":
    raise SystemExit(main())