@andyqiu/codeforge 0.8.5 → 0.8.6

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.
@@ -15,15 +15,16 @@ permissions:
15
15
  bash: deny
16
16
  webfetch: deny
17
17
  allowed_tools: [read, repo_map, task, plan_read, review_approval, session_merge]
18
- model: google/gemini-3.1-pro-preview
18
+ model: anthropic/claude-sonnet-4-6
19
19
  model_category: balanced
20
20
  tier: balanced
21
21
  model_thinking:
22
22
  type: enabled
23
- thinking_level: low
23
+ budget_tokens: 4000
24
24
  fallback_models:
25
- - anthropic/claude-sonnet-4-6
26
25
  - anthropic/claude-opus-4-8
26
+ - openai/gpt-5.5
27
+ - google/gemini-3.1-pro-preview
27
28
  ---
28
29
 
29
30
  # CodeForge Agent
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: coder-quick
3
- description: 执行者(快速档)— 同 coder,使用 sonnet 档模型,适合小改动 / typo fix / 文档更新。在 session worktree 内直接写,由 /merge 闭环合入主仓。
3
+ description: 执行者(快速档)— 同 coder,使用 Opus 4.8 Fast 模型,适合小改动 / typo fix / 文档更新。在 session worktree 内直接写,由 /merge 闭环合入主仓。
4
4
  version: 2.0.0
5
5
  mode: subagent
6
6
  # opencode 标准字段(单数)— 实际生效的权限
@@ -15,7 +15,7 @@ permissions:
15
15
  bash: allow
16
16
  webfetch: deny
17
17
  allowed_tools: [ast_edit, plan_read, bash, task]
18
- model: anthropic/claude-sonnet-4-6
18
+ model: anthropic/claude-opus-4-8-fast
19
19
  model_category: balanced
20
20
  tier: quick
21
21
  model_thinking:
@@ -23,7 +23,7 @@ model_thinking:
23
23
  budget_tokens: 2000
24
24
  fallback_models:
25
25
  - anthropic/claude-opus-4-8
26
- - google/gemini-3.1-pro-preview
26
+ - anthropic/claude-sonnet-4-6
27
27
  ---
28
28
 
29
29
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: reviewer-lite
3
- description: 审阅者(轻量档)— 使用 sonnet 模型,适用于方案/文档/ADR/决策 review;代码安全审查请用 @reviewer(ultrabrain)
3
+ description: 审阅者(轻量档)— 使用 GPT-5.4 模型,适用于方案/文档/ADR/决策 review;代码安全审查请用 @reviewer(ultrabrain)
4
4
  version: 1.0.0
5
5
  mode: subagent
6
6
  # opencode 标准字段(单数)— 实际生效的权限
@@ -15,12 +15,12 @@ permissions:
15
15
  bash: allow
16
16
  webfetch: deny
17
17
  allowed_tools: [plan_read, bash, read, task, review_approval]
18
- model: google/gemini-3.1-pro-preview
18
+ model: openai/gpt-5.4
19
19
  model_category: balanced
20
20
  tier: balanced
21
21
  model_thinking:
22
22
  type: enabled
23
- thinking_level: medium
23
+ reasoning_effort: medium
24
24
  fallback_models:
25
25
  - anthropic/claude-sonnet-4-6
26
26
  - openai/gpt-5.5
package/codeforge.json CHANGED
@@ -31,14 +31,14 @@
31
31
  ]
32
32
  },
33
33
  "coder-quick": {
34
- "_doc": "编码者(快速档):Sonnet + 最小 thinking,适合 typo fix / 单行改动 / 文档更新。",
35
- "model": "anthropic/claude-sonnet-4-6",
34
+ "_doc": "编码者(快速档):Opus 4.8 Fast,同等质量 2.5x 更快,适合 typo fix / 单行改动 / 文档更新。thinking 2000 保持轻量。",
35
+ "model": "anthropic/claude-opus-4-8-fast",
36
36
  "category": "balanced",
37
37
  "tier": "quick",
38
38
  "thinking": { "type": "enabled", "budget_tokens": 2000 },
39
39
  "fallback_models": [
40
40
  "anthropic/claude-opus-4-8",
41
- "google/gemini-3.1-pro-preview"
41
+ "anthropic/claude-sonnet-4-6"
42
42
  ]
43
43
  },
44
44
  "coder-deep": {
@@ -87,13 +87,14 @@
87
87
  },
88
88
  "codeforge": {
89
89
  "_doc": "编排者(调度专用):Gemini 3.1 Pro 主(轻量快速路由),Sonnet 4.6 / Opus 4.8 备用。codeforge 无写权限,只路由不生产,用 Gemini 降成本。category=balanced 对应模型档次,tier=balanced 对应任务难度(路由判断本身是轻量任务)。",
90
- "model": "google/gemini-3.1-pro-preview",
90
+ "model": "anthropic/claude-sonnet-4-6",
91
91
  "category": "balanced",
92
92
  "tier": "balanced",
93
- "thinking": { "type": "enabled", "thinking_level": "low" },
93
+ "thinking": { "type": "enabled", "budget_tokens": 4000 },
94
94
  "fallback_models": [
95
- "anthropic/claude-sonnet-4-6",
96
- "anthropic/claude-opus-4-8"
95
+ "anthropic/claude-opus-4-8",
96
+ "openai/gpt-5.5",
97
+ "google/gemini-3.1-pro-preview"
97
98
  ]
98
99
  }
99
100
  },
package/dist/index.js CHANGED
@@ -19892,7 +19892,7 @@ import * as https from "node:https";
19892
19892
  // lib/version-injected.ts
19893
19893
  function getInjectedVersion() {
19894
19894
  try {
19895
- const v = "0.8.5";
19895
+ const v = "0.8.6";
19896
19896
  if (typeof v === "string" && /^\d+\.\d+\.\d+/.test(v)) {
19897
19897
  return v;
19898
19898
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@andyqiu/codeforge",
3
- "version": "0.8.5",
3
+ "version": "0.8.6",
4
4
  "description": "CodeForge — opencode 的零侵入扩展包",
5
5
  "type": "module",
6
6
  "private": false,