Initial commit of dev-config skills and agent configs

This commit is contained in:
2026-06-20 22:46:36 +02:00
commit e57cbfd093
30 changed files with 2002 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
---
name: codex-debugging
description: "Codex debugging: codex-rs core/tui/exec/cli/app-server/config."
---
# 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:
```bash
cd ~/Projects/codex
sed -n '1,220p' codex-rs/AGENTS.md
```
Then search targeted areas:
```bash
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.