@kenkaiiii/ggcoder 5.51.3 → 5.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app-sidecar.js +1 -1
- package/dist/app-sidecar.js.map +1 -1
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +13 -11
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/auth-providers.d.ts +6 -0
- package/dist/core/auth-providers.d.ts.map +1 -1
- package/dist/core/auth-providers.js +9 -3
- package/dist/core/auth-providers.js.map +1 -1
- package/dist/core/env-delta.d.ts.map +1 -1
- package/dist/core/env-delta.js +8 -3
- package/dist/core/env-delta.js.map +1 -1
- package/dist/core/hashline-edit-benchmark.d.ts +2 -0
- package/dist/core/hashline-edit-benchmark.d.ts.map +1 -1
- package/dist/core/hashline-edit-benchmark.js +5 -1
- package/dist/core/hashline-edit-benchmark.js.map +1 -1
- package/dist/core/workspace-guard.d.ts +6 -0
- package/dist/core/workspace-guard.d.ts.map +1 -1
- package/dist/core/workspace-guard.js +58 -7
- package/dist/core/workspace-guard.js.map +1 -1
- package/dist/ui/components/Footer.js +1 -1
- package/dist/ui/components/Footer.js.map +1 -1
- package/dist/ui/login.d.ts.map +1 -1
- package/dist/ui/login.js +5 -38
- package/dist/ui/login.js.map +1 -1
- package/package.json +4 -4
package/dist/app-sidecar.js
CHANGED
|
@@ -1220,7 +1220,7 @@ async function createSession(deps, opts) {
|
|
|
1220
1220
|
// command that doesn't exist in the app.
|
|
1221
1221
|
.replaceAll(/Run \/compact to shrink history, or start a new session\./gi, "Start a new session to reset the context.")
|
|
1222
1222
|
// /model: handle each phrasing pattern
|
|
1223
|
-
.replaceAll(/switch to
|
|
1223
|
+
.replaceAll(/switch to (\S+) with \/model/gi, "switch to $1 using the model selector")
|
|
1224
1224
|
.replaceAll(/Switch with \/model\./gi, "Switch using the model selector.")
|
|
1225
1225
|
.replaceAll(/try a different model with \/model\./gi, "try a different model using the model selector.")
|
|
1226
1226
|
.replaceAll(/Use \/model to switch/gi, "Use the model selector to switch")
|