@kenkaiiii/ggcoder 5.23.0 → 5.23.1

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/README.md CHANGED
@@ -69,7 +69,7 @@ Switch mid-conversation with `/model`. Not locked to anyone.
69
69
 
70
70
  | Provider | Models | Auth |
71
71
  |---|---|---|
72
- | **Anthropic** | Claude Opus 4.8, Sonnet 5, Haiku 4.5 | OAuth |
72
+ | **Anthropic** | Claude Opus 5, Sonnet 5, Haiku 4.5 | OAuth |
73
73
  | **OpenAI** | GPT-5.5, GPT-5.5 Pro, GPT-5.4, GPT-5.3 Codex | OAuth |
74
74
  | **Moonshot** | Kimi K3, Kimi K2.7 Code | OAuth or API key |
75
75
  | **Z.AI (GLM)** | GLM-5.1, GLM-4.7, GLM-4.7 Flash | API key |
@@ -472,7 +472,7 @@ async function runJsonModeIfRequested() {
472
472
  await runJsonMode({
473
473
  message: positionals[0] ?? "",
474
474
  provider: (values.provider ?? "anthropic"),
475
- model: values.model ?? "claude-opus-4-8",
475
+ model: values.model ?? "claude-opus-5",
476
476
  cwd: process.cwd(),
477
477
  systemPrompt: values["system-prompt"],
478
478
  maxTurns: maxTurnsRaw ? parseInt(maxTurnsRaw, 10) : undefined,