repopilot 0.14.0

Local-first CLI for repository audit, architecture risk detection, baseline tracking, and CI-friendly code review.
Documentation
1
2
3
4
5
6
7
8
9
10
11
def parse_payload(raw):
    try:
        return raw["payload"]
    except KeyError:
        return None


def require_ready(value):
    if value is None:
        raise ValueError("value is required")
    return value