The repo is finally unlocked. enjoy the party! The fastest repo in history to surpass 100K stars ⭐. Join Discord: https://discord.gg/5TUQKqFWd Built in Rust using oh-my-codex.
|
|
2 maanden geleden | |
|---|---|---|
| assets | 2 maanden geleden | |
| src | 2 maanden geleden | |
| tests | 2 maanden geleden | |
| .gitignore | 2 maanden geleden | |
| 2026-03-09-is-legal-the-same-as-legitimate-ai-reimplementation-and-the-erosion-of-copyleft.md | 2 maanden geleden | |
| README.md | 2 maanden geleden |
The primary
src/tree in this repository is now dedicated to Python porting work. The March 31, 2026 Claude Code source exposure is part of the project's background, but the tracked repository is now centered on Python source rather than the exposed TypeScript snapshot.
The main source tree is now Python-first.
src/ contains the active Python porting workspacetests/ verifies the current Python workspaceThe current Python workspace is not yet a complete one-to-one replacement for the original system, but the primary implementation surface is now Python.
I originally studied the exposed codebase to understand its harness, tool wiring, and agent workflow. After spending more time with the legal and ethical questions—and after reading the essay linked below—I did not want the exposed snapshot itself to remain the main tracked source tree.
This repository now focuses on Python porting work instead.
.
├── src/ # Python porting workspace
│ ├── __init__.py
│ ├── commands.py
│ ├── main.py
│ ├── models.py
│ ├── port_manifest.py
│ ├── query_engine.py
│ ├── task.py
│ └── tools.py
├── tests/ # Python verification
├── assets/omx/ # OmX workflow screenshots
├── 2026-03-09-is-legal-the-same-as-legitimate-ai-reimplementation-and-the-erosion-of-copyleft.md
└── README.md
The new Python src/ tree currently provides:
port_manifest.py — summarizes the current Python workspace structuremodels.py — dataclasses for subsystems, modules, and backlog statecommands.py — Python-side command port metadatatools.py — Python-side tool port metadataquery_engine.py — renders a Python porting summary from the active workspacemain.py — a CLI entrypoint for manifest and summary outputRender the Python porting summary:
python3 -m src.main summary
Print the current Python workspace manifest:
python3 -m src.main manifest
List the current Python modules:
python3 -m src.main subsystems --limit 16
Run verification:
python3 -m unittest discover -s tests -v
Run the parity audit against the local ignored archive (when present):
python3 -m src.main parity-audit
Inspect mirrored command/tool inventories:
python3 -m src.main commands --limit 10
python3 -m src.main tools --limit 10
The port now mirrors the archived root-entry file surface, top-level subsystem names, and command/tool inventories much more closely than before. However, it is not yet a full runtime-equivalent replacement for the original TypeScript system; the Python tree still contains fewer executable runtime slices than the archived source.
The essay is dated March 9, 2026, so it should be read as companion analysis that predates the March 31, 2026 source exposure that motivated this rewrite direction.
oh-my-codexThe restructuring and documentation work on this repository was AI-assisted and orchestrated with Yeachan Heo's oh-my-codex (OmX), layered on top of Codex.
$team mode: used for coordinated parallel review and architectural feedback$ralph mode: used for persistent execution, verification, and completion disciplinesrc/ tree into a Python-first porting workspaceRalph/team orchestration view while the README and essay context were being reviewed in terminal panes.
Split-pane review and verification flow during the final README wording pass.