use-agentz 0.1.1 → 0.1.3

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
@@ -156,7 +156,7 @@ Item types are `skill`, `group`, `agent`, `tool`, `mcp`, `lsp`, `pack`, `plugin`
156
156
  },
157
157
  "vars": {
158
158
  "scratchpad": true,
159
- "model.normal": "github-copilot/claude-opus-4.8"
159
+ "model.normal": "codex-lb/gpt-5.6-terra"
160
160
  },
161
161
  "tierThinking": {
162
162
  "normal": { "reasoningEffort": "high" }
package/dist/cli.js CHANGED
@@ -25211,9 +25211,18 @@ var WEB_LOGO = resolveWebLogo();
25211
25211
  async function buildWeb() {
25212
25212
  const result = await Bun.build({
25213
25213
  entrypoints: [WEB_INDEX],
25214
+ root: dirname7(WEB_INDEX),
25214
25215
  target: "browser",
25215
25216
  minify: true,
25216
- sourcemap: "none"
25217
+ sourcemap: "none",
25218
+ plugins: [
25219
+ {
25220
+ name: "ui-logo",
25221
+ setup(build) {
25222
+ build.onResolve({ filter: /(^|\/)logo\.png$/ }, () => ({ path: WEB_LOGO }));
25223
+ }
25224
+ }
25225
+ ]
25217
25226
  });
25218
25227
  if (!result.success) {
25219
25228
  const logs = result.logs.map((l4) => String(l4)).join(`
@@ -26169,7 +26178,7 @@ init_types();
26169
26178
  // package.json
26170
26179
  var package_default = {
26171
26180
  name: "use-agentz",
26172
- version: "0.1.1",
26181
+ version: "0.1.3",
26173
26182
  description: "AgentZ is a Bun-native AI agent setup builder.",
26174
26183
  type: "module",
26175
26184
  bin: {
@@ -26199,7 +26208,8 @@ var package_default = {
26199
26208
  build: "bun run scripts/build.ts",
26200
26209
  pack: "bun pm pack",
26201
26210
  "verify-pack": "bun run scripts/verify-pack.ts",
26202
- "release:npm": "bash scripts/release-npm.sh"
26211
+ "npm:release": "bash scripts/release-npm.sh",
26212
+ "release:npm": "bun run npm:release"
26203
26213
  },
26204
26214
  devDependencies: {
26205
26215
  "@modelcontextprotocol/sdk": "^1.29.0",
@@ -6,7 +6,7 @@
6
6
  <meta name="color-scheme" content="dark" />
7
7
  <meta name="theme-color" content="#11100e" />
8
8
  <title>AgentZ</title>
9
- <link rel="icon" href="/logo.png" />
9
+ <link rel="icon" href="./logo.png" />
10
10
  <link rel="stylesheet" href="./styles.css" />
11
11
  </head>
12
12
  <body>
@@ -114,7 +114,7 @@ async function shutdown(): Promise<ShutdownResponse> {
114
114
 
115
115
  /**
116
116
  * Deterministic hue (0–359) for a model id. The hue is derived from the model
117
- * NAME AFTER the last '/' (`github-copilot/claude-fable-5` → `claude-fable-5`),
117
+ * NAME AFTER the last '/' (`codex-lb/claude-fable-5` → `claude-fable-5`),
118
118
  * so the SAME model shares a hue across providers, and a plain FNV-1a hash of a
119
119
  * fixed string makes it stable across reloads (no index/iteration-order/random
120
120
  * salt involved). `>>> 0` keeps the 32-bit accumulator unsigned so `% 360` is
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "use-agentz",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "AgentZ is a Bun-native AI agent setup builder.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -30,7 +30,8 @@
30
30
  "build": "bun run scripts/build.ts",
31
31
  "pack": "bun pm pack",
32
32
  "verify-pack": "bun run scripts/verify-pack.ts",
33
- "release:npm": "bash scripts/release-npm.sh"
33
+ "npm:release": "bash scripts/release-npm.sh",
34
+ "release:npm": "bun run npm:release"
34
35
  },
35
36
  "devDependencies": {
36
37
  "@modelcontextprotocol/sdk": "^1.29.0",
@@ -8,12 +8,12 @@
8
8
  "tiers": {
9
9
  "cheap": {
10
10
  "model": {
11
- "opencode": "github-copilot/gpt-5.6-terra",
11
+ "opencode": "codex-lb/gpt-5.6-terra",
12
12
  "copilot": "gpt-5.6-terra",
13
13
  "claude": "haiku",
14
14
  "codex": "gpt-5.6-terra",
15
- "kilocode": "github-copilot/gpt-5.6-terra",
16
- "hermes": "github-copilot/gpt-5.6-terra"
15
+ "kilocode": "codex-lb/gpt-5.6-terra",
16
+ "hermes": "codex-lb/gpt-5.6-terra"
17
17
  },
18
18
  "thinking": {
19
19
  "reasoningEffort": "medium"
@@ -21,12 +21,12 @@
21
21
  },
22
22
  "normal": {
23
23
  "model": {
24
- "opencode": "github-copilot/gpt-5.6-terra",
24
+ "opencode": "codex-lb/gpt-5.6-terra",
25
25
  "copilot": "gpt-5.6-terra",
26
26
  "claude": "haiku",
27
27
  "codex": "gpt-5.6-terra",
28
- "kilocode": "github-copilot/gpt-5.6-terra",
29
- "hermes": "github-copilot/gpt-5.6-terra"
28
+ "kilocode": "codex-lb/gpt-5.6-terra",
29
+ "hermes": "codex-lb/gpt-5.6-terra"
30
30
  },
31
31
  "thinking": {
32
32
  "reasoningEffort": "high"
@@ -34,12 +34,12 @@
34
34
  },
35
35
  "expert": {
36
36
  "model": {
37
- "opencode": "github-copilot/gpt-5.6-sol",
37
+ "opencode": "codex-lb/gpt-5.6-sol",
38
38
  "copilot": "gpt-5.6-sol",
39
39
  "claude": "opus",
40
40
  "codex": "gpt-5.6-sol",
41
- "kilocode": "github-copilot/gpt-5.6-sol",
42
- "hermes": "github-copilot/gpt-5.6-sol"
41
+ "kilocode": "codex-lb/gpt-5.6-sol",
42
+ "hermes": "codex-lb/gpt-5.6-sol"
43
43
  },
44
44
  "thinking": {
45
45
  "reasoningEffort": "high"
@@ -49,12 +49,12 @@
49
49
  "agents": {
50
50
  "reviewer-gpt": {
51
51
  "model": {
52
- "opencode": "github-copilot/gpt-5.6-sol",
52
+ "opencode": "codex-lb/gpt-5.6-sol",
53
53
  "copilot": "gpt-5.6-sol",
54
54
  "claude": "opus",
55
55
  "codex": "gpt-5.6-sol",
56
- "kilocode": "github-copilot/gpt-5.6-sol",
57
- "hermes": "github-copilot/gpt-5.6-sol"
56
+ "kilocode": "codex-lb/gpt-5.6-sol",
57
+ "hermes": "codex-lb/gpt-5.6-sol"
58
58
  },
59
59
  "thinking": {
60
60
  "reasoningEffort": "xhigh"
@@ -62,12 +62,12 @@
62
62
  },
63
63
  "reviewer-anthropic": {
64
64
  "model": {
65
- "opencode": "github-copilot/claude-fable-5",
65
+ "opencode": "codex-lb/claude-fable-5",
66
66
  "copilot": "claude-fable-5",
67
67
  "claude": "fable",
68
68
  "codex": "claude-fable-5",
69
- "kilocode": "github-copilot/claude-fable-5",
70
- "hermes": "github-copilot/claude-fable-5"
69
+ "kilocode": "codex-lb/claude-fable-5",
70
+ "hermes": "codex-lb/claude-fable-5"
71
71
  },
72
72
  "thinking": {
73
73
  "reasoningEffort": "high"
@@ -8,12 +8,12 @@
8
8
  "tiers": {
9
9
  "cheap": {
10
10
  "model": {
11
- "opencode": "github-copilot/gpt-5.6-terra",
11
+ "opencode": "codex-lb/gpt-5.6-terra",
12
12
  "copilot": "gpt-5.6-terra",
13
13
  "claude": "haiku",
14
14
  "codex": "gpt-5.6-terra",
15
- "kilocode": "github-copilot/gpt-5.6-terra",
16
- "hermes": "github-copilot/gpt-5.6-terra"
15
+ "kilocode": "codex-lb/gpt-5.6-terra",
16
+ "hermes": "codex-lb/gpt-5.6-terra"
17
17
  },
18
18
  "thinking": {
19
19
  "reasoningEffort": "high"
@@ -21,12 +21,12 @@
21
21
  },
22
22
  "normal": {
23
23
  "model": {
24
- "opencode": "github-copilot/gpt-5.6-terra",
24
+ "opencode": "codex-lb/gpt-5.6-terra",
25
25
  "copilot": "gpt-5.6-terra",
26
26
  "claude": "haiku",
27
27
  "codex": "gpt-5.6-terra",
28
- "kilocode": "github-copilot/gpt-5.6-terra",
29
- "hermes": "github-copilot/gpt-5.6-terra"
28
+ "kilocode": "codex-lb/gpt-5.6-terra",
29
+ "hermes": "codex-lb/gpt-5.6-terra"
30
30
  },
31
31
  "thinking": {
32
32
  "reasoningEffort": "xhigh"
@@ -34,12 +34,12 @@
34
34
  },
35
35
  "expert": {
36
36
  "model": {
37
- "opencode": "github-copilot/gpt-5.6-sol",
37
+ "opencode": "codex-lb/gpt-5.6-sol",
38
38
  "copilot": "gpt-5.6-sol",
39
39
  "claude": "opus",
40
40
  "codex": "gpt-5.6-sol",
41
- "kilocode": "github-copilot/gpt-5.6-sol",
42
- "hermes": "github-copilot/gpt-5.6-sol"
41
+ "kilocode": "codex-lb/gpt-5.6-sol",
42
+ "hermes": "codex-lb/gpt-5.6-sol"
43
43
  },
44
44
  "thinking": {
45
45
  "reasoningEffort": "xhigh"
@@ -49,12 +49,12 @@
49
49
  "agents": {
50
50
  "reviewer-gpt": {
51
51
  "model": {
52
- "opencode": "github-copilot/gpt-5.6-sol",
52
+ "opencode": "codex-lb/gpt-5.6-sol",
53
53
  "copilot": "gpt-5.6-sol",
54
54
  "claude": "opus",
55
55
  "codex": "gpt-5.6-sol",
56
- "kilocode": "github-copilot/gpt-5.6-sol",
57
- "hermes": "github-copilot/gpt-5.6-sol"
56
+ "kilocode": "codex-lb/gpt-5.6-sol",
57
+ "hermes": "codex-lb/gpt-5.6-sol"
58
58
  },
59
59
  "thinking": {
60
60
  "reasoningEffort": "xhigh"
@@ -62,12 +62,12 @@
62
62
  },
63
63
  "reviewer-anthropic": {
64
64
  "model": {
65
- "opencode": "github-copilot/claude-fable-5",
65
+ "opencode": "codex-lb/claude-fable-5",
66
66
  "copilot": "claude-fable-5",
67
67
  "claude": "fable",
68
68
  "codex": "claude-fable-5",
69
- "kilocode": "github-copilot/claude-fable-5",
70
- "hermes": "github-copilot/claude-fable-5"
69
+ "kilocode": "codex-lb/claude-fable-5",
70
+ "hermes": "codex-lb/claude-fable-5"
71
71
  },
72
72
  "thinking": {
73
73
  "reasoningEffort": "high"
@@ -8,12 +8,12 @@
8
8
  "tiers": {
9
9
  "cheap": {
10
10
  "model": {
11
- "opencode": "github-copilot/gpt-5.6-terra",
11
+ "opencode": "codex-lb/gpt-5.6-terra",
12
12
  "copilot": "gpt-5.6-terra",
13
13
  "claude": "haiku",
14
14
  "codex": "gpt-5.6-terra",
15
- "kilocode": "github-copilot/gpt-5.6-terra",
16
- "hermes": "github-copilot/gpt-5.6-terra"
15
+ "kilocode": "codex-lb/gpt-5.6-terra",
16
+ "hermes": "codex-lb/gpt-5.6-terra"
17
17
  },
18
18
  "thinking": {
19
19
  "reasoningEffort": "high"
@@ -21,12 +21,12 @@
21
21
  },
22
22
  "normal": {
23
23
  "model": {
24
- "opencode": "github-copilot/claude-opus-4.8",
24
+ "opencode": "codex-lb/gpt-5.6-terra",
25
25
  "copilot": "claude-opus-4.8",
26
26
  "claude": "opus",
27
27
  "codex": "claude-opus-4.8",
28
- "kilocode": "github-copilot/claude-opus-4.8",
29
- "hermes": "github-copilot/claude-opus-4.8"
28
+ "kilocode": "codex-lb/gpt-5.6-terra",
29
+ "hermes": "codex-lb/gpt-5.6-terra"
30
30
  },
31
31
  "thinking": {
32
32
  "reasoningEffort": "xhigh"
@@ -34,12 +34,12 @@
34
34
  },
35
35
  "expert": {
36
36
  "model": {
37
- "opencode": "github-copilot/claude-fable-5",
37
+ "opencode": "codex-lb/claude-fable-5",
38
38
  "copilot": "claude-fable-5",
39
39
  "claude": "fable",
40
40
  "codex": "claude-fable-5",
41
- "kilocode": "github-copilot/claude-fable-5",
42
- "hermes": "github-copilot/claude-fable-5"
41
+ "kilocode": "codex-lb/claude-fable-5",
42
+ "hermes": "codex-lb/claude-fable-5"
43
43
  },
44
44
  "thinking": {
45
45
  "reasoningEffort": "high"
@@ -49,12 +49,12 @@
49
49
  "agents": {
50
50
  "reviewer-gpt": {
51
51
  "model": {
52
- "opencode": "github-copilot/gpt-5.6-sol",
52
+ "opencode": "codex-lb/gpt-5.6-sol",
53
53
  "copilot": "gpt-5.6-sol",
54
54
  "claude": "opus",
55
55
  "codex": "gpt-5.6-sol",
56
- "kilocode": "github-copilot/gpt-5.6-sol",
57
- "hermes": "github-copilot/gpt-5.6-sol"
56
+ "kilocode": "codex-lb/gpt-5.6-sol",
57
+ "hermes": "codex-lb/gpt-5.6-sol"
58
58
  },
59
59
  "thinking": {
60
60
  "reasoningEffort": "xhigh"
@@ -62,12 +62,12 @@
62
62
  },
63
63
  "reviewer-anthropic": {
64
64
  "model": {
65
- "opencode": "github-copilot/claude-fable-5",
65
+ "opencode": "codex-lb/claude-fable-5",
66
66
  "copilot": "claude-fable-5",
67
67
  "claude": "fable",
68
68
  "codex": "claude-fable-5",
69
- "kilocode": "github-copilot/claude-fable-5",
70
- "hermes": "github-copilot/claude-fable-5"
69
+ "kilocode": "codex-lb/claude-fable-5",
70
+ "hermes": "codex-lb/claude-fable-5"
71
71
  },
72
72
  "thinking": {
73
73
  "reasoningEffort": "high"
@@ -8,12 +8,12 @@
8
8
  "tiers": {
9
9
  "cheap": {
10
10
  "model": {
11
- "opencode": "github-copilot/gpt-5.6-terra",
11
+ "opencode": "codex-lb/gpt-5.6-terra",
12
12
  "copilot": "gpt-5.6-terra",
13
13
  "claude": "haiku",
14
14
  "codex": "gpt-5.6-terra",
15
- "kilocode": "github-copilot/gpt-5.6-terra",
16
- "hermes": "github-copilot/gpt-5.6-terra"
15
+ "kilocode": "codex-lb/gpt-5.6-terra",
16
+ "hermes": "codex-lb/gpt-5.6-terra"
17
17
  },
18
18
  "thinking": {
19
19
  "reasoningEffort": "medium"
@@ -21,12 +21,12 @@
21
21
  },
22
22
  "normal": {
23
23
  "model": {
24
- "opencode": "github-copilot/claude-opus-4.8",
24
+ "opencode": "codex-lb/gpt-5.6-terra",
25
25
  "copilot": "claude-opus-4.8",
26
26
  "claude": "opus",
27
27
  "codex": "claude-opus-4.8",
28
- "kilocode": "github-copilot/claude-opus-4.8",
29
- "hermes": "github-copilot/claude-opus-4.8"
28
+ "kilocode": "codex-lb/gpt-5.6-terra",
29
+ "hermes": "codex-lb/gpt-5.6-terra"
30
30
  },
31
31
  "thinking": {
32
32
  "reasoningEffort": "high"
@@ -34,12 +34,12 @@
34
34
  },
35
35
  "expert": {
36
36
  "model": {
37
- "opencode": "github-copilot/claude-fable-5",
37
+ "opencode": "codex-lb/claude-fable-5",
38
38
  "copilot": "claude-fable-5",
39
39
  "claude": "fable",
40
40
  "codex": "claude-fable-5",
41
- "kilocode": "github-copilot/claude-fable-5",
42
- "hermes": "github-copilot/claude-fable-5"
41
+ "kilocode": "codex-lb/claude-fable-5",
42
+ "hermes": "codex-lb/claude-fable-5"
43
43
  },
44
44
  "thinking": {
45
45
  "reasoningEffort": "high"
@@ -49,12 +49,12 @@
49
49
  "agents": {
50
50
  "reviewer-gpt": {
51
51
  "model": {
52
- "opencode": "github-copilot/gpt-5.6-sol",
52
+ "opencode": "codex-lb/gpt-5.6-sol",
53
53
  "copilot": "gpt-5.6-sol",
54
54
  "claude": "opus",
55
55
  "codex": "gpt-5.6-sol",
56
- "kilocode": "github-copilot/gpt-5.6-sol",
57
- "hermes": "github-copilot/gpt-5.6-sol"
56
+ "kilocode": "codex-lb/gpt-5.6-sol",
57
+ "hermes": "codex-lb/gpt-5.6-sol"
58
58
  },
59
59
  "thinking": {
60
60
  "reasoningEffort": "xhigh"
@@ -62,12 +62,12 @@
62
62
  },
63
63
  "reviewer-anthropic": {
64
64
  "model": {
65
- "opencode": "github-copilot/claude-fable-5",
65
+ "opencode": "codex-lb/claude-fable-5",
66
66
  "copilot": "claude-fable-5",
67
67
  "claude": "fable",
68
68
  "codex": "claude-fable-5",
69
- "kilocode": "github-copilot/claude-fable-5",
70
- "hermes": "github-copilot/claude-fable-5"
69
+ "kilocode": "codex-lb/claude-fable-5",
70
+ "hermes": "codex-lb/claude-fable-5"
71
71
  },
72
72
  "thinking": {
73
73
  "reasoningEffort": "high"
@@ -21,20 +21,20 @@
21
21
  "disableDefaults": true,
22
22
  "models": {
23
23
  "cheap": {
24
- "opencode": "github-copilot/gpt-5.6-luna",
24
+ "opencode": "codex-lb/gpt-5.6-luna",
25
25
  "copilot": "gpt-5.6-luna",
26
26
  "claude": "haiku",
27
27
  "codex": "gpt-5.6-luna",
28
- "kilocode": "github-copilot/gpt-5.6-luna",
29
- "hermes": "github-copilot/gpt-5.6-luna"
28
+ "kilocode": "codex-lb/gpt-5.6-luna",
29
+ "hermes": "codex-lb/gpt-5.6-luna"
30
30
  },
31
31
  "normal": {
32
- "opencode": "github-copilot/claude-opus-4.8",
32
+ "opencode": "codex-lb/gpt-5.6-terra",
33
33
  "copilot": "claude-opus-4.8",
34
34
  "claude": "opus",
35
35
  "codex": "claude-opus-4.8",
36
- "kilocode": "github-copilot/claude-opus-4.8",
37
- "hermes": "github-copilot/claude-opus-4.8"
36
+ "kilocode": "codex-lb/gpt-5.6-terra",
37
+ "hermes": "codex-lb/gpt-5.6-terra"
38
38
  }
39
39
  }
40
40
  }
@@ -14,20 +14,20 @@
14
14
  "agentsMd": "lean",
15
15
  "models": {
16
16
  "normal": {
17
- "opencode": "github-copilot/claude-opus-4.8",
17
+ "opencode": "codex-lb/gpt-5.6-terra",
18
18
  "copilot": "claude-opus-4.8",
19
19
  "claude": "opus",
20
20
  "codex": "claude-opus-4.8",
21
- "kilocode": "github-copilot/claude-opus-4.8",
22
- "hermes": "github-copilot/claude-opus-4.8"
21
+ "kilocode": "codex-lb/gpt-5.6-terra",
22
+ "hermes": "codex-lb/gpt-5.6-terra"
23
23
  },
24
24
  "expert": {
25
- "opencode": "github-copilot/claude-fable-5",
25
+ "opencode": "codex-lb/claude-fable-5",
26
26
  "copilot": "claude-fable-5",
27
27
  "claude": "fable",
28
28
  "codex": "claude-fable-5",
29
- "kilocode": "github-copilot/claude-fable-5",
30
- "hermes": "github-copilot/claude-fable-5"
29
+ "kilocode": "codex-lb/claude-fable-5",
30
+ "hermes": "codex-lb/claude-fable-5"
31
31
  }
32
32
  }
33
33
  }
@@ -24,12 +24,12 @@
24
24
  "agentsMd": "lean",
25
25
  "models": {
26
26
  "normal": {
27
- "opencode": "github-copilot/claude-opus-4.8",
27
+ "opencode": "codex-lb/gpt-5.6-terra",
28
28
  "copilot": "claude-opus-4.8",
29
29
  "claude": "opus",
30
30
  "codex": "claude-opus-4.8",
31
- "kilocode": "github-copilot/claude-opus-4.8",
32
- "hermes": "github-copilot/claude-opus-4.8"
31
+ "kilocode": "codex-lb/gpt-5.6-terra",
32
+ "hermes": "codex-lb/gpt-5.6-terra"
33
33
  }
34
34
  },
35
35
  "skillGroups": [
@@ -13,28 +13,28 @@
13
13
  "agentsMd": "lean",
14
14
  "models": {
15
15
  "cheap": {
16
- "opencode": "github-copilot/gpt-5.6-luna",
16
+ "opencode": "codex-lb/gpt-5.6-luna",
17
17
  "copilot": "gpt-5.6-luna",
18
18
  "claude": "haiku",
19
19
  "codex": "gpt-5.6-luna",
20
- "kilocode": "github-copilot/gpt-5.6-luna",
21
- "hermes": "github-copilot/gpt-5.6-luna"
20
+ "kilocode": "codex-lb/gpt-5.6-luna",
21
+ "hermes": "codex-lb/gpt-5.6-luna"
22
22
  },
23
23
  "normal": {
24
- "opencode": "github-copilot/claude-opus-4.8",
24
+ "opencode": "codex-lb/gpt-5.6-terra",
25
25
  "copilot": "claude-opus-4.8",
26
26
  "claude": "opus",
27
27
  "codex": "claude-opus-4.8",
28
- "kilocode": "github-copilot/claude-opus-4.8",
29
- "hermes": "github-copilot/claude-opus-4.8"
28
+ "kilocode": "codex-lb/gpt-5.6-terra",
29
+ "hermes": "codex-lb/gpt-5.6-terra"
30
30
  },
31
31
  "expert": {
32
- "opencode": "github-copilot/claude-fable-5",
32
+ "opencode": "codex-lb/claude-fable-5",
33
33
  "copilot": "claude-fable-5",
34
34
  "claude": "fable",
35
35
  "codex": "claude-fable-5",
36
- "kilocode": "github-copilot/claude-fable-5",
37
- "hermes": "github-copilot/claude-fable-5"
36
+ "kilocode": "codex-lb/claude-fable-5",
37
+ "hermes": "codex-lb/claude-fable-5"
38
38
  }
39
39
  }
40
40
  }
@@ -43,20 +43,20 @@
43
43
  "disableDefaults": true,
44
44
  "models": {
45
45
  "cheap": {
46
- "opencode": "github-copilot/gpt-5.6-luna",
46
+ "opencode": "codex-lb/gpt-5.6-luna",
47
47
  "copilot": "gpt-5.6-luna",
48
48
  "claude": "haiku",
49
49
  "codex": "gpt-5.6-luna",
50
- "kilocode": "github-copilot/gpt-5.6-luna",
51
- "hermes": "github-copilot/gpt-5.6-luna"
50
+ "kilocode": "codex-lb/gpt-5.6-luna",
51
+ "hermes": "codex-lb/gpt-5.6-luna"
52
52
  },
53
53
  "normal": {
54
- "opencode": "github-copilot/claude-opus-4.8",
54
+ "opencode": "codex-lb/gpt-5.6-terra",
55
55
  "copilot": "claude-opus-4.8",
56
56
  "claude": "opus",
57
57
  "codex": "claude-opus-4.8",
58
- "kilocode": "github-copilot/claude-opus-4.8",
59
- "hermes": "github-copilot/claude-opus-4.8"
58
+ "kilocode": "codex-lb/gpt-5.6-terra",
59
+ "hermes": "codex-lb/gpt-5.6-terra"
60
60
  }
61
61
  },
62
62
  "skillGroups": [
@@ -649,28 +649,28 @@
649
649
  ],
650
650
  "models": {
651
651
  "cheap": {
652
- "opencode": "github-copilot/gpt-5.6-luna",
652
+ "opencode": "codex-lb/gpt-5.6-luna",
653
653
  "copilot": "gpt-5.6-luna",
654
654
  "claude": "haiku",
655
655
  "codex": "gpt-5.6-luna",
656
- "kilocode": "github-copilot/gpt-5.6-luna",
657
- "hermes": "github-copilot/gpt-5.6-luna"
656
+ "kilocode": "codex-lb/gpt-5.6-luna",
657
+ "hermes": "codex-lb/gpt-5.6-luna"
658
658
  },
659
659
  "normal": {
660
- "opencode": "github-copilot/claude-opus-4.8",
660
+ "opencode": "codex-lb/gpt-5.6-terra",
661
661
  "copilot": "claude-opus-4.8",
662
662
  "claude": "opus",
663
663
  "codex": "claude-opus-4.8",
664
- "kilocode": "github-copilot/claude-opus-4.8",
665
- "hermes": "github-copilot/claude-opus-4.8"
664
+ "kilocode": "codex-lb/gpt-5.6-terra",
665
+ "hermes": "codex-lb/gpt-5.6-terra"
666
666
  },
667
667
  "expert": {
668
- "opencode": "github-copilot/claude-fable-5",
668
+ "opencode": "codex-lb/claude-fable-5",
669
669
  "copilot": "claude-fable-5",
670
670
  "claude": "fable",
671
671
  "codex": "claude-fable-5",
672
- "kilocode": "github-copilot/claude-fable-5",
673
- "hermes": "github-copilot/claude-fable-5"
672
+ "kilocode": "codex-lb/claude-fable-5",
673
+ "hermes": "codex-lb/claude-fable-5"
674
674
  }
675
675
  }
676
676
  }