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 (default gpt-5).
  • --agent-model <model> – Forwarded to gather when the command refreshes knowledge before running Codex.
  • --skip-gather – Reuse existing knowledge files without calling gather or map first.

Inputs & Outputs

  • Inputs: textual task prompt and the current Ouro knowledge base.
  • Outputs: Codex streams its actions to stdout. After a successful run, gather/map may 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.