Install
Usage
codex from it.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Run OpenAI’s Codex CLI against any Mirage workspace by mounting it as a real filesystem via FUSE.
uv add 'mirage-ai[fuse]'
from mirage import Mount, MountBackend, MountMode, Workspace
from mirage.vfs.ram import RAMVFS
with Workspace(
{"/": Mount(RAMVFS(), mode=MountMode.WRITE, backend=MountBackend.FUSE)}) as ws:
print(f"cd {ws.fuse_mountpoint} && codex")
input("Press Enter when done...")
codex from it.