docs(codex): document deferred tool mapping#1926
Open
2023Anita wants to merge 1 commit into
Open
Conversation
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.
Who is submitting this PR? (required)
What problem are you trying to solve?
Codex-visible Superpowers skills can refer to legacy or deferred tool names. Issue #1883 notes that Codex sessions may need host-specific adapter wording for cases like
TodoWrite, deferred multi-agent tools, and tool discovery.The existing Codex reference already documents config for multi-agent support, but it names
spawn_agent,wait_agent, andclose_agentdirectly without first telling Codex agents to discover deferred tools throughtool_search, and it does not document theTodoWritetoupdate_planmapping.What does this PR change?
Adds a small Tool Mapping section to
skills/using-superpowers/references/codex-tools.mddocumenting Codex-specific handling for task tracking and deferred multi-agent tools.Is this change appropriate for the core library?
Yes. This is host-adapter documentation for Codex-visible Superpowers skills and belongs in the existing Codex reference file rather than in a project-specific plugin.
What alternatives did you consider?
I considered updating each active skill body, but that would broaden the change and risk disturbing behavior-shaping instructions. Keeping this in the Codex-specific reference file is smaller and follows the existing platform-adaptation structure.
Does this PR contain multiple unrelated changes?
No. It only updates the Codex platform reference with deferred tool and task-list mapping guidance.
Existing PRs
Environment tested
New harness support (required if this PR adds a new harness)
Not applicable. This PR does not add a new harness.
Clean-session transcript for "Let's make a react todo list"
Evaluation
obra/superpowers.tool_searchor map olderTodoWritereferences toupdate_plan. After, those mappings are explicit in the Codex host reference.Verification run:
git diff --check rg -n "TodoWrite|tool_search|spawn_agent|wait_agent|close_agent|update_plan" skills/using-superpowers/references/codex-tools.mdRigor
git diff --checkHuman review