Skip to content

Commit 9b973c9

Browse files
committed
chore: mass rename OpenCode Companion to OpenCode Relay across branding, packages, and plugin IDs
1 parent bba77eb commit 9b973c9

123 files changed

Lines changed: 446 additions & 446 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.idea/.name

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OpenCode Companion for JetBrains IDEs
1+
# OpenCode Relay for JetBrains IDEs
22

33
Integrates the [OpenCode](https://opencode.ai) AI coding assistant into IntelliJ-based IDEs.
44
<table>

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ dependencies {
3030

3131
intellijPlatform {
3232
pluginConfiguration {
33-
id = "com.ashotn.opencode-companion"
34-
name = "OpenCode Companion"
33+
id = "com.ashotn.opencode-relay"
34+
name = "OpenCode Relay"
3535
version = project.version.toString()
3636

3737
vendor {

docs/API_ARCHITECTURE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44

55
All HTTP and SSE transport code must live under:
66

7-
- `src/main/kotlin/com/ashotn/opencode/companion/api/**`
7+
- `src/main/kotlin/com/ashotn/opencode/relay/api/**`
88

99
Code outside this package must call typed API clients instead of opening connections directly.
1010

1111
## Guardrail
1212

13-
`src/test/kotlin/com/ashotn/opencode/companion/api/TransportGuardrailTest.kt` fails if non-api production code contains:
13+
`src/test/kotlin/com/ashotn/opencode/relay/api/TransportGuardrailTest.kt` fails if non-api production code contains:
1414

1515
- `HttpURLConnection`
1616
- `.openConnection(`
1717
- `requestMethod =`
1818

19-
`src/test/kotlin/com/ashotn/opencode/companion/api/EndpointGuardrailTest.kt` fails if any domain endpoint factory file (`*Endpoints.kt`) is placed under `api/transport`.
19+
`src/test/kotlin/com/ashotn/opencode/relay/api/EndpointGuardrailTest.kt` fails if any domain endpoint factory file (`*Endpoints.kt`) is placed under `api/transport`.
2020

2121
These guardrails keep transport logic centralized while ensuring endpoint ownership stays with each API client domain.
2222

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rootProject.name = "OpenCode-Companion"
1+
rootProject.name = "OpenCode-Relay"

src/main/kotlin/com/ashotn/opencode/companion/OpenCodeConstants.kt

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/main/kotlin/com/ashotn/opencode/companion/api/config/ConfigEndpoints.kt

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/main/kotlin/com/ashotn/opencode/companion/api/health/HealthEndpoints.kt

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/main/kotlin/com/ashotn/opencode/companion/OpenCodeBundle.kt renamed to src/main/kotlin/com/ashotn/opencode/relay/OpenCodeBundle.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.ashotn.opencode.companion
1+
package com.ashotn.opencode.relay
22

33
import com.intellij.DynamicBundle
44
import org.jetbrains.annotations.NonNls

src/main/kotlin/com/ashotn/opencode/companion/OpenCodeChecker.kt renamed to src/main/kotlin/com/ashotn/opencode/relay/OpenCodeChecker.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.ashotn.opencode.companion
1+
package com.ashotn.opencode.relay
22

33
import com.intellij.openapi.diagnostic.logger
44
import com.intellij.openapi.util.SystemInfo

0 commit comments

Comments
 (0)