From 64775879315549aceea9f7a4208008b517511565 Mon Sep 17 00:00:00 2001 From: imbytecat Date: Thu, 19 Mar 2026 09:46:22 +0800 Subject: [PATCH 1/4] =?UTF-8?q?chore:=20=E5=90=AF=E7=94=A8=E5=8A=A8?= =?UTF-8?q?=E6=80=81=E4=B8=8A=E4=B8=8B=E6=96=87=E5=89=AA=E6=9E=9D=E5=AE=9E?= =?UTF-8?q?=E9=AA=8C=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- oh-my-opencode.jsonc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/oh-my-opencode.jsonc b/oh-my-opencode.jsonc index d9391fc..d75efcc 100644 --- a/oh-my-opencode.jsonc +++ b/oh-my-opencode.jsonc @@ -23,6 +23,11 @@ "unspecified-high": { "model": "anthropic/claude-opus-4-6", "variant": "high" }, "writing": { "model": "google/gemini-3-flash-preview" } }, + "experimental": { + "dynamic_context_pruning": { + "enabled": true + } + }, "git_master": { "commit_footer": false, "include_co_authored_by": false From 752b56ab33c77d2d39042f8d91acb112efe0e9d5 Mon Sep 17 00:00:00 2001 From: imbytecat Date: Thu, 19 Mar 2026 10:01:38 +0800 Subject: [PATCH 2/4] =?UTF-8?q?docs:=20=E6=B7=BB=E5=8A=A0=20AGENTS.md=20?= =?UTF-8?q?=E4=BB=A3=E7=90=86=E6=8C=87=E4=BB=A4=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AGENTS.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 AGENTS.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..01a6041 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,5 @@ +# AGENTS.md + +- Always reply in Simplified Chinese by default. +- Use English only if the user explicitly asks for it. +- Keep code, commands, file paths, logs, and identifiers unchanged. From 94c7118b71399f3174387c8347879548891a273f Mon Sep 17 00:00:00 2001 From: imbytecat Date: Thu, 19 Mar 2026 10:12:55 +0800 Subject: [PATCH 3/4] =?UTF-8?q?chore:=20=E6=B7=BB=E5=8A=A0=20GPT-5.4=20min?= =?UTF-8?q?i=20=E6=A8=A1=E5=9E=8B=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- opencode.jsonc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/opencode.jsonc b/opencode.jsonc index a58487b..12c9c9d 100644 --- a/opencode.jsonc +++ b/opencode.jsonc @@ -50,6 +50,12 @@ "reasoning": true, "modalities": { "input": ["text", "image", "pdf"], "output": ["text"] }, "limit": { "context": 400000, "input": 272000, "output": 128000 } + }, + "gpt-5.4-mini": { + "name": "GPT-5.4 mini", + "reasoning": true, + "modalities": { "input": ["text", "image"], "output": ["text"] }, + "limit": { "context": 400000, "input": 272000, "output": 128000 } } } }, From 61374e11a9adfd8a25e17bb274cad9b5caa257e2 Mon Sep 17 00:00:00 2001 From: imbytecat Date: Thu, 19 Mar 2026 10:13:00 +0800 Subject: [PATCH 4/4] =?UTF-8?q?chore:=20=E5=B0=86=20quick=20=E5=88=86?= =?UTF-8?q?=E7=B1=BB=E6=A8=A1=E5=9E=8B=E5=88=87=E6=8D=A2=E8=87=B3=20GPT-5.?= =?UTF-8?q?4=20mini?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- oh-my-opencode.jsonc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oh-my-opencode.jsonc b/oh-my-opencode.jsonc index d75efcc..b4c8233 100644 --- a/oh-my-opencode.jsonc +++ b/oh-my-opencode.jsonc @@ -18,7 +18,7 @@ "ultrabrain": { "model": "openai/gpt-5.4", "variant": "xhigh" }, "deep": { "model": "openai/gpt-5.3-codex", "variant": "medium" }, "artistry": { "model": "google/gemini-3.1-pro-preview", "variant": "high" }, - "quick": { "model": "anthropic/claude-haiku-4-5" }, + "quick": { "model": "openai/gpt-5.4-mini" }, "unspecified-low": { "model": "anthropic/claude-sonnet-4-6" }, "unspecified-high": { "model": "anthropic/claude-opus-4-6", "variant": "high" }, "writing": { "model": "google/gemini-3-flash-preview" }