Initial upload: Add repohealth-cli project with CI/CD workflow
Some checks failed
CI / test (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-02-05 17:13:55 +00:00
parent af3263ea05
commit 64512e61f5

View File

@@ -0,0 +1,24 @@
"""CLI interface for RepoHealth."""
import click
from repohealth.cli.cli import main, analyze, report
__all__ = ["main", "analyze", "report"]
@click.group()
def main():
"""RepoHealth CLI - Analyze Git repositories for bus factor and knowledge concentration."""
pass
@main.command()
def analyze():
"""Analyze a repository for bus factor and knowledge distribution."""
pass
@main.command()
def report():
"""Generate a detailed report of repository analysis."""
pass