Rhi ecosystem monorepo: Lua-based tools, scaffolds, and orchestration.
zone/
├── wisteria/ # Autonomous task execution
│ ├── init.lua # Entry point
│ └── wisteria/ # Submodules
├── seeds/ # Project templates for myenv
│ ├── creation/ # New project from scratch
│ ├── archaeology/ # Lift a legacy game
│ └── lab/ # Full ecosystem sandbox
└── docs/ # VitePress documentation
| Project | Description |
|---|---|
| wisteria | Autonomous task execution with LLM + moss |
Each Lua project is self-contained in its own directory. To run a project:
cd wisteria
moonlet init # First time only - creates .moonlet/config.toml
moonlet run .# Use myenv with zone seeds
myenv new my-project --seed zone:creationnix develop # Enter dev shell
bun run dev # Start docs server (from docs/)