diff --git a/packages/coding-agent/CHANGELOG.md b/packages/coding-agent/CHANGELOG.md index e6edb359..cc254884 100644 --- a/packages/coding-agent/CHANGELOG.md +++ b/packages/coding-agent/CHANGELOG.md @@ -2,6 +2,10 @@ ## [Unreleased] +### Changed + +- `/share` now outputs `buildwithpi.ai` session preview URLs instead of `shittycodingagent.ai` + ## [0.45.0] - 2026-01-13 ### Added diff --git a/packages/coding-agent/src/modes/interactive/interactive-mode.ts b/packages/coding-agent/src/modes/interactive/interactive-mode.ts index 5f84555b..164e4b17 100644 --- a/packages/coding-agent/src/modes/interactive/interactive-mode.ts +++ b/packages/coding-agent/src/modes/interactive/interactive-mode.ts @@ -3245,7 +3245,7 @@ export class InteractiveMode { } // Create the preview URL - const previewUrl = `https://shittycodingagent.ai/session?${gistId}`; + const previewUrl = `https://buildwithpi.ai/session?${gistId}`; this.showStatus(`Share URL: ${previewUrl}\nGist: ${gistUrl}`); } catch (error: unknown) { if (!loader.signal.aborted) {