
Codex Debugging
- 49 installs
- 6.5k repo stars
- Updated August 3, 2026
- steipete/agent-scripts
Helps with debugging tasks.
About
codex-debugging is a Claude Code skill for debugging. It helps solo builders move faster with AI-assisted development.
- codex-debugging
- Debugging
- AI-coding skill
Codex Debugging by the numbers
- 49 all-time installs (skills.sh)
- +3 installs in the week ending Jul 27, 2026 (Skillselion tracking)
- Ranked #312 of 597 Debugging skills by installs in the Skillselion catalog
- Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/steipete/agent-scripts --skill codex-debuggingAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 49 |
|---|---|
| repo stars | ★ 6.5k |
| Last updated | August 3, 2026 |
| Repository | steipete/agent-scripts ↗ |
What it does
Helps with debugging tasks.
Files
Codex Debugging
Use when investigating Codex CLI/app behavior, config parsing, tool behavior, prompts, MCP/app wiring, or runtime bugs.
Source First
Prefer local source before web/docs:
cd ~/Projects/codex
sed -n '1,220p' codex-rs/AGENTS.mdThen search targeted areas:
rg "<symbol|setting|error|feature>" codex-rs/{core,tui,exec,cli,app-server,app-server-protocol,config}Workflow
1. Identify whether the behavior is CLI, TUI, app server, protocol, config, or exec/tooling. 2. Read the owning module and adjacent tests before proposing changes. 3. Check local config in ~/.codex/config.toml only after understanding the source contract. 4. Prefer small repros or focused tests over broad speculation.
Notes
- For OpenAI API/product docs, use the official-docs path only when source is insufficient.
- For local browser automation in CLI, use
$browser-use; the bundled Browser plugin is Codex app-only.