OpenAI CLI

TokRepo pour OpenAI Codex

OpenAI Codex CLI. AGENTS.md is the project memory; ~/.codex/skills/ hosts installable skills.

Docs officielles : https://github.com/openai/codex

Intégration 60 secondes

Chemin le plus court pour OpenAI Codex

  1. 01
    npx -y tokrepo@latest init-agent --target codex
  2. 02
    codex --mcp-server tokrepo -- npx -y tokrepo-mcp-server
  3. 03
    npx -y tokrepo install <uuid> --target codex --dry-run --json
Fichier de règles du projet
AGENTS.md
Surface d'installation
~/.codex/skills/
Client MCP
codex --mcp-server
Commande d'installation MCP
codex --mcp-server tokrepo -- npx -y tokrepo-mcp-server
Six règles obligatoires

Chaque runtime d'agent applique

  • SESSION BOOTSTRAP — call tokrepo_session_init once per session.
  • DISCOVER BEFORE BUILD — call tokrepo_discover before writing reusable artifacts.
  • VERIFY BEFORE INSTALL — install_plan must include trust_gate; honor TOKREPO_MIN_TRUST (default 0.6).
  • DRY-RUN BEFORE APPLY — lifecycle tools default dry_run=true.
  • HANDOFF AFTER REUSABLE WORK — call tokrepo_handoff_plan.
  • PRIVATE BY DEFAULT, NEVER PUSH SECRETS.