skillpack 0.13.2

Generate, verify, and maintain AI agent guidance (skills, plugins, AGENTS.md) for Claude Code, Cursor, Codex, Copilot, and 10+ AI coding ecosystems — one command turns any CLI or library into an agent-discoverable skill pack.
Documentation
"""Entry point for the sample_python CLI.

Mirrors the `[project.scripts]` target in pyproject.toml
(`sample-python = "sample_python.cli:main"`). Prints a `--help` usage line so
skillpack's invocation check can capture it.
"""

import sys


def main() -> None:
    argv = sys.argv[1:]
    if "--help" in argv or "-h" in argv:
        print("Usage: sample-python [--lint] [--fix]")
        return
    print("sample-python")


if __name__ == "__main__":
    main()