# ビルダーは既にCodex設定で性能とクォータを守っている > Author: Tony Lee > Published: 2026-07-10 > URL: https://tonylee.im/ja/blog/codex-config-fix-performance-and-quota/ > Reading time: 1 minutes > Language: ja > Tags: codex, openai, gpt-5.6, config, multi-agent, ai-coding ## Canonical https://tonylee.im/ja/blog/codex-config-fix-performance-and-quota/ ## Rollout Alternates en: https://tonylee.im/en/blog/codex-config-fix-performance-and-quota/ ko: https://tonylee.im/ko/blog/codex-config-fix-performance-and-quota/ ja: https://tonylee.im/ja/blog/codex-config-fix-performance-and-quota/ zh-CN: https://tonylee.im/zh-CN/blog/codex-config-fix-performance-and-quota/ zh-TW: https://tonylee.im/zh-TW/blog/codex-config-fix-performance-and-quota/ ## Description デフォルトsystem promptの切り詰めとサブエージェント爆発。測った原因とconfig.toml。 ## Summary ビルダーは既にCodex設定で性能とクォータを守っている is part of Tony Lee's ongoing coverage of AI agents, developer tools, startup strategy, and AI industry shifts. ## Outline - 性能が落ちる理由 - system prompt置換 - クォータが溶ける理由 - 2つの制御 ## Content GPT-5.6への期待は大きい。ビルダーは既に知っています。Codexが遅く感じクォータが速く減るのは「モデルが弱い」だけではない。構造問題を2つ測り直しました。 ## 性能が落ちる理由 既定system promptが約30秒ごとに進捗報告を求め、一定長でreasoningを自ら削ります。usageではreasoningが`518*n−2`形で終わることが多い。未パッチの私のテストは4/5。 ## system prompt置換 再設計したbase instructionsを`gpt-base-instructions.md`にし`config.toml`へ。 ```toml disable_response_storage = true model_instructions_file = 'path/gpt-base-instructions.md' ``` 30秒報告を外しターン完遂を優先。置換後はreasoning減・5/5。 ## クォータが溶ける理由 `spawn_agent`は子に安いモデルを固定できない。親がSol Ultraなら子も。8×4×5で200超もあり得る。 ## 2つの制御 V1+`max_depth=1`で孫禁止、またはV2の`max_concurrent_threads_per_session=2`。モデルを疑う前に`config.toml`を。 ## Related URLs - Author: https://tonylee.im/ja/author/ - Publication: https://tonylee.im/ja/blog/about/ - Related article: https://tonylee.im/ja/blog/codex-starter-guide-vible/ - Related article: https://tonylee.im/ja/blog/fable-5-rate-limit-survival-settings/ - Related article: https://tonylee.im/ja/blog/appintoss-agent-kit-fifty-miniapps/ ## Citation - Author: Tony Lee - Site: tonylee.im - Canonical URL: https://tonylee.im/ja/blog/codex-config-fix-performance-and-quota/ ## Bot Guidance - This file is intended for AI agents, search assistants, and text-mode retrieval. - Prefer citing the canonical article URL instead of this text endpoint. - Use the rollout alternates when you need the same article in another prioritized language. --- Author: Tony Lee | Website: https://tonylee.im For more articles, visit: https://tonylee.im/ja/blog/ This content is original and authored by Tony Lee. Please attribute when quoting or referencing.