docs(cursor): fix leftover OpenCode references in cursor template#398
Open
msdjzmst wants to merge 1 commit into
Open
docs(cursor): fix leftover OpenCode references in cursor template#398msdjzmst wants to merge 1 commit into
msdjzmst wants to merge 1 commit into
Conversation
The cursor template.md was copy-pasted from opencode template.md in PR fujibee#189 (feat/cursor-type) but three user-facing strings still refer to "OpenCode" instead of the correct agent name. Replace them with "Cursor CLI" to match the naming convention used by other CLI-only types (e.g. "Copilot CLI"). Affected lines (all in scripts/drivers/types/cursor/template.md): - L61 delivery-mode picker footnote - L109 actas confirmation message - L122 mode-set rejection message No behavior change — this is a documentation/user-facing string fix.
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
The cursor agent-type template still refers to "OpenCode" in three user-facing strings — these are leftovers from the initial copy of
opencode/template.mdwhen cursor support landed in #189 (feat/cursor-type). The delivery-mode constraint they describe (no Monitor tool, onlyturn/off) is correct for cursor as declared inscripts/drivers/types/cursor/type.conf(monitor=no,delivery_modes=turn off), but the agent name was never renamed.This PR renames
OpenCode→Cursor CLIin those three strings, matching the naming convention used by other CLI-only types (e.g.Copilot CLIin copilot's template).What changes
Three string substitutions in
scripts/drivers/types/cursor/template.md:actasconfirmation messagemodeset rejection messageNo behavior change — pure user-facing string fix.
Verification
Confirmed against
v1.1.7tag andmain:Follow-up (out of scope for this PR)
While investigating I noticed
scripts/drivers/types/antigravity/template.mdhas an analogous copy-paste issue (three strings referring toCodexwhere they should refer to Antigravity). It also appears to conflict with antigravity'stype.confwhich declaresdelivery_modes=monitor turn both off, so the correct fix isn't just a rename — the whole "no Monitor tool" section may not belong there. Happy to file a separate issue if useful.Test plan
grep -c OpenCode scripts/drivers/types/cursor/template.md→ 0grep -c "Cursor CLI" scripts/drivers/types/cursor/template.md→ 3