x
Overview
Hands control to the external codex CLI so it can implement a requested change using Ouro knowledge as context. Before invoking Codex the command loads the ontology, docs map, and technology graph; it optionally runs gather to refresh those artefacts.
Usage
ouro x [--codex-model <model>] [--agent-model <model>] [--skip-gather] <prompt>
Key Options
--codex-model <model>– Override the Codex model steering the autonomous run (defaultgpt-5).--agent-model <model>– Forwarded togatherwhen the command refreshes knowledge before running Codex.--skip-gather– Reuse existing knowledge files without callinggatherormapfirst.
Inputs & Outputs
- Inputs: textual task prompt and the current Ouro knowledge base.
- Outputs: Codex streams its actions to stdout. After a successful run,
gather/mapmay run again to capture new dependencies.
When to Use
- Automate development tasks where Codex has sufficient context to propose and apply changes autonomously.
- Rapidly prototype fixes while keeping the ontology enforced.
Follow-up Checklist
- Inspect the resulting diffs carefully and run project tests.
- Commit only after reviewing the Codex summary and verifying knowledge artefacts remain consistent.