From 3c41e4e8f12b7f06258490bb7a85388de1eca381 Mon Sep 17 00:00:00 2001 From: Dax Date: Fri, 2 Jan 2026 16:02:52 -0500 Subject: chore: rename repo references from sst/opencode to anomalyco/opencode (#6687) Co-authored-by: Github Action --- packages/console/app/src/config.ts | 2 +- packages/console/app/src/routes/[...404].tsx | 2 +- .../console/app/src/routes/download/[platform].ts | 2 +- packages/console/app/src/routes/openapi.json.ts | 2 +- packages/console/app/src/routes/temp.tsx | 2 +- packages/desktop/src-tauri/tauri.prod.conf.json | 2 +- packages/enterprise/src/routes/share/[shareID].tsx | 2 +- packages/extensions/zed/extension.toml | 12 ++++++------ packages/opencode/script/publish-registries.ts | 20 ++++++++++---------- packages/opencode/script/publish.ts | 2 +- packages/opencode/src/cli/cmd/github.ts | 2 +- packages/opencode/src/cli/cmd/tui/app.tsx | 2 +- packages/opencode/src/cli/cmd/tui/component/tips.ts | 2 +- packages/opencode/src/installation/index.ts | 2 +- .../src/session/prompt/anthropic-20250930.txt | 2 +- packages/opencode/src/session/prompt/anthropic.txt | 2 +- packages/opencode/src/session/prompt/qwen.txt | 2 +- packages/web/config.mjs | 2 +- packages/web/src/components/Lander.astro | 4 ++-- packages/web/src/content/docs/agents.mdx | 2 +- packages/web/src/content/docs/github.mdx | 10 +++++----- packages/web/src/content/docs/index.mdx | 6 +++--- packages/web/src/content/docs/troubleshooting.mdx | 2 +- 23 files changed, 44 insertions(+), 44 deletions(-) (limited to 'packages') diff --git a/packages/console/app/src/config.ts b/packages/console/app/src/config.ts index 8d7da0b97..9fd7de5a6 100644 --- a/packages/console/app/src/config.ts +++ b/packages/console/app/src/config.ts @@ -7,7 +7,7 @@ export const config = { // GitHub github: { - repoUrl: "https://github.com/sst/opencode", + repoUrl: "https://github.com/anomalyco/opencode", starsFormatted: { compact: "45K", full: "45,000", diff --git a/packages/console/app/src/routes/[...404].tsx b/packages/console/app/src/routes/[...404].tsx index ba2842b5a..1fd378774 100644 --- a/packages/console/app/src/routes/[...404].tsx +++ b/packages/console/app/src/routes/[...404].tsx @@ -26,7 +26,7 @@ export default function NotFound() { Docs
- GitHub + GitHub
Discord diff --git a/packages/console/app/src/routes/download/[platform].ts b/packages/console/app/src/routes/download/[platform].ts index 427fb132b..d8b72aba1 100644 --- a/packages/console/app/src/routes/download/[platform].ts +++ b/packages/console/app/src/routes/download/[platform].ts @@ -21,7 +21,7 @@ export async function GET({ params: { platform } }: APIEvent) { const assetName = assetNames[platform] if (!assetName) return new Response("Not Found", { status: 404 }) - const resp = await fetch(`https://github.com/sst/opencode/releases/latest/download/${assetName}`, { + const resp = await fetch(`https://github.com/anomalyco/opencode/releases/latest/download/${assetName}`, { cf: { // in case gh releases has rate limits cacheTtl: 60 * 60 * 24, diff --git a/packages/console/app/src/routes/openapi.json.ts b/packages/console/app/src/routes/openapi.json.ts index 8b27cb89a..2789e85c4 100644 --- a/packages/console/app/src/routes/openapi.json.ts +++ b/packages/console/app/src/routes/openapi.json.ts @@ -1,6 +1,6 @@ export async function GET() { const response = await fetch( - "https://raw.githubusercontent.com/sst/opencode/refs/heads/dev/packages/sdk/openapi.json", + "https://raw.githubusercontent.com/anomalyco/opencode/refs/heads/dev/packages/sdk/openapi.json", ) const json = await response.json() return json diff --git a/packages/console/app/src/routes/temp.tsx b/packages/console/app/src/routes/temp.tsx index b0aef00e7..28883fca7 100644 --- a/packages/console/app/src/routes/temp.tsx +++ b/packages/console/app/src/routes/temp.tsx @@ -151,7 +151,7 @@ export default function Home() { X.com
- GitHub + GitHub
Discord diff --git a/packages/desktop/src-tauri/tauri.prod.conf.json b/packages/desktop/src-tauri/tauri.prod.conf.json index 7894b8ab2..f0abc827d 100644 --- a/packages/desktop/src-tauri/tauri.prod.conf.json +++ b/packages/desktop/src-tauri/tauri.prod.conf.json @@ -20,7 +20,7 @@ "plugins": { "updater": { "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEYwMDM5Nzg5OUMzOUExMDQKUldRRW9UbWNpWmNEOENYT01CV0lhOXR1UFhpaXJsK1Z3aU9lZnNtNzE0TDROWVMwVW9XQnFOelkK", - "endpoints": ["https://github.com/sst/opencode/releases/latest/download/latest.json"] + "endpoints": ["https://github.com/anomalyco/opencode/releases/latest/download/latest.json"] } } } diff --git a/packages/enterprise/src/routes/share/[shareID].tsx b/packages/enterprise/src/routes/share/[shareID].tsx index d300f8758..776b42264 100644 --- a/packages/enterprise/src/routes/share/[shareID].tsx +++ b/packages/enterprise/src/routes/share/[shareID].tsx @@ -328,7 +328,7 @@ export default function () {
["-t", t]) diff --git a/packages/opencode/src/cli/cmd/github.ts b/packages/opencode/src/cli/cmd/github.ts index f1cbe8e7f..fbd2506e0 100644 --- a/packages/opencode/src/cli/cmd/github.ts +++ b/packages/opencode/src/cli/cmd/github.ts @@ -396,7 +396,7 @@ jobs: uses: actions/checkout@v4 - name: Run opencode - uses: sst/opencode/github@latest${envStr} + uses: anomalyco/opencode/github@latest${envStr} with: model: ${provider}/${model}`, ) diff --git a/packages/opencode/src/cli/cmd/tui/app.tsx b/packages/opencode/src/cli/cmd/tui/app.tsx index eb89e411d..b91df0540 100644 --- a/packages/opencode/src/cli/cmd/tui/app.tsx +++ b/packages/opencode/src/cli/cmd/tui/app.tsx @@ -648,7 +648,7 @@ function ErrorComponent(props: { }) const [copied, setCopied] = createSignal(false) - const issueURL = new URL("https://github.com/sst/opencode/issues/new?template=bug-report.yml") + const issueURL = new URL("https://github.com/anomalyco/opencode/issues/new?template=bug-report.yml") // Choose safe fallback colors per mode since theme context may not be available const isLight = props.mode === "light" diff --git a/packages/opencode/src/cli/cmd/tui/component/tips.ts b/packages/opencode/src/cli/cmd/tui/component/tips.ts index c237784ad..ed8ce1474 100644 --- a/packages/opencode/src/cli/cmd/tui/component/tips.ts +++ b/packages/opencode/src/cli/cmd/tui/component/tips.ts @@ -92,7 +92,7 @@ export const TIPS = [ "Press {highlight}Ctrl+X S{/highlight} or {highlight}/status{/highlight} to see system status info.", "Enable {highlight}tui.scroll_acceleration{/highlight} for smooth macOS-style scrolling.", "Toggle username display in chat via command palette ({highlight}Ctrl+P{/highlight}).", - "Run {highlight}docker run -it --rm ghcr.io/sst/opencode{/highlight} for containerized use.", + "Run {highlight}docker run -it --rm ghcr.io/anomalyco/opencode{/highlight} for containerized use.", "Use {highlight}/connect{/highlight} with OpenCode Zen for curated, tested models.", "Commit your project's {highlight}AGENTS.md{/highlight} file to Git for team sharing.", "Use {highlight}/review{/highlight} to review uncommitted changes, branches, or PRs.", diff --git a/packages/opencode/src/installation/index.ts b/packages/opencode/src/installation/index.ts index 25ef79fda..5735e5aa3 100644 --- a/packages/opencode/src/installation/index.ts +++ b/packages/opencode/src/installation/index.ts @@ -195,7 +195,7 @@ export namespace Installation { .then((data: any) => data.version) } - return fetch("https://api.github.com/repos/sst/opencode/releases/latest") + return fetch("https://api.github.com/repos/anomalyco/opencode/releases/latest") .then((res) => { if (!res.ok) throw new Error(res.statusText) return res.json() diff --git a/packages/opencode/src/session/prompt/anthropic-20250930.txt b/packages/opencode/src/session/prompt/anthropic-20250930.txt index 7a4faea63..9af960248 100644 --- a/packages/opencode/src/session/prompt/anthropic-20250930.txt +++ b/packages/opencode/src/session/prompt/anthropic-20250930.txt @@ -140,7 +140,7 @@ The user will primarily request you perform software engineering tasks. This inc Here is useful information about the environment you are running in: -Working directory: /home/thdxr/dev/projects/sst/opencode/packages/opencode +Working directory: /home/thdxr/dev/projects/anomalyco/opencode/packages/opencode Is directory a git repo: Yes Platform: linux OS Version: Linux 6.12.4-arch1-1 diff --git a/packages/opencode/src/session/prompt/anthropic.txt b/packages/opencode/src/session/prompt/anthropic.txt index 43b11250a..f9050a37b 100644 --- a/packages/opencode/src/session/prompt/anthropic.txt +++ b/packages/opencode/src/session/prompt/anthropic.txt @@ -7,7 +7,7 @@ IMPORTANT: You must NEVER generate or guess URLs for the user unless you are con If the user asks for help or wants to give feedback inform them of the following: - ctrl+p to list available actions - To give feedback, users should report the issue at - https://github.com/sst/opencode + https://github.com/anomalyco/opencode When the user directly asks about OpenCode (eg. "can OpenCode do...", "does OpenCode have..."), or asks in second person (eg. "are you able...", "can you do..."), or asks how to use a specific OpenCode feature (eg. implement a hook, write a slash command, or install an MCP server), use the WebFetch tool to gather information to answer the question from OpenCode docs. The list of available docs is available at https://opencode.ai/docs diff --git a/packages/opencode/src/session/prompt/qwen.txt b/packages/opencode/src/session/prompt/qwen.txt index d88d9d063..5e7ce8655 100644 --- a/packages/opencode/src/session/prompt/qwen.txt +++ b/packages/opencode/src/session/prompt/qwen.txt @@ -6,7 +6,7 @@ IMPORTANT: You must NEVER generate or guess URLs for the user unless you are con If the user asks for help or wants to give feedback inform them of the following: - /help: Get help with using opencode -- To give feedback, users should report the issue at https://github.com/sst/opencode/issues +- To give feedback, users should report the issue at https://github.com/anomalyco/opencode/issues When the user directly asks about opencode (eg 'can opencode do...', 'does opencode have...') or asks in second person (eg 'are you able...', 'can you do...'), first use the WebFetch tool to gather information to answer the question from opencode docs at https://opencode.ai diff --git a/packages/web/config.mjs b/packages/web/config.mjs index 5e2c8d3e4..76ab56fae 100644 --- a/packages/web/config.mjs +++ b/packages/web/config.mjs @@ -5,7 +5,7 @@ export default { console: stage === "production" ? "https://opencode.ai/auth" : `https://${stage}.opencode.ai/auth`, email: "contact@anoma.ly", socialCard: "https://social-cards.sst.dev", - github: "https://github.com/sst/opencode", + github: "https://github.com/anomalyco/opencode", discord: "https://opencode.ai/discord", headerLinks: [ { name: "Home", url: "/" }, diff --git a/packages/web/src/components/Lander.astro b/packages/web/src/components/Lander.astro index fd3732746..605cea638 100644 --- a/packages/web/src/components/Lander.astro +++ b/packages/web/src/components/Lander.astro @@ -133,9 +133,9 @@ if (image) {

Mise

-