feat: update prompting skill to GPT-5.5 (gpt-5-5-prompting)#366
Open
skyswordw wants to merge 1 commit into
Open
feat: update prompting skill to GPT-5.5 (gpt-5-5-prompting)#366skyswordw wants to merge 1 commit into
skyswordw wants to merge 1 commit into
Conversation
Rename the internal gpt-5-4-prompting skill to gpt-5-5-prompting and rewrite its guidance to match OpenAI's published GPT-5.5 prompt guidance and migration guide: - outcome-first prompts instead of process-heavy XML stacks - recommended skeleton (Role / Personality / Collaboration style / Goal / Success criteria / Constraints / Output / Stop rules) - re-evaluated reasoning effort defaults (5.5 needs fewer reasoning tokens at the same level; higher effort can cause overthinking) - what to delete when migrating a 5.4-era prompt - stopping conditions, retrieval budgets, validation defaults, and tool preambles - XML block library and recipes kept but demoted to opt-in modules Update references in agents/codex-rescue.md and skills/codex-cli-runtime/SKILL.md, and adjust tests. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Renames the internal
gpt-5-4-promptingskill togpt-5-5-promptingand rewrites its guidance to follow OpenAI's published GPT-5.5 prompt guidance and migration guide (developers.openai.com).Motivation
GPT-5.5 reasons more efficiently than GPT-5.4 and pays a real cost for noisy, process-heavy prompts. The current skill still teaches the GPT-5.4-era style (compact XML block stacks by default), which the GPT-5.5 docs explicitly recommend against — carrying a 5.4 prompt stack forward adds noise, narrows the model's search space, and pushes toward mechanical answers. This revives the direction of #301 (closed by its author as local-only) with content checked against the official docs.
Changes
plugins/codex/skills/gpt-5-4-prompting/→plugins/codex/skills/gpt-5-5-prompting/--effortvalues (none–xhigh): start lower than on 5.4, escalate only when the prompt is already tight; higher effort can cause overthinkingmust/never/only) reserved for invariants; decision rules for judgment callsagents/codex-rescue.mdandskills/codex-cli-runtime/SKILL.mdtests/commands.test.mjsTesting
node --test tests/commands.test.mjs: 8/8 passnpm test: 83 pass / 3 fail — the same 3 failures reproduce on unmodifiedmainin my environment (pre-existingruntime.test.mjs/state.test.mjsissues unrelated to this change)🤖 Generated with Claude Code