This is the advanced path. For the recommended public setup, start with the quickstart. Fleet Pi ships a shared Codex local environment so new Codex worktree threads can bootstrap the repo consistently.Documentation Index
Fetch the complete documentation index at: https://docs.qredence.ai/llms.txt
Use this file to discover all available pages before exploring further.
Shared environment
- Environment definition:
.codex/environments/environment.toml - Setup entrypoint:
.codex/workspace-bootstrap.zsh
Setup behavior
The current setup script is intentionally bootstrap-only:agent-workspace/ remains the durable adaptive layer, while Codex setup only bootstraps the local worktree so later commands can operate on the repo safely.
Expectations
nodeandpnpmmust already be available on the machine.- The script should stay focused on dependency and bootstrap work.
- Do not put long-running processes in the setup script.
- Do not rely on
exportstatements in the setup script for later Codex turns — setup runs in a separate shell session.
Suggested Codex actions
After the worktree is ready, add separate Codex actions for the common repo workflows so each action can be invoked independently from a Codex thread:Related
Quickstart
Standalone setup without the Codex worktree flow.
Adaptive workspace contract
Why setup scripts must not touch canonical workspace state.