Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
陈曦
sub2api
Commits
d98648f0
Commit
d98648f0
authored
Jan 29, 2026
by
cyhhao
Browse files
fix: rewrite OpenCode identity sentence to Claude Code
parent
c37fe916
Changes
2
Hide whitespace changes
Inline
Side-by-side
backend/internal/service/gateway_sanitize_test.go
0 → 100644
View file @
d98648f0
package
service
import
(
"strings"
"testing"
"github.com/stretchr/testify/require"
)
func
TestSanitizeOpenCodeText_RewritesCanonicalSentence
(
t
*
testing
.
T
)
{
in
:=
"You are OpenCode, the best coding agent on the planet."
got
:=
sanitizeOpenCodeText
(
in
)
require
.
Equal
(
t
,
strings
.
TrimSpace
(
claudeCodeSystemPrompt
),
got
)
}
func
TestSanitizeOpenCodeText_RewritesOpenCodeKeywords
(
t
*
testing
.
T
)
{
in
:=
"OpenCode and opencode are mentioned."
got
:=
sanitizeOpenCodeText
(
in
)
require
.
Equal
(
t
,
"Claude Code and Claude are mentioned."
,
got
)
}
backend/internal/service/gateway_service.go
View file @
d98648f0
...
@@ -559,6 +559,14 @@ func sanitizeOpenCodeText(text string) string {
...
@@ -559,6 +559,14 @@ func sanitizeOpenCodeText(text string) string {
if
text
==
""
{
if
text
==
""
{
return
text
return
text
}
}
// Some clients include a fixed OpenCode identity sentence. Anthropic may treat
// this as a non-Claude-Code fingerprint, so rewrite it to the canonical
// Claude Code banner before generic "OpenCode"/"opencode" replacements.
text
=
strings
.
ReplaceAll
(
text
,
"You are OpenCode, the best coding agent on the planet."
,
strings
.
TrimSpace
(
claudeCodeSystemPrompt
),
)
text
=
strings
.
ReplaceAll
(
text
,
"OpenCode"
,
"Claude Code"
)
text
=
strings
.
ReplaceAll
(
text
,
"OpenCode"
,
"Claude Code"
)
text
=
opencodeTextRe
.
ReplaceAllString
(
text
,
"Claude"
)
text
=
opencodeTextRe
.
ReplaceAllString
(
text
,
"Claude"
)
return
text
return
text
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment