Skip to content
forked from openai/codex

An opinionated Codex CLI and Windows App

License

Notifications You must be signed in to change notification settings

Loongphy/codext

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3,380 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Codex

Codex build

TUI

This is strictly a personal hobby project, forked from openai/codex.

Quick Start

cd codex-rs
cargo run --bin codex

Project Goals

We will never merge code from the upstream repo; instead, we re-implement our changes on top of the latest upstream code.

Iteration flow (aligned with .agents/skills/codex-upstream-reapply):

flowchart TD
    A[Freeze old branch: commit changes + intent docs] --> B[Fetch upstream tags]
    B --> C[Pick tag + create new branch from tag]
    C --> D[Generate reimplementation bundle]
    D --> E[Read old branch + bundle for intent]
    E --> F[Re-implement changes on new branch]
    F --> G[Sanity check diffs vs tag]
    G --> H[Force-push to fork main]
Loading

Important

DO NOT USE IN PRODUCTION. To keep upstream sync easy, we do not write test code for what we changed. This project is for experimental use only.

  • DX Focused: Focus strictly on optimizing developer experience, without adding new features.
  • Upstream Sync: We sync with the upstream repository regularly.

What Changed

  • Added a TUI status header with model/effort, cwd, git summary, and rate-limit status.
  • Collaboration mode presets now accept per-mode overrides and default to the active /model settings.
  • TUI watches auth.json for external login changes and reloads auth automatically (with a warning on account switch).
  • Full change log: see CHANGED.md.

AGENT Local development check

  1. DO NOT update any test codes
  2. After making code changes, verify the CLI still launches:
cd ./codex-rs
cargo run --bin codex
# config.toml
[collaboration_modes.plan]
model = "gpt-5.2-codex"
reasoning_effort = "xhigh"

[collaboration_modes.code]
model = "gpt-5.2-codex"

Skills

When syncing to the latest upstream codex version, use .agents/skills/codex-upstream-reapply to re-implement our custom requirements on top of the newest code, avoiding merge conflicts from the old branch history.

Example:

$codex-upstream-reapply old_branch feat/rust-v0.94.0, new origin tag: rust-v0.98.0

Credits

Status bar design reference: https://linux.do/t/topic/1481797

About

An opinionated Codex CLI and Windows App

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Rust 95.6%
  • TypeScript 2.7%
  • Python 1.0%
  • Starlark 0.2%
  • Shell 0.2%
  • PowerShell 0.1%
  • Other 0.2%