update opencode config, secrets, tailscale, and agents input

- opencode: remove deprecated google_auth, add git_master config,
  experimental truncation, use glm-4.6v for multimodal-looker,
  upgrade categories to glm-5, remove opencode-memory plugin
- m3-atlas: add ref/exa/outline/basecamp secret declarations
- m3-kratos: enable tailscale with ssh and reset flags
- agents: switch back to remote git input
This commit is contained in:
m3tm3re
2026-02-17 08:54:13 +01:00
parent 87baf2377f
commit 8ead26a791
5 changed files with 58 additions and 29 deletions

View File

@@ -22,7 +22,7 @@
enable = true;
settings = {
theme = "opencode";
plugin = ["oh-my-opencode" "opencode-antigravity-auth@beta" "opencode-memory"];
plugin = ["oh-my-opencode" "opencode-antigravity-auth@beta"];
agent =
builtins.fromJSON
(builtins.readFile "${inputs.agents}/agents/agents.json");
@@ -211,7 +211,7 @@
home.file.".config/opencode/oh-my-opencode.json".text = builtins.toJSON {
"$schema" = "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json";
google_auth = false;
# google_auth removed - use opencode-antigravity-auth plugin instead (already in plugin array)
agents = {
sisyphus = {
model = "zai-coding-plan/glm-5";
@@ -226,7 +226,7 @@
model = "zai-coding-plan/glm-4.5-air";
};
multimodal-looker = {
model = "zai-coding-plan/glm-5";
model = "zai-coding-plan/glm-4.6v";
};
prometheus = {
model = "zai-coding-plan/glm-5";
@@ -243,28 +243,36 @@
};
categories = {
visual-engineering = {
model = "zai-coding-plan/glm-4.7";
model = "zai-coding-plan/glm-5";
};
ultrabrain = {
model = "zai-coding-plan/glm-4.7";
model = "zai-coding-plan/glm-5";
};
artistry = {
model = "zai-coding-plan/glm-4.7";
model = "zai-coding-plan/glm-5";
};
quick = {
model = "zai-coding-plan/glm-4.7";
model = "zai-coding-plan/glm-5";
};
unspecified-low = {
model = "zai-coding-plan/glm-4.7";
model = "zai-coding-plan/glm-5";
};
unspecified-high = {
model = "zai-coding-plan/glm-4.7";
model = "zai-coding-plan/glm-5";
};
writing = {
model = "zai-coding-plan/glm-4.7";
model = "zai-coding-plan/glm-5";
};
};
disabled_mcps = ["context7" "websearch"];
disabled_hooks = ["comment-checker"]; #Temporarily added to address bug in 3.5.1 (MCP)
disabled_hooks = ["comment-checker"];
git_master = {
commit_footer = false;
include_co_authored_by = false;
};
experimental = {
truncate_all_tool_outputs = true;
aggressive_truncation = false;
};
};
}