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
12
13
14
def parse_payload(raw):
    try:
        return raw["payload"]
    except:
        return None


def require_ready(value):
    assert value is not None
    return value


def unfinished():
    raise NotImplementedError("wire provider")