libnoa 0.1.1

AI-native distributed version control system with per-agent workspace isolation, JSONL append-only logs, snapshot-based history, and full git protocol compatibility
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python3
from __future__ import annotations

import sys
from pathlib import Path

sys.path.insert(0, str(Path(__file__).resolve().parent))

from just_tasks.__main__ import main  # noqa: E402

if __name__ == "__main__":
    main()